diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 39a97226cbd5..f81159d09315 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -24,7 +24,6 @@ # MULTIPLE OWNERS - # Host Hell diff --git a/.github/workflows/auto_changelog.yml b/.github/workflows/auto_changelog.yml index 37dc7d2e054e..a2a438ee0098 100644 --- a/.github/workflows/auto_changelog.yml +++ b/.github/workflows/auto_changelog.yml @@ -10,11 +10,11 @@ permissions: contents: write jobs: auto_changelog: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: github.event.pull_request.merged == true steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Generate App Token id: app-token-generation diff --git a/.github/workflows/autowiki.yml b/.github/workflows/autowiki.yml index 2f6cadbbf922..d6e8c5890972 100644 --- a/.github/workflows/autowiki.yml +++ b/.github/workflows/autowiki.yml @@ -8,7 +8,7 @@ permissions: jobs: autowiki: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: "Check for AUTOWIKI_USERNAME" id: secrets_set @@ -20,7 +20,7 @@ jobs: echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT - name: Checkout if: steps.secrets_set.outputs.SECRETS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install BYOND if: steps.secrets_set.outputs.SECRETS_ENABLED uses: ./.github/actions/restore_or_install_byond diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index 184fd52bd829..e42012491855 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -17,7 +17,7 @@ jobs: start_gate: if: ( !contains(github.event.head_commit.message, '[ci skip]') ) name: Start Gate - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Mandatory Empty Step run: exit 0 @@ -80,7 +80,7 @@ jobs: run_alternate_tests, run_linters, ] - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Decide whether the needed jobs succeeded or failed uses: re-actors/alls-green@release/v1 diff --git a/.github/workflows/codeowner_reviews.yml b/.github/workflows/codeowner_reviews.yml index cc5d8e8a20e0..f1cb174de37b 100644 --- a/.github/workflows/codeowner_reviews.yml +++ b/.github/workflows/codeowner_reviews.yml @@ -7,12 +7,12 @@ on: jobs: assign-users: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: # Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 #Parse the Codeowner file on non draft PRs - name: CodeOwnersParser diff --git a/.github/workflows/collect_data.yml b/.github/workflows/collect_data.yml index b82575bfd873..60cf249dfca0 100644 --- a/.github/workflows/collect_data.yml +++ b/.github/workflows/collect_data.yml @@ -18,7 +18,7 @@ on: jobs: collect_data: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 outputs: maps: ${{ steps.map_finder.outputs.maps }} @@ -27,7 +27,7 @@ jobs: required_build_versions: ${{ steps.setup_required_build_versions.outputs.required_build_versions }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Find Maps id: map_finder run: | diff --git a/.github/workflows/compare_screenshots.yml b/.github/workflows/compare_screenshots.yml index d9fdaa2b1ff9..b814905b9b8e 100644 --- a/.github/workflows/compare_screenshots.yml +++ b/.github/workflows/compare_screenshots.yml @@ -6,14 +6,14 @@ on: jobs: compare_screenshots: timeout-minutes: 15 - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup directory run: mkdir -p artifacts # If we ever add more artifacts, this is going to break, but it'll be obvious. - name: Download screenshot tests - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v7 with: path: artifacts - name: ls -R @@ -34,7 +34,7 @@ jobs: echo ${{ github.event.pull_request.number }} > artifacts/screenshot_comparisons/pull_request_number.txt - name: Upload bad screenshots if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: bad-screenshots path: artifacts/screenshot_comparisons diff --git a/.github/workflows/compile_all_maps.yml b/.github/workflows/compile_all_maps.yml index 2512d5fa9796..c80c0f4ae052 100644 --- a/.github/workflows/compile_all_maps.yml +++ b/.github/workflows/compile_all_maps.yml @@ -10,11 +10,11 @@ on: jobs: compile_all_stations: name: Compile All Station Maps - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Bun uses: ./.github/actions/setup_bun - name: Restore BYOND from Cache @@ -31,11 +31,11 @@ jobs: compile_all_templates: name: Compile All Templates - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Bun uses: ./.github/actions/setup_bun - name: Restore BYOND from Cache diff --git a/.github/workflows/compile_changelogs.yml b/.github/workflows/compile_changelogs.yml index fd4214890f9e..d23589260fb7 100644 --- a/.github/workflows/compile_changelogs.yml +++ b/.github/workflows/compile_changelogs.yml @@ -8,7 +8,7 @@ on: jobs: compile: name: "Compile changelogs" - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 permissions: contents: write steps: @@ -35,7 +35,7 @@ jobs: - name: "Checkout" if: steps.value_holder.outputs.ACTIONS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 25 persist-credentials: false diff --git a/.github/workflows/discord_discussions.yml b/.github/workflows/discord_discussions.yml index 68876aed1853..da1b2b223876 100644 --- a/.github/workflows/discord_discussions.yml +++ b/.github/workflows/discord_discussions.yml @@ -18,7 +18,7 @@ concurrency: jobs: manage-discord-discussion: name: Manage Discord Discussion - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: contains(github.event.pull_request.labels.*.name, 'Discord Discussion') steps: - name: Fail if vars.DISCORD_DISCUSSIONS_CHANNEL_ID is unset @@ -34,7 +34,7 @@ jobs: dotnet-quality: ga - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Build Tgstation.DiscordDiscussions run: dotnet publish -c Release -o discord_discussions_bins tools/Tgstation.DiscordDiscussions/Tgstation.DiscordDiscussions.csproj diff --git a/.github/workflows/discord_pr_announce.yml b/.github/workflows/discord_pr_announce.yml index d6150e76fb3f..6ceb35463998 100644 --- a/.github/workflows/discord_pr_announce.yml +++ b/.github/workflows/discord_pr_announce.yml @@ -5,7 +5,7 @@ on: jobs: notify: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: ${{ github.event.action != 'labeled' || github.event.label.name == 'Stale' }} steps: - name: "Check for DISCORD_WEBHOOK" diff --git a/.github/workflows/gbp.yml b/.github/workflows/gbp.yml index 4931252e962e..f25f0bd05e21 100644 --- a/.github/workflows/gbp.yml +++ b/.github/workflows/gbp.yml @@ -5,14 +5,14 @@ on: jobs: # labeler must run before gbp because gbp calculates itself based on labels labeler: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: github.event.action == 'opened' || github.event.action == 'synchronize' permissions: pull-requests: write # to apply labels issues: write # to apply labels steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run Auto Labeler uses: actions/github-script@v7 with: @@ -27,7 +27,7 @@ jobs: }); console.log(`Labels updated: ${new_labels}`); gbp: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: github.event.action == 'opened' || github.event.action == 'closed' steps: - name: "Check for ACTION_ENABLER secret and pass true to output if it exists to be checked by later steps" @@ -40,7 +40,7 @@ jobs: echo "ACTIONS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT - name: Checkout if: steps.value_holder.outputs.ACTIONS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup git if: steps.value_holder.outputs.ACTIONS_ENABLED run: | @@ -48,7 +48,7 @@ jobs: git config --global user.email "<>" - name: Checkout alternate branch if: steps.value_holder.outputs.ACTIONS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: "gbp-balances" # The branch name path: gbp-balances diff --git a/.github/workflows/gbp_collect.yml b/.github/workflows/gbp_collect.yml index 1e83e860ab72..715af0126efc 100644 --- a/.github/workflows/gbp_collect.yml +++ b/.github/workflows/gbp_collect.yml @@ -6,7 +6,7 @@ on: workflow_dispatch: jobs: gbp_collection: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: "Check for ACTION_ENABLER secret and pass true to output if it exists to be checked by later steps" id: value_holder @@ -18,7 +18,7 @@ jobs: echo "ACTIONS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT - name: Checkout if: steps.value_holder.outputs.ACTIONS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup git if: steps.value_holder.outputs.ACTIONS_ENABLED run: | @@ -26,7 +26,7 @@ jobs: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - name: Checkout alternate branch if: steps.value_holder.outputs.ACTIONS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: "gbp-balances" # The branch name path: gbp-balances diff --git a/.github/workflows/generate_client_storage.yml b/.github/workflows/generate_client_storage.yml new file mode 100644 index 000000000000..f601288b14b3 --- /dev/null +++ b/.github/workflows/generate_client_storage.yml @@ -0,0 +1,33 @@ +name: "Generate Client Storage" +on: + push: + branches: + - master + paths: + - tgui/public/* + +jobs: + dispatch_repo: + if: ( !contains(github.event.head_commit.message, '[ci skip]') ) + name: Repository Dispatch + runs-on: ubuntu-24.04 + steps: + - name: Generate App Token + id: app-token-generation + uses: actions/create-github-app-token@v2 + if: env.APP_PRIVATE_KEY != '' && env.APP_ID != '' + with: + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + owner: tgstation + env: + APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }} + APP_ID: ${{ secrets.APP_ID }} + + - name: Send Repository Dispatch + if: success() + uses: peter-evans/repository-dispatch@v4 + with: + token: ${{ steps.app-token-generation.outputs.token }} + repository: tgstation/byond-client-storage + event-type: on_master_push diff --git a/.github/workflows/generate_documentation.yml b/.github/workflows/generate_documentation.yml index 79dc2593681d..3949732751c5 100644 --- a/.github/workflows/generate_documentation.yml +++ b/.github/workflows/generate_documentation.yml @@ -10,12 +10,12 @@ jobs: permissions: contents: write # for JamesIves/github-pages-deploy-action to push changes in repo if: ( !contains(github.event.head_commit.message, '[ci skip]') ) - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 concurrency: gen-docs steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/SpacemanDMM key: ${{ runner.os }}-spacemandmm-${{ secrets.CACHE_PURGE_KEY }} @@ -27,7 +27,7 @@ jobs: touch dmdoc/.nojekyll echo codedocs.tgstation13.org > dmdoc/CNAME - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4.7.3 + uses: JamesIves/github-pages-deploy-action@v4.7.6 with: branch: gh-pages clean: true diff --git a/.github/workflows/remove_guide_comments.yml b/.github/workflows/remove_guide_comments.yml index 4bbc0c602515..e5e168df7f58 100644 --- a/.github/workflows/remove_guide_comments.yml +++ b/.github/workflows/remove_guide_comments.yml @@ -6,10 +6,10 @@ on: types: [opened] jobs: remove_guide_comments: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Remove guide comments uses: actions/github-script@v7 with: diff --git a/.github/workflows/rerun_flaky_tests.yml b/.github/workflows/rerun_flaky_tests.yml index 95f52ddf7b40..013308ff34a7 100644 --- a/.github/workflows/rerun_flaky_tests.yml +++ b/.github/workflows/rerun_flaky_tests.yml @@ -12,11 +12,11 @@ permissions: # DARKPACK ADDITION END jobs: rerun_flaky_tests: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: ${{ github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.run_attempt == 1 }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Rerun flaky tests uses: actions/github-script@v7 with: @@ -24,11 +24,11 @@ jobs: const { rerunFlakyTests } = await import('${{ github.workspace }}/tools/pull_request_hooks/rerunFlakyTests.js') await rerunFlakyTests({ github, context }) report_flaky_tests: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.run_attempt == 2 }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Report flaky tests uses: actions/github-script@v7 with: diff --git a/.github/workflows/round_id_linker.yml b/.github/workflows/round_id_linker.yml index 7fb0ee8c4f32..9b3ddfe2d36b 100644 --- a/.github/workflows/round_id_linker.yml +++ b/.github/workflows/round_id_linker.yml @@ -5,7 +5,7 @@ on: jobs: link_rounds: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: tgstation/round_linker@master with: diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml index e50b47324e3e..22401f63f289 100644 --- a/.github/workflows/run_integration_tests.yml +++ b/.github/workflows/run_integration_tests.yml @@ -26,17 +26,17 @@ jobs: # Otherwise, it will output `Run Tests (map; max)`. # For example, `Run Tests (runtimestation; 515)`. name: Run Tests (${{ inputs.major && format('{0}.{1}; ', inputs.major, inputs.minor) || '' }}${{ inputs.map }}; ${{ inputs.max_required_byond_client }}) - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 timeout-minutes: 15 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Restore BYOND from Cache uses: ./.github/actions/restore_or_install_byond with: major: ${{ inputs.major }} minor: ${{ inputs.minor }} - name: Download build outputs - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v7 with: name: build-artifact-${{ inputs.major || env.BYOND_MAJOR }}-${{ inputs.minor || env.BYOND_MINOR}} path: ./ @@ -63,7 +63,7 @@ jobs: bash tools/ci/run_server.sh ${{ inputs.map }} - name: Upload screenshot tests if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: test_artifacts_${{ inputs.map }}_${{ inputs.major }}_${{ inputs.minor }} path: data/screenshots_new/ diff --git a/.github/workflows/run_linters.yml b/.github/workflows/run_linters.yml index 942234bb701c..387eab3ff9b6 100644 --- a/.github/workflows/run_linters.yml +++ b/.github/workflows/run_linters.yml @@ -5,13 +5,13 @@ on: jobs: linters: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Restore SpacemanDMM cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/SpacemanDMM key: ${{ runner.os }}-spacemandmm-${{ hashFiles('dependencies.sh') }} @@ -20,21 +20,21 @@ jobs: - name: Setup Bun uses: ./.github/actions/setup_bun - name: Restore Bootstrap cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: tools/bootstrap/.cache - key: ${{ runner.os }}-bootstrap-${{ hashFiles('tools/requirements.txt') }} + key: ${{ runner.os }}-bootstrap-${{ hashFiles('/tools/requirements.txt') }} restore-keys: | ${{ runner.os }}-bootstrap- - name: Restore Rust cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cargo - key: ${{ runner.os }}-rust-${{ hashFiles('tools/ci/ci_dependencies.sh')}} + key: ${{ runner.os }}-rust-${{ hashFiles('/tools/ci/ci_dependencies.sh')}} restore-keys: | ${{ runner.os }}-rust- - name: Restore Cutter cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: tools/icon_cutter/cache key: ${{ runner.os }}-cutter-${{ hashFiles('dependencies.sh') }} @@ -72,7 +72,9 @@ jobs: 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_darkpack.json + tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < modular_darkpack/tools/ticked_file_enforcement/modular_darkpack_master_files.json + tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < modular_darkpack/tools/ticked_file_enforcement/modular_darkpack_modules.json + tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < modular_darkpack/tools/ticked_file_enforcement/modular_darkpack_unit_tests.json - name: Check Define Sanity if: steps.linter-setup.conclusion == 'success' && !cancelled() run: tools/bootstrap/python -m define_sanity.check diff --git a/.github/workflows/setup_build_artifact.yml b/.github/workflows/setup_build_artifact.yml index aaf4cfb45538..57e3a7715f55 100644 --- a/.github/workflows/setup_build_artifact.yml +++ b/.github/workflows/setup_build_artifact.yml @@ -11,10 +11,10 @@ on: jobs: setup_build_artifact: name: Setup build artifact (${{ format('{0}.{1}', inputs.major, inputs.minor) }}) - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Bun uses: ./.github/actions/setup_bun - name: Restore BYOND from Cache @@ -35,7 +35,7 @@ jobs: bash tools/ci/copy_build_output.sh $OUTPUT_DIR - name: Upload artifact if: success() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-artifact-${{ inputs.major }}-${{ inputs.minor }} path: ${{ env.OUTPUT_DIR }} diff --git a/.github/workflows/show_screenshot_test_results.yml b/.github/workflows/show_screenshot_test_results.yml index 6901e1d1d176..2cfd4f2fd4a8 100644 --- a/.github/workflows/show_screenshot_test_results.yml +++ b/.github/workflows/show_screenshot_test_results.yml @@ -13,7 +13,7 @@ jobs: show_screenshot_test_results: if: ( !contains(github.event.head_commit.message, '[ci skip]') && github.event.workflow_run.run_attempt == 1 ) name: Show Screenshot Test Results - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: "Check for ARTIFACTS_FILE_HOUSE_KEY" id: secrets_set @@ -25,7 +25,7 @@ jobs: echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT - name: Checkout if: steps.secrets_set.outputs.SECRETS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Prepare module if: steps.secrets_set.outputs.SECRETS_ENABLED run: | diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index cec11541e429..1a8bc4d3e910 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,18 +12,22 @@ jobs: permissions: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/stale@v10 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-pr-message: "This PR has been inactive for long enough to be automatically marked as stale. This means it is at risk of being auto closed in ~ 7 days, please address any outstanding review items and ensure your PR is finished, if these are all true and you are auto-staled anyway, you need to actively ask maintainers if your PR will be merged. Once you have done any of the previous actions then you should request a maintainer remove the stale label on your PR, to reset the stale timer. If you feel no maintainer will respond in that time, you may wish to close this PR youself, while you seek maintainer comment, as you will then be able to reopen the PR yourself" + stale-issue-message: "This issue has been marked for cleanup and will be automatically closed in ~ 14 days. If there is evidence that the issue still occurs, leave a comment with it attached and contact a maintainer to have the label removed." days-before-stale: 7 days-before-close: 7 + days-before-issue-stale: 14 + days-before-issue-close: 14 stale-pr-label: "Stale" - days-before-issue-stale: -1 - stale-issue-label: "Cleanup Flagged" + stale-issue-label: "Stale" + any-of-issue-labels: "Cleanup Flagged,🤖 Flaky Test Report" remove-issue-stale-when-updated: false + exempt-issue-labels: "RED LABEL" exempt-pr-labels: "RED LABEL,Good First PR" operations-per-run: 300 diff --git a/.github/workflows/test_merge_bot.yml b/.github/workflows/test_merge_bot.yml index 101c3ad2b322..ee5d01e15f56 100644 --- a/.github/workflows/test_merge_bot.yml +++ b/.github/workflows/test_merge_bot.yml @@ -11,7 +11,7 @@ on: jobs: test_merge_bot: name: Test Merge Detector - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Check for GET_TEST_MERGES_URL id: secrets_set @@ -23,7 +23,7 @@ jobs: echo "GET_TEST_MERGES_URL=$SECRET_EXISTS" >> $GITHUB_OUTPUT - name: Checkout if: steps.secrets_set.outputs.GET_TEST_MERGES_URL - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Prepare module if: steps.secrets_set.outputs.GET_TEST_MERGES_URL run: | diff --git a/.github/workflows/tgs_test.yml b/.github/workflows/tgs_test.yml index feb89bac9c05..fefe765bb753 100644 --- a/.github/workflows/tgs_test.yml +++ b/.github/workflows/tgs_test.yml @@ -42,7 +42,7 @@ jobs: test_tgs_docker: if: ( !contains(github.event.head_commit.message, '[ci skip]') ) name: Test TGS Docker - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 concurrency: group: test_tgs_docker-${{ github.head_ref || github.run_id }} cancel-in-progress: true @@ -64,7 +64,7 @@ jobs: dotnet-version: 8.0.x - name: Checkout Repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Test TGS Integration run: dotnet run -c Release --project tools/tgs_test ${{ github.repository }} /tgs_instances/tgstation ${{ env.TGS_API_PORT }} ${{ github.event.pull_request.head.sha || github.sha }} ${{ secrets.GITHUB_TOKEN }} ${{ env.PR_NUMBER }} diff --git a/.github/workflows/update_tgs_dmapi.yml b/.github/workflows/update_tgs_dmapi.yml index 885ac26c8391..6335f9047f50 100644 --- a/.github/workflows/update_tgs_dmapi.yml +++ b/.github/workflows/update_tgs_dmapi.yml @@ -7,14 +7,14 @@ on: jobs: update-dmapi: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 name: Update the TGS DMAPI permissions: contents: write pull-requests: write steps: - name: Clone - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Branch run: | diff --git a/.vscode/launch.json b/.vscode/launch.json index d87097ad419c..e137e741ef40 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,6 +15,13 @@ "preLaunchTask": "Build All (low memory mode)", "dmb": "${workspaceFolder}/${command:CurrentDMB}" }, + { + "type": "byond", + "request": "launch", + "name": "Launch DreamSeeker (absolute minimum)", + "preLaunchTask": "Build All (absolute minimum)", + "dmb": "${workspaceFolder}/${command:CurrentDMB}" + }, { "type": "byond", "request": "launch", @@ -52,6 +59,14 @@ "dmb": "${workspaceFolder}/${command:CurrentDMB}", "dreamDaemon": true }, + { + "type": "byond", + "request": "launch", + "name": "Launch DreamDaemon (absolute minimum)", + "preLaunchTask": "Build All (absolute minimum)", + "dmb": "${workspaceFolder}/${command:CurrentDMB}", + "dreamDaemon": true + }, { "type": "byond", "request": "launch", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f3c14cea754e..aa32b74939a5 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -40,6 +40,26 @@ "dependsOn": "dm: reparse", "label": "Build All (low memory mode)" }, + { + "type": "process", + "command": "tools/build/build.sh", + "args": ["-DLOWMEMORYMODE", "-DABSOLUTE_MINIMUM"], + "windows": { + "command": ".\\tools\\build\\build.bat", + "args": ["-DLOWMEMORYMODE", "-DABSOLUTE_MINIMUM"] + }, + "options": { + "env": { + "DM_EXE": "${config:dreammaker.byondPath}" + } + }, + "problemMatcher": ["$dreammaker", "$tsc", "$eslint-stylish"], + "group": { + "kind": "build" + }, + "dependsOn": "dm: reparse", + "label": "Build All (absolute minimum)" + }, { "type": "process", "command": "tools/build/build.sh", diff --git a/README.md b/README.md index b22476d84cb8..77ea01de5206 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ [](.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 | -| ----------------------- | ------------------------------------------------------------------------------------ | -| Code | [https://github.com/ApocryphaXIII/Apocrypha13](https://github.com/ApocryphaXIII/Apocrypha13)| -| The Second City Discord | [https://discord.gg/rmAbJcuChD](https://discord.gg/rmAbJcuChD) | -| Coderbus Discord | [https://discord.gg/Vh8TJp9](https://discord.gg/Vh8TJp9) | +| Website | Link | +| ----------------------- | -------------------------------------------- | +| Code | https://github.com/ApocryphaXIII/Apocrypha13 | +| The Second City Discord | https://discord.gg/rmAbJcuChD | +| Coderbus Discord | https://discord.gg/Vh8TJp9 | This is the codebase for Apocrypha13, a downstream/fork for the Darkpack13 Project, a fork of TGstation 2025 @@ -40,9 +40,9 @@ For overall design documentation see [HackMD](https://hackmd.io/@tgstation). ## LICENSE -All code after [commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST](https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under [GNU AGPL v3](https://www.gnu.org/licenses/agpl-3.0.html). +All code after [commit 333c566b88108de218d882840e61928a9b759d8f on 2014/12/31 at 4:38 PM PST](https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under [GNU AGPL v3](https://www.gnu.org/licenses/agpl-3.0.html). -All code before [commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST](https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.html). +All code before [commit 333c566b88108de218d882840e61928a9b759d8f on 2014/12/31 at 4:38 PM PST](https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.html). (Including tools unless their readme specifies otherwise.) See LICENSE and GPLv3.txt for more details. diff --git a/SQL/darkpack/darkpack_database_changelog.md b/SQL/darkpack/darkpack_database_changelog.md new file mode 100644 index 000000000000..d8c8fe8f29be --- /dev/null +++ b/SQL/darkpack/darkpack_database_changelog.md @@ -0,0 +1,25 @@ +Any time you make a change to the schema files, remember to increment the database schema version. Generally increment the minor number, major should be reserved for significant changes to the schema. Both values go up to 255. Keep this up to date with `../database_changelog.md` and be sure to update that one's latest database version accordingly as well. + +Make sure to also update `DB_MAJOR_VERSION` and `DB_MINOR_VERSION`, which can be found in `code/__DEFINES/subsystem.dm`. + +The latest database version is 5.34; The query to update the schema revision table is: + +```sql +INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 34); +``` + +or + +```sql +INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 34); +``` + +In any query remember to add a prefix to the table names if you use one. + +--- + +Version 5.34, 14 January 2026, by XeonMations, Buffyuwu + +```sql +ALTER TABLE `library` MODIFY COLUMN `category` VARCHAR(255); +``` diff --git a/SQL/database_changelog.md b/SQL/database_changelog.md index 1e146f4ebeda..dc59adec3e46 100644 --- a/SQL/database_changelog.md +++ b/SQL/database_changelog.md @@ -2,16 +2,16 @@ 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`. -The latest database version is 5.33; The query to update the schema revision table is: +The latest database version is 5.34; The query to update the schema revision table is: ```sql -INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 33); +INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 34); /* DARKPACK EDIT, ORIGINAL: INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 33); */ ``` or ```sql -INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 33); +INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 34); /* DARKPACK EDIT, ORIGINAL: INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 33); */ ``` In any query remember to add a prefix to the table names if you use one. diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql index a42a4a8d985d..3fa640c99366 100644 --- a/SQL/tgstation_schema.sql +++ b/SQL/tgstation_schema.sql @@ -261,7 +261,7 @@ CREATE TABLE `library` ( `author` varchar(45) NOT NULL, `title` varchar(45) NOT NULL, `content` text NOT NULL, - `category` enum('Any','Fiction','Non-Fiction','Adult','Reference','Religion') NOT NULL, + `category` VARCHAR(255) NOT NULL, /* DARKPACK EDIT, ORIGINAL: `category` enum('Any','Fiction','Non-Fiction','Adult','Reference','Religion') NOT NULL, */ `ckey` varchar(32) NOT NULL DEFAULT 'LEGACY', `datetime` datetime NOT NULL, `deleted` tinyint(1) unsigned DEFAULT NULL, @@ -647,7 +647,7 @@ CREATE TABLE `ticket` ( KEY `idx_ticket_act_time_rid` (`action`, `timestamp`, `round_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -DELIMITER $$ +DELIMITER // CREATE PROCEDURE `set_poll_deleted`( IN `poll_id` INT ) @@ -658,16 +658,16 @@ UPDATE `poll_option` SET deleted = 1 WHERE pollid = poll_id; UPDATE `poll_vote` SET deleted = 1 WHERE pollid = poll_id; UPDATE `poll_textreply` SET deleted = 1 WHERE pollid = poll_id; END -$$ +// CREATE TRIGGER `role_timeTlogupdate` AFTER UPDATE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (NEW.CKEY, NEW.job, NEW.minutes-OLD.minutes); END -$$ +// CREATE TRIGGER `role_timeTloginsert` AFTER INSERT ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (NEW.ckey, NEW.job, NEW.minutes); END -$$ +// CREATE TRIGGER `role_timeTlogdelete` AFTER DELETE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (OLD.ckey, OLD.job, 0-OLD.minutes); END -$$ +// DELIMITER ; -- diff --git a/SQL/tgstation_schema_prefixed.sql b/SQL/tgstation_schema_prefixed.sql index d0497ff5c3e6..1df1c636263a 100644 --- a/SQL/tgstation_schema_prefixed.sql +++ b/SQL/tgstation_schema_prefixed.sql @@ -260,7 +260,7 @@ CREATE TABLE `SS13_library` ( `author` varchar(45) NOT NULL, `title` varchar(45) NOT NULL, `content` text NOT NULL, - `category` enum('Any','Fiction','Non-Fiction','Adult','Reference','Religion') NOT NULL, + `category` VARCHAR(255) NOT NULL, /* DARKPACK EDIT, ORIGINAL: `category` enum('Any','Fiction','Non-Fiction','Adult','Reference','Religion') NOT NULL, */ `ckey` varchar(32) NOT NULL DEFAULT 'LEGACY', `datetime` datetime NOT NULL, `deleted` tinyint(1) unsigned DEFAULT NULL, @@ -646,7 +646,7 @@ CREATE TABLE `SS13_ticket` ( KEY `idx_ticket_act_time_rid` (`action`, `timestamp`, `round_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -DELIMITER $$ +DELIMITER // CREATE PROCEDURE `set_poll_deleted`( IN `poll_id` INT ) @@ -657,16 +657,16 @@ UPDATE `SS13_poll_option` SET deleted = 1 WHERE pollid = poll_id; UPDATE `SS13_poll_vote` SET deleted = 1 WHERE pollid = poll_id; UPDATE `SS13_poll_textreply` SET deleted = 1 WHERE pollid = poll_id; END -$$ +// CREATE TRIGGER `SS13_role_timeTlogupdate` AFTER UPDATE ON `SS13_role_time` FOR EACH ROW BEGIN INSERT into SS13_role_time_log (ckey, job, delta) VALUES (NEW.CKEY, NEW.job, NEW.minutes-OLD.minutes); END -$$ +// CREATE TRIGGER `SS13_role_timeTloginsert` AFTER INSERT ON `SS13_role_time` FOR EACH ROW BEGIN INSERT into SS13_role_time_log (ckey, job, delta) VALUES (NEW.ckey, NEW.job, NEW.minutes); END -$$ +// CREATE TRIGGER `SS13_role_timeTlogdelete` AFTER DELETE ON `SS13_role_time` FOR EACH ROW BEGIN INSERT into SS13_role_time_log (ckey, job, delta) VALUES (OLD.ckey, OLD.job, 0-OLD.minutes); END -$$ +// DELIMITER ; -- diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm index 79126e4fdd2e..4107abfea553 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm @@ -123,10 +123,8 @@ /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "op" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area, +/obj/structure/flora/tree/pine, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "tW" = ( @@ -134,7 +132,6 @@ dir = 4 }, /obj/structure/flora/rock/pile/icy/style_2, -/obj/structure/sign/warning/secure_area, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "uy" = ( @@ -201,6 +198,11 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"Fj" = ( +/obj/structure/flora/grass/brown/style_random, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "Fn" = ( /obj/structure/railing{ dir = 6 @@ -304,11 +306,8 @@ /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) "Wr" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, -/turf/open/misc/asteroid/snow/icemoon, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) "Wt" = ( /obj/effect/turf_decal/stripes/line, @@ -439,9 +438,9 @@ fl (5,1,1) = {" fl kd +Sc Wr vJ -vJ kd kd mP @@ -868,8 +867,8 @@ mP mP mP bE -nT op +Sc "} (20,1,1) = {" cO @@ -902,7 +901,7 @@ wg "} (21,1,1) = {" tW -kd +Fj lH Wt mP diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_ore_vent.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_ore_vent.dmm index 51584f90f86a..7109d813b1aa 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_surface_ore_vent.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_surface_ore_vent.dmm @@ -1,12 +1,15 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( +/obj/effect/mapping_helpers/no_atoms_ontop, /turf/template_noop, /area/template_noop) "l" = ( +/obj/effect/mapping_helpers/no_atoms_ontop, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) "L" = ( /obj/structure/ore_vent/random/icebox, +/obj/effect/mapping_helpers/no_atoms_ontop, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm index c9b3d35aa726..fe11d7a8b6c2 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm @@ -805,14 +805,12 @@ /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/airalarm/directional/south{ - pixel_y = 35 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/iron/cafeteria, /area/ruin/pizzeria/kitchen) "IW" = ( /obj/effect/spawner/random/entertainment/cigarette, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) "IY" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm index b44fbe0b1b55..fad279c0710e 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm @@ -199,7 +199,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/turf_decal/tile/brown/opposingcorners, /turf/open/floor/iron, /area/ruin/plasma_facility/operations) @@ -325,7 +325,7 @@ /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) "fx" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/lava/plasma/ice_moon, /area/ruin/plasma_facility/operations) "fJ" = ( @@ -399,7 +399,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/iron/grimy, /area/ruin/plasma_facility/commons) "gH" = ( @@ -748,18 +748,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/large, /area/ruin/plasma_facility/commons) -"lW" = ( -/obj/structure/cable, -/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/neutral/fourcorners, -/turf/open/floor/iron, -/area/ruin/plasma_facility/commons) "lX" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lantern, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/iron/smooth{ initial_gas_mix = "ICEMOON_ATMOS" }, @@ -853,7 +845,6 @@ }, /area/ruin/plasma_facility/commons) "nu" = ( -/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, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -978,7 +969,7 @@ /area/ruin/plasma_facility/commons) "pl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /obj/effect/turf_decal/tile/brown/half, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -1028,13 +1019,19 @@ /turf/open/floor/plating/icemoon, /area/ruin/plasma_facility/operations) "pX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/plating/icemoon, /area/ruin/plasma_facility/operations) "qk" = ( /obj/structure/flora/grass/green/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"qr" = ( +/obj/structure/sign/warning/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "qv" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -1181,8 +1178,11 @@ /obj/item/stock_parts/capacitor, /turf/open/floor/plating/icemoon, /area/ruin/plasma_facility/commons) +"sN" = ( +/turf/closed/wall, +/area/icemoon/underground/explored) "sP" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/ruin/plasma_facility/operations) "sX" = ( @@ -1310,6 +1310,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) +"vh" = ( +/obj/structure/flora/grass/brown/style_random, +/obj/structure/sign/warning/directional/west, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "vt" = ( /turf/closed/wall, /area/ruin/plasma_facility/operations) @@ -1583,11 +1588,9 @@ /obj/structure/fence{ dir = 4 }, -/obj/structure/sign/warning, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) "BZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/mining{ name = "Processing Control" @@ -1859,7 +1862,6 @@ /turf/open/floor/plating/icemoon, /area/ruin/plasma_facility/operations) "Ib" = ( -/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/smooth_half{ @@ -1928,7 +1930,7 @@ /area/icemoon/underground/explored) "Jn" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/iron/smooth{ initial_gas_mix = "ICEMOON_ATMOS" }, @@ -2015,6 +2017,11 @@ /obj/machinery/light/small/blacklight/directional/south, /turf/open/floor/iron/grimy, /area/ruin/plasma_facility/commons) +"Kj" = ( +/obj/structure/flora/rock/icy/style_random, +/obj/structure/sign/warning/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "Km" = ( /obj/structure/girder, /turf/open/floor/plating/icemoon, @@ -2077,7 +2084,7 @@ /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) "KY" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/ruin/plasma_facility/commons) "Lh" = ( @@ -2126,7 +2133,7 @@ /turf/open/floor/wood/large, /area/ruin/plasma_facility/commons) "LY" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/plating, /area/ruin/plasma_facility/commons) "LZ" = ( @@ -2227,7 +2234,9 @@ /turf/open/floor/iron/white/textured_half, /area/ruin/plasma_facility/commons) "Nm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /obj/effect/turf_decal/tile/brown/half{ dir = 1 }, @@ -2564,6 +2573,17 @@ }, /turf/open/floor/stone, /area/ruin/plasma_facility/commons) +"SI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/ruin/plasma_facility/commons) "SR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -2582,6 +2602,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/edge{ dir = 1 }, @@ -2661,6 +2682,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/edge, /area/ruin/plasma_facility/commons) "VS" = ( @@ -2720,7 +2742,6 @@ /turf/open/floor/iron/corner, /area/ruin/plasma_facility/commons) "WU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch/directional/east, @@ -2912,7 +2933,7 @@ /area/ruin/plasma_facility/commons) "ZC" = ( /obj/effect/decal/cleanable/glass, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) "ZH" = ( @@ -3168,7 +3189,7 @@ Yw Yw Yw BY -LZ +Kj rs fP rs @@ -3187,7 +3208,7 @@ AG AG LZ BY -ms +qr hJ Py Yw @@ -3301,7 +3322,7 @@ zX XI XI Nm -lW +DN pl Mc af @@ -3335,8 +3356,8 @@ ri ri qW XW -PB -bM +SI +DN VD gj ac @@ -4085,8 +4106,8 @@ rk dr dr dr -NC -ms +sN +qr AG AG AG @@ -4241,7 +4262,7 @@ AG AG AG AG -NC +sN dr II vt @@ -4276,7 +4297,7 @@ AG AG AG AG -zF +vh rs rs oi diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm index 6ef2066b1915..3a55529f5fab 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm @@ -439,7 +439,7 @@ /area/ruin/powered) "PQ" = ( /obj/effect/decal/cleanable/blood/splatter, -/mob/living/simple_animal/hostile/illusion{ +/mob/living/basic/illusion{ death_message = "disperses into the air in a cloud of red mist, you feel slightly more at ease."; desc = "You can't quite make out what you're seeing."; faction = list("cult"); diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent.dmm index 24e409e0f7ca..61bc59a530a5 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent.dmm @@ -463,7 +463,9 @@ /obj/item/reagent_containers/condiment/rice, /obj/item/reagent_containers/condiment/milk, /obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/sugar, /obj/structure/closet/secure_closet/freezer/empty, +/obj/item/knife/kitchen, /obj/item/storage/box/donkpockets, /obj/item/coffee_cartridge, /obj/item/coffee_cartridge/decaf, @@ -496,6 +498,7 @@ /obj/structure/closet/crate/freezer, /obj/item/food/grown/potato, /obj/item/food/grown/potato, +/obj/item/food/grown/carrot, /obj/item/food/grown/onion, /obj/item/food/grown/garlic, /turf/open/floor/iron/white, diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_cheap.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_cheap.dmm index 462f5b486aad..ee2ab997b2d8 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_cheap.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_cheap.dmm @@ -8,7 +8,11 @@ pixel_x = -2 }, /obj/item/paper/monitorkey, -/obj/item/paperwork, +/obj/item/radio/intercom/syndicate/freerange{ + dir = 1; + pixel_y = 32 + }, +/obj/item/folder/syndicate/mining, /turf/open/floor/plating, /area/ruin/comms_agent) "b" = ( @@ -39,9 +43,6 @@ /turf/open/floor/plating, /area/ruin/comms_agent) "q" = ( -/obj/item/radio/intercom/syndicate/freerange{ - pixel_x = -31 - }, /obj/machinery/modular_computer/preset{ dir = 4 }, diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_luxury.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_luxury.dmm index a7b2d4dea8be..ce78df7db268 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_luxury.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_luxury.dmm @@ -144,11 +144,11 @@ /area/ruin/comms_agent) "M" = ( /obj/structure/filingcabinet, -/obj/item/paperwork, /obj/item/paper/monitorkey, /obj/item/paper/fluff/ruins/listeningstation/briefing{ pixel_x = -2 }, +/obj/item/folder/syndicate/mining, /turf/open/floor/wood/tile, /area/ruin/comms_agent) "N" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_standard.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_standard.dmm index b1edb418dfb3..9d77d3535fec 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_standard.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_standard.dmm @@ -49,11 +49,11 @@ /area/ruin/comms_agent) "u" = ( /obj/structure/filingcabinet, -/obj/item/paperwork, /obj/item/paper/monitorkey, /obj/item/paper/fluff/ruins/listeningstation/briefing{ pixel_x = -2 }, +/obj/item/folder/syndicate/mining, /turf/open/floor/wood/tile, /area/ruin/comms_agent) "v" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_frozen_comms.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_frozen_comms.dmm index 54b33b5e8111..6749491b68b6 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_frozen_comms.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_frozen_comms.dmm @@ -195,6 +195,14 @@ pixel_x = -3; pixel_y = 7 }, +/obj/machinery/button/door/directional/north{ + id = "ice_comms_car"; + name = "Garage Door Button"; + pixel_x = -23; + pixel_y = 0; + req_access = list("research"); + dir = 8 + }, /turf/open/floor/plating/icemoon, /area/ruin/powered/shuttle) "zz" = ( @@ -239,13 +247,6 @@ dir = 4 }, /obj/machinery/light/small/directional/south, -/obj/machinery/button/door/directional/north{ - id = "ice_comms_car"; - name = "Garage Door Button"; - pixel_x = -23; - pixel_y = 22; - req_access = list("research") - }, /turf/open/floor/plating/icemoon, /area/ruin/powered/shuttle) "FK" = ( @@ -312,7 +313,7 @@ /obj/structure/rack, /obj/item/wrench, /obj/item/crowbar/large/twenty_force, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/plating/icemoon, /area/ruin/powered/shuttle) "Kr" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_mailroom.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_mailroom.dmm index c62c9f09e4eb..45defb797ed4 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_mailroom.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_mailroom.dmm @@ -202,10 +202,6 @@ /obj/machinery/light/small/red/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/ruin/powered/mailroom) -"vU" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/indestructible/reinforced, -/area/ruin/powered/mailroom) "vV" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/iron/smooth_large, @@ -470,6 +466,7 @@ pixel_x = 4; pixel_y = 3 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/white, /area/ruin/powered/mailroom) "Wr" = ( @@ -485,16 +482,13 @@ "WE" = ( /turf/closed/wall/r_wall, /area/ruin/powered/mailroom) -"Xa" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/reinforced, -/area/ruin/powered/mailroom) "Xi" = ( /obj/effect/turf_decal/loading_area{ dir = 4 }, /obj/effect/decal/remains/human, /obj/item/clothing/suit/hooded/wintercoat, +/obj/structure/sign/departments/cargo/directional/south, /turf/open/floor/iron/textured, /area/ruin/powered/mailroom) "XO" = ( @@ -693,7 +687,7 @@ SY iO MC Wr -Xa +ms Wj ch Mi @@ -767,7 +761,7 @@ MT ba ba Xi -vU +ms iV zr iV diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_ore_vent.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_ore_vent.dmm index db409d08c8cf..a4d4953702ab 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_ore_vent.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_ore_vent.dmm @@ -1,12 +1,16 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( +/obj/effect/mapping_helpers/no_atoms_ontop, /turf/template_noop, /area/template_noop) "l" = ( +/obj/effect/mapping_helpers/no_atoms_ontop, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/unexplored) "L" = ( /obj/structure/ore_vent/random/icebox/lower, +/obj/effect/mapping_helpers/no_atoms_ontop, +/obj/effect/mapping_helpers/no_atoms_ontop, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/unexplored) diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_outpost31.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_outpost31.dmm index 24b4221ebf27..b6531a220082 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_outpost31.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_outpost31.dmm @@ -555,7 +555,6 @@ /turf/open/floor/wood, /area/ruin/outpost31/kennel) "kP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/cable, /turf/open/floor/pod/dark, @@ -626,6 +625,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron/white/smooth_half, /area/ruin/outpost31/medical) "lW" = ( @@ -834,7 +834,6 @@ /area/ruin/outpost31/recroom) "qt" = ( /obj/machinery/door/airlock/external/glass/ruin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "o31a" @@ -1046,7 +1045,6 @@ /turf/open/floor/catwalk_floor/iron, /area/ruin/outpost31) "uj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, @@ -1211,7 +1209,6 @@ /area/ruin/outpost31/lootroom) "xP" = ( /obj/machinery/door/airlock/external/glass/ruin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "o31B" @@ -1241,11 +1238,6 @@ initial_gas_mix = "o2=14;n2=30;TEMP=293.15" }, /area/ruin/outpost31/lab) -"yQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/pod/dark, -/area/ruin/outpost31) "yW" = ( /obj/structure/sign/warning/biohazard, /turf/closed/indestructible/reinforced, @@ -1259,7 +1251,6 @@ /area/ruin/outpost31/lab) "zd" = ( /obj/machinery/door/airlock/grunge, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/autoname, @@ -1380,12 +1371,6 @@ /obj/item/ammo_box/c9mm, /turf/open/floor/carpet/green, /area/ruin/outpost31/commander_room) -"AE" = ( -/obj/machinery/door/airlock/grunge, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/autoname, -/turf/open/floor/carpet/green, -/area/ruin/outpost31/commander_room) "AG" = ( /obj/machinery/door/airlock/grunge, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, @@ -1399,6 +1384,14 @@ /obj/item/paper_bin, /turf/open/floor/iron, /area/ruin/outpost31/radiomap) +"AX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/outpost31) "Bb" = ( /obj/machinery/light/warm/directional/south, /obj/effect/turf_decal/tile/neutral, @@ -1594,6 +1587,14 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/ruin/outpost31) +"EM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/ruin/outpost31) "ES" = ( /obj/item/kirbyplants/random/dead, /obj/effect/turf_decal/siding/white{ @@ -1633,6 +1634,12 @@ /obj/structure/table, /turf/open/floor/iron/cafeteria, /area/ruin/outpost31/kitchendiningroom) +"Fy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/catwalk_floor/iron, +/area/ruin/outpost31) "FH" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/tile/neutral{ @@ -1767,7 +1774,6 @@ /area/ruin/outpost31/medical) "Ie" = ( /obj/machinery/door/airlock/external/glass/ruin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "o31d" @@ -1859,6 +1865,11 @@ dir = 4 }, /area/ruin/outpost31/medical) +"JU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron, +/area/ruin/outpost31) "Kh" = ( /obj/structure/thing_boss_phase_depleter, /turf/open/floor/circuit/red/off{ @@ -2035,7 +2046,6 @@ /turf/open/floor/iron/freezer, /area/ruin/outpost31/crewquarters) "NP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, @@ -2122,7 +2132,6 @@ /turf/open/floor/iron/kitchen/small, /area/ruin/outpost31/kitchendiningroom) "PR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ @@ -2587,6 +2596,12 @@ "Yo" = ( /turf/open/misc/asteroid/snow/icemoon/do_not_chasm, /area/icemoon/underground/explored) +"YC" = ( +/obj/machinery/door/airlock/grunge, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/ruin/outpost31/commander_room) "YG" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -3016,7 +3031,7 @@ uB uB Sg Lf -yQ +lM qI Sg SN @@ -3100,7 +3115,7 @@ yp ES aq Ht -QU +AX lO aV Wu @@ -3142,7 +3157,7 @@ kh UH Ml vX -ge +Fy oN rO gu @@ -3875,10 +3890,10 @@ Ly Ly Ly Ly -uA -AE -vX -YK +Ly +iA +cp +JU Uy xc xc @@ -3918,9 +3933,9 @@ fM Ly Ly uA -iA -Ht -qK +YC +EM +JU Uy xc uB diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm index b4d563d8fed0..2e6a25bdab3d 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm @@ -146,10 +146,6 @@ /obj/structure/fluff/beach_umbrella/engine, /turf/open/misc/beach/sand, /area/ruin/powered/beach) -"ct" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/wood, -/area/ruin/powered/beach) "cE" = ( /obj/effect/turf_decal/sand, /obj/effect/turf_decal/stripes/asteroid/line{ @@ -263,7 +259,7 @@ /turf/open/floor/wood, /area/ruin/powered/beach) "gX" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/layer4, +/obj/machinery/atmospherics/components/unary/passive_vent/layer4, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors/explored) "hj" = ( @@ -304,7 +300,9 @@ /area/ruin/powered/beach) "hC" = ( /obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, /obj/structure/chair/stool/bar/directional/south, /turf/open/floor/wood, /area/ruin/powered/beach) @@ -330,7 +328,6 @@ dir = 1 }, /obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/wood, /area/ruin/powered/beach) "hX" = ( @@ -359,12 +356,6 @@ /obj/item/reagent_containers/cup/glass/colocup, /turf/open/floor/wood, /area/ruin/powered/beach) -"kg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/pod/light, -/area/ruin/powered/beach) "kh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -441,6 +432,15 @@ /obj/item/reagent_containers/condiment/flour, /turf/open/floor/wood, /area/ruin/powered/beach) +"oe" = ( +/obj/effect/spawner/random/bedsheet{ + dir = 4 + }, +/obj/structure/bed{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/powered/beach) "og" = ( /obj/structure/weightmachine/weightlifter, /turf/open/floor/pod/dark, @@ -460,9 +460,6 @@ /area/ruin/powered/beach) "oU" = ( /obj/machinery/seed_extractor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, /turf/open/floor/pod/light, /area/ruin/powered/beach) "pz" = ( @@ -552,6 +549,15 @@ /obj/item/toy/beach_ball, /turf/open/misc/beach/sand, /area/ruin/powered/beach) +"rO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/ruin/powered/beach) "rU" = ( /obj/item/reagent_containers/condiment/enzyme, /obj/item/reagent_containers/cup/beaker{ @@ -605,7 +611,6 @@ /turf/open/floor/light/colour_cycle/dancefloor_a, /area/ruin/powered/beach) "vf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/table/wood/poker, /obj/item/storage/dice, /obj/item/stack/spacecash/c1000, @@ -631,10 +636,9 @@ /turf/open/floor/pod/light, /area/ruin/powered/beach) "xa" = ( -/obj/structure/sign/warning/secure_area, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/closed/wall/mineral/sandstone, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/plating, /area/ruin/powered/beach) "xe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ @@ -822,33 +826,16 @@ }, /turf/closed/wall/mineral/sandstone, /area/ruin/powered/beach) -"CZ" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/ruin/powered/beach) "Df" = ( /obj/structure/table, /obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/wood, /area/ruin/powered/beach) -"Dg" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/ruin/powered/beach) "Ds" = ( /obj/structure/closet/secure_closet/freezer/kitchen/all_access, /turf/open/floor/wood, /area/ruin/powered/beach) -"Eq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/wood, -/area/ruin/powered/beach) "Eu" = ( /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/water/beach, @@ -959,7 +946,7 @@ /area/ruin/powered/beach) "Iq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 + dir = 8 }, /turf/open/floor/pod/light, /area/ruin/powered/beach) @@ -1014,7 +1001,7 @@ /area/ruin/powered/beach) "JP" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 + dir = 8 }, /turf/open/floor/pod/light, /area/ruin/powered/beach) @@ -1109,9 +1096,7 @@ /turf/open/floor/wood, /area/ruin/powered/beach) "OP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/machinery/light/directional/south, /turf/open/floor/wood, /area/ruin/powered/beach) @@ -1506,7 +1491,7 @@ Cs Cs aj Zi -xa +BE BE Mf FO @@ -1518,8 +1503,8 @@ aj HW aC aC -Eq -ct +kh +aC hS cd Bp @@ -1538,7 +1523,7 @@ Wa as pE mh -Wa +xa gs VI VI @@ -1660,7 +1645,7 @@ Ti Ti hC vf -ct +aC BN Lm Lm @@ -2157,9 +2142,9 @@ Lm hX VO og -wY -wY -wY +gC +gC +rO Fr yc Bp @@ -2179,7 +2164,7 @@ kh aj de TC -hq +oe MZ hj mw @@ -2221,9 +2206,9 @@ dc hX VO og -gC +wY EN -kg +wY wY Pr MZ @@ -2253,7 +2238,7 @@ CL wY wY wY -gC +wY oF oU wY @@ -2285,9 +2270,9 @@ qF BE yc FD -gC wY -kg +wY +wY wY AY MZ @@ -2317,9 +2302,9 @@ UZ IL MZ sV -Dg +sV jh -CZ +sV sV Zi Mf diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm index bbf0c14f8f32..cc9f5e7a2958 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm @@ -266,7 +266,7 @@ /turf/open/floor/wood, /area/ruin/powered/snow_biodome) "hA" = ( -/obj/machinery/light/built/directional/north, +/obj/machinery/light/empty/directional/north, /obj/effect/mapping_helpers/no_lava, /turf/open/floor/pod/dark{ initial_gas_mix = "LAVALAND_ATMOS" diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_crashsite.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_crashsite.dmm index 6150ca807272..4a162ed4e76e 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_crashsite.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_crashsite.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "b" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" @@ -45,11 +45,11 @@ "h" = ( /obj/effect/decal/cleanable/rubble, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "i" = ( /obj/effect/mob_spawn/corpse/goliath, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "j" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -63,7 +63,7 @@ /area/ruin/unpowered) "l" = ( /turf/open/water/hot_spring/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "m" = ( /obj/machinery/door/airlock/survival_pod/glass, /turf/open/floor/pod/dark, @@ -75,7 +75,7 @@ /area/ruin/unpowered) "o" = ( /turf/closed/mineral/volcanic/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "p" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -97,17 +97,17 @@ "t" = ( /obj/structure/flora/tree/stump, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "u" = ( /obj/structure/bonfire/prelit, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "v" = ( /obj/effect/decal/cleanable/rubble, /obj/item/stack/sheet/mineral/titanium, /obj/item/stack/sheet/mineral/titanium, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "w" = ( /obj/effect/decal/cleanable/glass/titanium, /obj/item/stack/sheet/mineral/titanium, @@ -119,7 +119,7 @@ dir = 8 }, /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "y" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 @@ -130,22 +130,22 @@ "z" = ( /obj/item/book/manual/fish_catalog, /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "B" = ( /mob/living/basic/mining/goliath, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "D" = ( /obj/item/gun/energy/recharge/kinetic_accelerator, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "E" = ( /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "F" = ( /obj/effect/mob_spawn/corpse/human/cargo_tech, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "G" = ( /turf/template_noop, /area/template_noop) @@ -176,7 +176,7 @@ "L" = ( /obj/item/storage/toolbox/fishing, /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "M" = ( /obj/structure/rack, /obj/item/pickaxe/emergency, @@ -194,14 +194,14 @@ "P" = ( /obj/effect/mob_spawn/corpse/human/miner, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "Q" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/unpowered) "R" = ( /mob/living/basic/mining/goliath/ancient, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "S" = ( /obj/structure/bed/pod, /obj/item/bedsheet/black, @@ -214,7 +214,7 @@ "U" = ( /obj/item/bait_can/worm/premium, /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "V" = ( /obj/structure/table/survival_pod, /obj/item/food/meat/steak/goliath, diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm index f61188c3a460..2b4b18d6c680 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm @@ -40,6 +40,7 @@ "bh" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/chair/office/light, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/mineral/titanium/white, /area/ruin/powered/graveyard_shuttle) "bi" = ( @@ -298,6 +299,7 @@ "vP" = ( /obj/item/light/bulb/broken, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/mineral/titanium/white, /area/ruin/powered/graveyard_shuttle) "vS" = ( @@ -623,10 +625,6 @@ /obj/effect/spawner/structure/window/reinforced/shuttle, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/ruin/powered/graveyard_shuttle) -"ZC" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/titanium, -/area/ruin/powered/graveyard_shuttle) "ZH" = ( /obj/structure/stone_tile/surrounding_tile, /turf/open/misc/asteroid/basalt/wasteland{ @@ -1499,9 +1497,9 @@ AB bf aH aH -ZC +aH IR -ZC +aH aH aH aH diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_gas.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_gas.dmm index d03c2800eea7..790879899dbe 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_gas.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_gas.dmm @@ -585,6 +585,7 @@ pixel_y = -1 }, /obj/structure/closet/crate/freezer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden/layer2, /turf/open/floor/iron/freezer{ baseturfs = /turf/open/misc/asteroid/basalt/lava_land_surface }, @@ -714,7 +715,7 @@ }, /area/ruin/thelizardsgas_lavaland) "Eh" = ( -/obj/machinery/atmospherics/components/tank/oxygen{ +/obj/machinery/atmospherics/components/tank/air/layer2{ dir = 8 }, /turf/open/floor/iron/smooth{ @@ -730,7 +731,6 @@ /area/ruin/thelizardsgas_lavaland) "Es" = ( /obj/machinery/door/airlock/external/ruin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ @@ -850,6 +850,12 @@ baseturfs = /turf/open/misc/asteroid/basalt/lava_land_surface }, /area/ruin/thelizardsgas_lavaland) +"Im" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron{ + baseturfs = /turf/open/misc/asteroid/basalt/lava_land_surface + }, +/area/ruin/thelizardsgas_lavaland) "IC" = ( /obj/structure/cable, /obj/structure/railing, @@ -1038,7 +1044,6 @@ pixel_y = 2; pixel_x = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden/layer4, /turf/open/floor/iron{ baseturfs = /turf/open/misc/asteroid/basalt/lava_land_surface }, @@ -1530,7 +1535,7 @@ IU HL xW rM -IU +Im pp FA dC diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_mookvillage.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_mookvillage.dmm index 70ebd3ce4286..241b2b608f25 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_mookvillage.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_mookvillage.dmm @@ -106,6 +106,7 @@ "x" = ( /obj/structure/table/wood/shuttle_bar, /obj/item/clothing/head/costume/garland/poppy, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/wood/lavaland, /area/lavaland/surface/outdoors) "y" = ( @@ -119,10 +120,6 @@ /obj/structure/chair/pew/right, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"C" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/wood, -/area/lavaland/surface/outdoors) "E" = ( /obj/structure/flora/grass/jungle/b, /turf/open/misc/grass/jungle/lavaland, @@ -588,7 +585,7 @@ a a a a -C +h x c c diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm index bd903799d9f0..b79b36502388 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm @@ -346,6 +346,20 @@ pixel_x = 6 }, /obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_x = 5 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_y = 4; + pixel_x = -3 + }, /turf/open/floor/iron/white/corner{ dir = 4 }, @@ -369,9 +383,12 @@ /turf/open/floor/engine, /area/ruin/syndicate_lava_base/engineering) "dQ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/testlab) +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/ruin/syndicate_lava_base/main) "dV" = ( /obj/machinery/atmospherics/miner/plasma, /turf/open/floor/engine/plasma, @@ -666,7 +683,6 @@ /turf/open/floor/iron, /area/ruin/syndicate_lava_base/chemistry) "fx" = ( -/obj/structure/sign/warning/secure_area, /obj/machinery/porta_turret/syndicate{ dir = 9 }, @@ -774,6 +790,8 @@ "gg" = ( /obj/structure/sign/warning/fire/directional/north, /obj/structure/sign/warning/xeno_mining/directional/south, +/obj/structure/sign/warning/secure_area/directional/northeast, +/obj/structure/sign/warning/secure_area/directional/southeast, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/cargo) "gh" = ( @@ -795,24 +813,11 @@ /turf/open/floor/iron, /area/ruin/syndicate_lava_base/chemistry) "gv" = ( -/obj/structure/closet/crate, -/obj/item/vending_refill/snack{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/vending_refill/snack{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/vending_refill/coffee, -/obj/item/vending_refill/cola, /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen/directional/west, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"gO" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/cargo) "gP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/brown{ @@ -1100,10 +1105,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"iq" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/main) "iF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -1702,6 +1703,9 @@ /area/ruin/syndicate_lava_base/engineering) "nA" = ( /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/white/corner, /area/ruin/syndicate_lava_base/medbay) "nB" = ( @@ -1758,9 +1762,9 @@ /turf/open/floor/iron, /area/ruin/syndicate_lava_base/bar) "nM" = ( -/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/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/medbay) @@ -1864,10 +1868,11 @@ "oD" = ( /obj/structure/sign/warning/xeno_mining/directional/west, /obj/structure/sign/warning/fire/directional/east, +/obj/structure/sign/warning/secure_area/directional/southwest, +/obj/structure/sign/warning/secure_area/directional/southeast, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/arrivals) "oF" = ( -/obj/structure/sign/warning/secure_area, /obj/machinery/porta_turret/syndicate{ dir = 9 }, @@ -1899,6 +1904,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/airalarm/directional/south, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/main) "pk" = ( @@ -1922,9 +1928,9 @@ /area/ruin/syndicate_lava_base/engineering) "pp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/duct, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/medbay) "pu" = ( @@ -2003,9 +2009,11 @@ }, /area/ruin/syndicate_lava_base/medbay) "qA" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) +/obj/machinery/wall_healer/free/directional/north, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/ruin/syndicate_lava_base/medbay) "qN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2167,10 +2175,6 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/cargo) -"sB" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/cargo) "sH" = ( /obj/machinery/door/airlock/virology/glass{ name = "Monkey Pen" @@ -2218,7 +2222,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/duct, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "tB" = ( @@ -2330,7 +2333,8 @@ /area/ruin/syndicate_lava_base/bar) "vo" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/duct, +/obj/structure/table/reinforced, +/obj/machinery/microwave, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "vy" = ( @@ -2394,7 +2398,6 @@ ailock = 1; control_area = "/area/ruin/syndicate_lava_base/main"; dir = 1; - icon_state = "control_kill"; lethal = 1; name = "Base turret controls"; pixel_y = 30; @@ -2469,8 +2472,9 @@ /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) "xX" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, +/obj/item/reagent_containers/condiment/enzyme, +/obj/item/food/chocolatebar, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "ye" = ( @@ -2581,13 +2585,6 @@ /obj/item/reagent_containers/spray/cleaner, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/main) -"zq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/medbay) "zt" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -2613,7 +2610,42 @@ /turf/open/floor/iron, /area/ruin/syndicate_lava_base/cargo) "zy" = ( -/obj/machinery/duct, +/obj/structure/closet/crate/freezer{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/rationpack, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large{ + pixel_x = 0; + pixel_y = 0 + }, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "zC" = ( @@ -2670,6 +2702,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/apc/syndicate_access, /obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/oven/range, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "Ab" = ( @@ -3157,8 +3190,8 @@ /turf/open/floor/plating/lavaland_atmos, /area/ruin/syndicate_lava_base/main) "GG" = ( -/obj/machinery/microwave, /obj/structure/table/reinforced, +/obj/machinery/processor, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "GI" = ( @@ -3277,6 +3310,7 @@ }, /obj/machinery/duct, /obj/machinery/light/small/directional/north, +/obj/structure/sign/departments/cargo/directional/east, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) "Iv" = ( @@ -3455,7 +3489,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/duct, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "KX" = ( @@ -3651,10 +3684,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"Oj" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/arrivals) "Oq" = ( /obj/effect/spawner/random/vending/colavend{ hacked = 1 @@ -3789,6 +3818,11 @@ /obj/effect/turf_decal/sand/plating/volcanic, /turf/open/floor/plating/lavaland_atmos, /area/ruin/syndicate_lava_base/arrivals) +"Qp" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/wall_healer/free/directional/south, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) "Qu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -3866,19 +3900,18 @@ /turf/open/floor/engine/plasma, /area/ruin/syndicate_lava_base/engineering) "RG" = ( -/obj/structure/sink/kitchen/directional/west, -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance{ - req_access = null - }, +/obj/structure/closet/secure_closet/freezer/meat/all_access, /obj/item/storage/box/donkpockets{ - pixel_x = 2 + pixel_x = 0; + pixel_y = 0 }, /obj/item/storage/box/donkpockets{ - pixel_y = 3 + pixel_y = 0; + pixel_x = 0 }, /obj/item/storage/box/donkpockets{ - pixel_x = -2; - pixel_y = 6 + pixel_x = 0; + pixel_y = 0 }, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) @@ -3911,9 +3944,6 @@ /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) "SN" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/item/reagent_containers/condiment/enzyme, -/obj/item/food/chocolatebar, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, @@ -4242,6 +4272,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/main) "WA" = ( @@ -4318,36 +4349,9 @@ /turf/open/floor/engine/co2, /area/ruin/syndicate_lava_base/engineering) "Xz" = ( -/obj/structure/closet/crate/freezer, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/rationpack, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/cup/glass/waterbottle/large, -/obj/item/reagent_containers/cup/glass/waterbottle/large, -/obj/item/reagent_containers/cup/glass/waterbottle/large, -/obj/item/reagent_containers/cup/glass/waterbottle/large, -/obj/item/reagent_containers/cup/glass/waterbottle/large, -/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance{ + req_access = null + }, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "XE" = ( @@ -4517,8 +4521,18 @@ /turf/open/floor/plating, /area/ruin/syndicate_lava_base/cargo) "ZA" = ( -/obj/structure/reagent_dispensers/plumbed, /obj/machinery/light/small/directional/north, +/obj/structure/closet/crate, +/obj/item/vending_refill/snack{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/vending_refill/snack{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/vending_refill/coffee, +/obj/item/vending_refill/cola, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "ZH" = ( @@ -5327,7 +5341,7 @@ Vb mT mT mT -Oj +mT ab ab ab @@ -5651,7 +5665,7 @@ pa pa pa ae -dQ +ae TD hd hy @@ -5701,7 +5715,7 @@ ae ae ae oP -fH +dQ IX yA hz @@ -5753,7 +5767,7 @@ Mr EC jd IX -he +Qp hz UX Xi @@ -5865,9 +5879,9 @@ Vj BH rV jy -qA -gv mN +gv +jZ tA SN jy @@ -6067,11 +6081,11 @@ hz wx ha kQ -ln +qA lJ pW lI -zq +lJ nM ob al @@ -6252,14 +6266,14 @@ SQ Iw dy dy -gO +dy Tb hC dy ha -iq +ha eZ -iq +ha ha ha yG @@ -6650,7 +6664,7 @@ ab ab ab ab -sB +dy gh fx si diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_1.dmm index 8ca5c0cd2b50..0a4fce58b465 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_1.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_1.dmm @@ -133,6 +133,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/telecomms) "R" = ( @@ -147,10 +148,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/telecomms) -"V" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/telecomms) "W" = ( /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/telecomms) @@ -200,7 +197,7 @@ a (4,1,1) = {" f f -V +f O f f diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_2.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_2.dmm index fd703febfb16..6f294481474f 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_2.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_2.dmm @@ -3,9 +3,7 @@ /turf/template_noop, /area/template_noop) "b" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, /area/ruin/syndicate_lava_base/telecomms) "h" = ( @@ -93,7 +91,6 @@ "F" = ( /obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, /area/ruin/syndicate_lava_base/telecomms) @@ -229,7 +226,7 @@ a K y b -y +S T K a @@ -238,8 +235,8 @@ a a K y -S y +S T K a diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_3.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_3.dmm index cd6670dfb21f..8d8bba7502d1 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_3.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_3.dmm @@ -227,7 +227,6 @@ "W" = ( /obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/noticeboard/directional/east, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/telecomms) @@ -315,7 +314,7 @@ a G O s -p +s j k G 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 9dfb448cffec..a636d9d65efb 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm @@ -17,14 +17,6 @@ /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{ @@ -33,19 +25,6 @@ /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, @@ -67,12 +46,6 @@ /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, @@ -83,14 +56,6 @@ /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, @@ -106,7 +71,7 @@ /area/ruin/syndicate_lava_base/testlab) "ao" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 1 }, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) @@ -122,33 +87,8 @@ /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 - }, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) "at" = ( @@ -174,43 +114,6 @@ /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, @@ -240,12 +143,6 @@ /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) @@ -262,35 +159,10 @@ /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, /area/ruin/syndicate_lava_base/testlab) -"aI" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/testlab) "aJ" = ( /obj/structure/chair{ dir = 1 @@ -300,11 +172,6 @@ /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, @@ -313,7 +180,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) "aN" = ( @@ -340,16 +206,6 @@ /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, @@ -365,20 +221,6 @@ /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, @@ -411,16 +253,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) +"GB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/ruin/syndicate_lava_base/testlab) "IP" = ( /obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/airalarm/directional/north, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) -"Zh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, +"Kf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) @@ -459,8 +302,8 @@ ah ah an aY -ah -aI +ar +aD aL au aa @@ -470,8 +313,8 @@ aa aD aW ah -ao -ah +GB +aH ao ah ac @@ -484,10 +327,10 @@ aa aD IP ah -aH ah aH ah +ah aD aB aO @@ -498,8 +341,8 @@ aa aD ah ah -Zh -ah +aM +aH aM ah am @@ -512,7 +355,7 @@ aa aD aW ah -aQ +Kf gS gS aQ diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_unlikely.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_unlikely.dmm index c84eec64e9ad..27d1bd0f3b36 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_unlikely.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_unlikely.dmm @@ -33,12 +33,9 @@ "i" = ( /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"n" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/testlab) "w" = ( /obj/structure/closet/emcloset, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) "A" = ( @@ -128,7 +125,7 @@ N "} (4,1,1) = {" d -n +B w A a diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_1.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_1.dmm index 4f032c8ac053..b0fe3041c9b7 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_1.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_1.dmm @@ -63,7 +63,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "L" = ( /turf/closed/wall, /area/ruin/space/djstation) @@ -76,7 +76,7 @@ name = "Kitchen" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "P" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_2.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_2.dmm index c7cdd09fbdd7..41e0fa8eb705 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_2.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_2.dmm @@ -49,7 +49,7 @@ /obj/effect/mapping_helpers/airlock/locked, /obj/structure/barricade/wooden, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "L" = ( /turf/closed/wall, /area/ruin/space/djstation) @@ -60,7 +60,7 @@ /obj/effect/mapping_helpers/airlock/locked, /obj/structure/barricade/wooden, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "S" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_4.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_4.dmm index 9b6e108bf6ec..fa6fdf97f409 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_4.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_4.dmm @@ -116,7 +116,7 @@ name = "Kitchen" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "V" = ( /obj/structure/table, /obj/item/reagent_containers/spray/cleaner{ @@ -140,7 +140,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" e diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_1.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_1.dmm index efdb18e781a6..3d8b5681d58b 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_1.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_1.dmm @@ -24,7 +24,7 @@ name = "Rest Room" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "u" = ( /obj/machinery/duct, /turf/open/floor/iron/grimy, @@ -51,7 +51,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "F" = ( /obj/structure/curtain, /obj/machinery/shower/directional/south, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_2.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_2.dmm index ef304f1d9303..ed849a2aa621 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_2.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_2.dmm @@ -21,7 +21,7 @@ name = "Rest Room" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "v" = ( /obj/structure/bed/maint, /turf/open/floor/iron/dark/textured, @@ -32,7 +32,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "J" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_3.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_3.dmm index 9102b5e7acc6..c85247898122 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_3.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_3.dmm @@ -56,7 +56,7 @@ name = "Rest Room" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "s" = ( /obj/machinery/shower/directional/east, /turf/open/floor/iron/freezer, @@ -91,7 +91,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "C" = ( /obj/machinery/duct, /obj/machinery/light/directional/south, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_4.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_4.dmm index 52ec466ae862..0a3ef02eab42 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_4.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_4.dmm @@ -29,7 +29,7 @@ /obj/effect/mapping_helpers/airlock/locked, /obj/structure/barricade/wooden, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "q" = ( /obj/structure/girder, /obj/effect/mapping_helpers/burnt_floor, @@ -50,7 +50,7 @@ "C" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "E" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/plating/airless, @@ -72,10 +72,6 @@ /obj/effect/mapping_helpers/airlock/locked, /obj/structure/barricade/wooden, /turf/template_noop, -/area/template_noop) -"U" = ( -/obj/structure/lattice, -/turf/template_noop, /area/space/nearstation) "W" = ( /obj/structure/lattice, @@ -85,7 +81,7 @@ pixel_y = -1 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Y" = ( /obj/structure/lattice, /obj/effect/spawner/random/structure/grille, @@ -126,9 +122,9 @@ a "} (3,1,1) = {" a -U -U -U +C +C +C J x g @@ -139,12 +135,12 @@ W (4,1,1) = {" a a -U +C a -U +C a -U -U +C +C q a "} @@ -153,10 +149,10 @@ a a a a -U +C a a -U +C J a "} @@ -165,7 +161,7 @@ a a a a -U +C a a M diff --git a/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm b/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm index ebe9895b5dd2..e3f1697c0427 100644 --- a/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm +++ b/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm @@ -8,7 +8,7 @@ "c" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "d" = ( /obj/structure/frame/computer, /turf/open/floor/plating/airless, diff --git a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm index 136697eacc11..00dec1bb707a 100644 --- a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm +++ b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm @@ -66,7 +66,7 @@ "aK" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aL" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -81,7 +81,7 @@ "aQ" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aT" = ( /obj/structure/rack, /obj/item/clothing/suit/space/eva, @@ -211,7 +211,7 @@ "bK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "bN" = ( /obj/structure/grille/broken, /obj/item/stack/cable_coil/cut, @@ -227,14 +227,14 @@ "bP" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bR" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, /obj/structure/disposaloutlet, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "bT" = ( /obj/structure/grille, /obj/item/shard{ @@ -249,7 +249,7 @@ "bW" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bX" = ( /turf/open/floor/plating/airless, /area/ruin/space/has_grav/abandonedzoo) @@ -319,7 +319,7 @@ "ly" = ( /obj/machinery/power/shieldwallgen/unlocked, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "nI" = ( /obj/structure/alien/resin/wall, /obj/machinery/light/floor/broken, diff --git a/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm b/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm index 4108db225969..f877e7c8ae37 100644 --- a/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm +++ b/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm @@ -756,7 +756,7 @@ pixel_x = -6; pixel_y = 4 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 9 }, @@ -767,9 +767,7 @@ /turf/open/floor/iron/grimy, /area/ruin/space/has_grav/allamericandiner) "HF" = ( -/obj/structure/noticeboard/directional/north{ - dir = 2 - }, +/obj/structure/noticeboard/directional/north, /obj/machinery/deepfryer, /obj/effect/decal/cleanable/dirt, /obj/item/paper/fluff/ruins/allamericandiner, diff --git a/_maps/RandomRuins/SpaceRuins/anomaly_research.dmm b/_maps/RandomRuins/SpaceRuins/anomaly_research.dmm index 171775eca42e..17fe1864a16c 100644 --- a/_maps/RandomRuins/SpaceRuins/anomaly_research.dmm +++ b/_maps/RandomRuins/SpaceRuins/anomaly_research.dmm @@ -545,7 +545,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4 }, /obj/effect/decal/cleanable/dirt, @@ -682,7 +682,7 @@ /turf/open/floor/iron/white, /area/misc/anomaly_research) "sX" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/spawner/random/environmentally_safe_anomaly/bioscramblerless, /obj/item/reagent_containers/cup/bottle/wittel, /obj/effect/spawner/random/trash/grime, @@ -1807,7 +1807,7 @@ /turf/closed/mineral/snowmountain/cavern, /area/misc/anomaly_research) "Yo" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/spawner/random/trash/garbage, /obj/effect/spawner/random/trash/mopbucket, /obj/effect/decal/cleanable/dirt, diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm index 03a29e782d14..38437408106f 100644 --- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm +++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm @@ -218,7 +218,7 @@ "aY" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aZ" = ( /turf/closed/wall, /area/ruin/space/has_grav/derelictoutpost) diff --git a/_maps/RandomRuins/SpaceRuins/bus.dmm b/_maps/RandomRuins/SpaceRuins/bus.dmm index 4a77be7c7d54..177654f63add 100644 --- a/_maps/RandomRuins/SpaceRuins/bus.dmm +++ b/_maps/RandomRuins/SpaceRuins/bus.dmm @@ -8,7 +8,7 @@ "ac" = ( /obj/item/trash/sosjerky, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "am" = ( /obj/structure/fluff/bus/passable/seat, /obj/effect/decal/cleanable/dirt, diff --git a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm index 9912d559703c..12b94e1b65b8 100644 --- a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm +++ b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm @@ -5,32 +5,32 @@ "ab" = ( /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ac" = ( /obj/item/stack/sheet/mineral/plastitanium, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ad" = ( /obj/item/wallframe/camera, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "af" = ( /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ag" = ( /obj/structure/lattice/catwalk, /obj/structure/closet/crate/secure/weapon, /obj/item/gun/energy/e_gun/mini, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ah" = ( /obj/structure/lattice/catwalk, /mob/living/basic/trooper/pirate/ranged/space{ environment_smash = 0 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aj" = ( /obj/docking_port/stationary{ dir = 2; @@ -42,15 +42,15 @@ width = 22 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ao" = ( /obj/item/stack/sheet/mineral/titanium, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aD" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bl" = ( /mob/living/basic/carp, /turf/template_noop, @@ -58,11 +58,11 @@ "br" = ( /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bs" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, @@ -115,7 +115,7 @@ "dc" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -228,7 +228,7 @@ /obj/structure/lattice, /obj/structure/broken_flooring/plating/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "fG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/frame/computer, @@ -248,11 +248,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/ruin/caravan/freighter2) -"hj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/iron/airless, -/area/shuttle/ruin/caravan/freighter2) "iR" = ( /obj/effect/turf_decal/bot_white, /obj/effect/decal/cleanable/dirt, @@ -275,7 +270,7 @@ width = 15 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "kG" = ( /obj/docking_port/stationary{ dir = 4; @@ -287,7 +282,7 @@ width = 9 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "kU" = ( /obj/docking_port/stationary{ dir = 2; @@ -299,7 +294,7 @@ width = 27 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "kX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -311,7 +306,7 @@ /obj/structure/lattice, /obj/structure/broken_flooring/pile/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lC" = ( /turf/closed/mineral/random/high_chance, /area/ruin/space/has_grav) @@ -414,7 +409,6 @@ /turf/open/floor/plating/airless, /area/shuttle/ruin/caravan/freighter2) "oI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, /area/shuttle/ruin/caravan/freighter2) @@ -471,7 +465,7 @@ "re" = ( /obj/structure/broken_flooring/singular/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "rj" = ( /obj/effect/turf_decal/bot_white/right, /obj/machinery/power/apc/auto_name/directional/west, @@ -656,7 +650,7 @@ "As" = ( /obj/structure/broken_flooring/singular/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "AA" = ( /obj/effect/turf_decal/box/white/corners{ dir = 8 @@ -680,7 +674,7 @@ "Bq" = ( /obj/structure/broken_flooring/pile/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Bv" = ( /obj/structure/chair{ dir = 4 @@ -873,7 +867,7 @@ "Ku" = ( /obj/structure/broken_flooring/plating/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "KC" = ( /obj/item/stack/cable_coil{ amount = 1 @@ -885,7 +879,7 @@ /obj/structure/lattice, /obj/structure/broken_flooring/plating/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Lx" = ( /obj/structure/rack, /obj/item/tank/jetpack/carbondioxide, @@ -939,7 +933,9 @@ /turf/open/floor/iron/dark/airless, /area/shuttle/ruin/caravan/freighter3) "Nm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /mob/living/basic/trooper/pirate/ranged/space{ environment_smash = 0 @@ -1094,6 +1090,7 @@ /area/shuttle/ruin/caravan/freighter2) "Wb" = ( /obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/iron/airless, /area/shuttle/ruin/caravan/freighter2) "WC" = ( @@ -3473,7 +3470,7 @@ aa bN iR Nm -hj +oI oI IZ Bz diff --git a/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm b/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm index b2d0e0076858..8f27318f8232 100644 --- a/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm +++ b/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm @@ -122,12 +122,9 @@ dir = 8 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/white, /area/ruin/space/has_grav/powered/ancient_shuttle) -"n" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/ruin/space/has_grav/powered/ancient_shuttle) "o" = ( /obj/machinery/vending/snack/teal, /obj/effect/decal/cleanable/dirt, @@ -521,7 +518,7 @@ a (18,1,1) = {" a d -n +T A K T diff --git a/_maps/RandomRuins/SpaceRuins/clownplanet.dmm b/_maps/RandomRuins/SpaceRuins/clownplanet.dmm index fa0b50cc4435..67b7b1f74e89 100644 --- a/_maps/RandomRuins/SpaceRuins/clownplanet.dmm +++ b/_maps/RandomRuins/SpaceRuins/clownplanet.dmm @@ -30,8 +30,8 @@ /turf/open/floor/engine, /area/ruin/space/has_grav/powered/clownplanet) "ai" = ( -/obj/structure/sign/warning, -/turf/closed/wall/mineral/sandstone, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/bronze, /area/ruin/space/has_grav/powered/clownplanet) "aj" = ( /turf/open/floor/grass{ @@ -118,7 +118,9 @@ /turf/open/floor/iron/bluespace, /area/ruin/space/has_grav/powered/clownplanet) "az" = ( -/obj/structure/signpost, +/obj/structure/signpost{ + teleports = 1 + }, /turf/open/floor/grass{ color = "#1eff00" }, @@ -613,8 +615,8 @@ aa (10,1,1) = {" ae ae -ac ai +af aM aE ak @@ -743,8 +745,8 @@ ae (15,1,1) = {" ae ae -ac ai +af aO aP aj diff --git a/_maps/RandomRuins/SpaceRuins/commsbuoy_nt.dmm b/_maps/RandomRuins/SpaceRuins/commsbuoy_nt.dmm index 43c2ff963264..956e8813e939 100644 --- a/_maps/RandomRuins/SpaceRuins/commsbuoy_nt.dmm +++ b/_maps/RandomRuins/SpaceRuins/commsbuoy_nt.dmm @@ -54,9 +54,7 @@ /turf/template_noop, /area/template_noop) "gw" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium, /area/ruin/space/nt_commsbuoy) "hb" = ( @@ -141,17 +139,13 @@ /turf/open/floor/plating, /area/ruin/space/nt_commsbuoy) "jy" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/light/small/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/titanium, /area/ruin/space/nt_commsbuoy) "jz" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/titanium, /area/ruin/space/nt_commsbuoy) "kZ" = ( @@ -386,9 +380,6 @@ /turf/closed/wall/mineral/iron, /area/ruin/space/nt_commsbuoy) "FH" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/structure/rack, /obj/item/clothing/suit/space/syndicate/orange{ pixel_x = 6; @@ -398,6 +389,7 @@ pixel_x = 9; pixel_y = -5 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium, /area/ruin/space/nt_commsbuoy) "FK" = ( @@ -406,9 +398,7 @@ /area/space/nearstation) "Gd" = ( /obj/structure/fluff/commsbuoy_processor, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/titanium/blue, /area/ruin/space/nt_commsbuoy) "Gq" = ( @@ -527,7 +517,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ws" = ( /obj/structure/marker_beacon/cerulean, /turf/open/floor/plating/reinforced/airless, diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm index 60e8714e865a..13428e3432f3 100644 --- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm +++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm @@ -256,7 +256,7 @@ "mb" = ( /obj/item/stack/ore/glass, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "mu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, @@ -633,7 +633,7 @@ "zg" = ( /obj/item/stack/tile/wood, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zm" = ( /obj/structure/table/wood, /obj/effect/spawner/random/decoration, @@ -955,7 +955,7 @@ "ID" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "IG" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood/parquet, @@ -1028,11 +1028,11 @@ "KF" = ( /obj/item/stack/cable_coil/cut, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "KO" = ( /obj/item/light/tube/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ln" = ( /obj/effect/turf_decal/trimline/brown/filled/warning, /obj/effect/turf_decal/trimline/brown/line{ @@ -1094,7 +1094,7 @@ "MC" = ( /obj/effect/mob_spawn/corpse/human/laborer, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Nc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1309,7 +1309,7 @@ /obj/item/shard, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Xy" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/effect/turf_decal/trimline/yellow/filled/line{ diff --git a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm index a2baaa8dc206..8900f33d7f8e 100644 --- a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm +++ b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm @@ -112,6 +112,7 @@ /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/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "bu" = ( @@ -1654,7 +1655,7 @@ /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/purple, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "uP" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -1843,7 +1844,6 @@ /area/ruin/space/has_grav/dangerous_research) "xD" = ( /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 = 8 }, @@ -1872,7 +1872,7 @@ "xZ" = ( /obj/structure/sign/poster/official/random/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 1 }, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, @@ -1996,7 +1996,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /obj/effect/turf_decal/tile/neutral/half{ dir = 8 @@ -2018,7 +2018,7 @@ "zY" = ( /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zZ" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -2100,6 +2100,7 @@ /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/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "AQ" = ( @@ -2147,6 +2148,12 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) +"Bp" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/dorms) "Bq" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -2226,11 +2233,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) -"Cf" = ( -/obj/effect/turf_decal/tile/purple/diagonal_edge, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/diagonal, -/area/ruin/space/has_grav/dangerous_research) "Cl" = ( /turf/closed/wall, /area/ruin/space/has_grav/dangerous_research/maint) @@ -2411,7 +2413,7 @@ "Ey" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "EA" = ( /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/lab) @@ -2452,7 +2454,6 @@ /area/ruin/space/has_grav/dangerous_research/dorms) "Fi" = ( /obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) @@ -2578,6 +2579,7 @@ }, /obj/item/pen/red, /obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) "Go" = ( @@ -2793,6 +2795,7 @@ name = "Alternate Sciences Research Center" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) "KS" = ( @@ -2965,7 +2968,6 @@ }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/purple/diagonal_edge, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) "Ni" = ( @@ -3100,7 +3102,6 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/chair/office/light, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) @@ -3117,6 +3118,7 @@ /obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "OM" = ( @@ -3189,6 +3191,7 @@ /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/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "PL" = ( @@ -3216,20 +3219,9 @@ /obj/structure/chair/office{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) -"Qa" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "Qe" = ( /turf/closed/wall/r_wall/rust, /area/ruin/space/has_grav/dangerous_research/dorms) @@ -3353,12 +3345,6 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) -"Rt" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) "Rx" = ( /obj/structure/closet{ name = "Greyham's Locker" @@ -3503,6 +3489,7 @@ "Te" = ( /obj/effect/turf_decal/tile/purple/diagonal_edge, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) "TD" = ( @@ -3535,11 +3522,6 @@ /obj/effect/turf_decal/tile/neutral/half, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"Uc" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) "Uk" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3729,12 +3711,6 @@ /obj/structure/cable, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/lab) -"Xi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) "Xk" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -4248,7 +4224,7 @@ BN fg BN AK -Qa +BN zO rq jp @@ -4341,7 +4317,7 @@ ts ts qf OL -Rt +OW wb ts ts @@ -4383,7 +4359,7 @@ he tD hL bl -Uc +aD AT ts KS @@ -4425,7 +4401,7 @@ Rx ts xA AO -Rt +OW HF ts DX @@ -4467,10 +4443,10 @@ ts ts Zg PJ -Rt +OW Mb ts -Bm +Ny OC Fi PP @@ -4509,11 +4485,11 @@ Cs HQ OW nz -Xi +Lk nv ts Bm -Ny +Bp Gn xZ eQ @@ -4725,8 +4701,8 @@ Hq Hq RD Nc -tv -Cf +lp +wJ fO Bq Bq diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm index 9f560335da06..ced8c535a3fd 100644 --- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm +++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm @@ -766,15 +766,9 @@ "eq" = ( /turf/closed/wall/mineral/iron, /area/ruin/space/has_grav/deepstorage/airlock) -"ev" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/deepstorage/armory) "ew" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/deepstorage/armory) @@ -1530,6 +1524,14 @@ /obj/effect/baseturf_helper/asteroid/airless, /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage) +"nh" = ( +/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/has_grav/deepstorage/hydroponics) "oo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -2389,6 +2391,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage/hydroponics) "MV" = ( @@ -4381,7 +4384,7 @@ db dt dt pq -ev +dt xY fb fo @@ -4425,8 +4428,8 @@ ag aQ vG bC -zf -sL +nh +bC Lg aQ wK diff --git a/_maps/RandomRuins/SpaceRuins/derelict2.dmm b/_maps/RandomRuins/SpaceRuins/derelict2.dmm index b6e80272c26e..0fbccff35d0a 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict2.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict2.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /obj/machinery/door/airlock/external/ruin, /turf/open/floor/plating, @@ -13,7 +13,7 @@ "d" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "e" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/west, @@ -40,7 +40,7 @@ "k" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "l" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/north, @@ -76,7 +76,7 @@ "p" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "q" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/iron, diff --git a/_maps/RandomRuins/SpaceRuins/derelict3.dmm b/_maps/RandomRuins/SpaceRuins/derelict3.dmm index cf362dc206aa..e0b8bcd95def 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict3.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict3.dmm @@ -11,7 +11,7 @@ "d" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" a diff --git a/_maps/RandomRuins/SpaceRuins/derelict6.dmm b/_maps/RandomRuins/SpaceRuins/derelict6.dmm index 5126f8ebac96..93c890866304 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict6.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict6.dmm @@ -6,20 +6,20 @@ /obj/structure/lattice, /obj/structure/broken_flooring/singular/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ac" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/item/stack/sheet/iron, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "af" = ( /obj/structure/broken_flooring/pile/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ag" = ( /turf/open/floor/iron/airless, /area/ruin/space/has_grav) @@ -33,7 +33,7 @@ "aj" = ( /obj/structure/broken_flooring/pile/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ak" = ( /obj/item/stack/rods, /obj/effect/mapping_helpers/broken_floor, @@ -43,7 +43,7 @@ /obj/structure/broken_flooring/singular/directional/east, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "am" = ( /obj/item/stack/rods, /turf/open/floor/plating/airless, @@ -87,7 +87,7 @@ "aA" = ( /obj/structure/broken_flooring/pile/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aB" = ( /obj/item/stack/tile/iron/base, /obj/effect/mapping_helpers/broken_floor, @@ -203,12 +203,12 @@ /obj/structure/lattice, /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aZ" = ( /obj/structure/lattice, /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ba" = ( /mob/living/basic/ghost, /turf/open/floor/iron/cafeteria/airless, @@ -266,7 +266,7 @@ "bo" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bp" = ( /obj/item/stack/sheet/iron, /obj/structure/girder, @@ -291,7 +291,7 @@ "bv" = ( /obj/structure/broken_flooring/pile/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bw" = ( /obj/structure/lattice, /obj/structure/broken_flooring/plating/directional/north{ @@ -320,7 +320,7 @@ "bA" = ( /obj/structure/broken_flooring/singular/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bC" = ( /obj/structure/lattice, /obj/structure/broken_flooring/corner/directional/north, @@ -343,7 +343,7 @@ "bG" = ( /obj/structure/broken_flooring/singular/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bH" = ( /obj/structure/broken_flooring/plating/directional/south{ name = "broken plating" diff --git a/_maps/RandomRuins/SpaceRuins/derelict7.dmm b/_maps/RandomRuins/SpaceRuins/derelict7.dmm index e55afd60f982..49cd1a71613f 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict7.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict7.dmm @@ -69,7 +69,7 @@ /obj/item/stack/tile/iron/base, /obj/structure/disposalpipe/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "gK" = ( /obj/structure/closet/cabinet, /obj/item/storage/pill_bottle/happy, @@ -79,12 +79,12 @@ "gX" = ( /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "hf" = ( /obj/structure/lattice, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "iB" = ( /obj/item/shard, /obj/effect/turf_decal/tile/yellow{ @@ -108,7 +108,7 @@ /obj/structure/lattice, /obj/item/stack/tile/iron/base, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lU" = ( /obj/item/stack/tile/iron/base, /obj/effect/mapping_helpers/broken_floor, @@ -120,7 +120,7 @@ "or" = ( /obj/item/stack/tile/iron/base, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "oy" = ( /obj/structure/table_frame, /obj/effect/turf_decal/tile/yellow/opposingcorners{ @@ -132,7 +132,7 @@ /obj/structure/lattice, /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "oX" = ( /obj/structure/door_assembly/door_assembly_med, /turf/open/floor/plating/airless, @@ -146,7 +146,7 @@ /obj/structure/lattice, /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "pr" = ( /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating/airless, @@ -156,11 +156,8 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav) "qi" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 26 - }, -/turf/open/floor/iron/airless, +/obj/structure/sign/directions/medical/directional/east, +/turf/closed/wall, /area/ruin/space/has_grav) "rt" = ( /obj/item/stack/rods, @@ -173,12 +170,12 @@ "tj" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "tk" = ( /obj/structure/lattice, /obj/machinery/light/broken/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "tF" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, @@ -190,7 +187,7 @@ /obj/item/stack/tile/iron/base, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "uB" = ( /obj/structure/disposalpipe/broken{ dir = 1 @@ -208,12 +205,12 @@ /obj/item/stack/tile/iron/base, /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "wJ" = ( /obj/structure/lattice, /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "wT" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, @@ -277,11 +274,11 @@ /obj/structure/lattice, /obj/effect/spawner/random/structure/crate_abandoned, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "CT" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Di" = ( /obj/structure/frame/machine, /obj/item/circuitboard/machine/vendor, @@ -296,7 +293,7 @@ /obj/structure/lattice, /obj/item/vending_refill/assist, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "EE" = ( /obj/effect/spawner/random/trash/botanical_waste, /obj/effect/mapping_helpers/broken_floor, @@ -305,7 +302,7 @@ "Fv" = ( /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "FQ" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron/airless, @@ -324,11 +321,11 @@ /obj/structure/lattice, /obj/item/wallframe/apc, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "HO" = ( /obj/item/stack/tile/wood, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Il" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/public/glass, @@ -404,7 +401,7 @@ "NM" = ( /obj/effect/spawner/random/medical/surgery_tool, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "NN" = ( /obj/effect/turf_decal/trimline/neutral/warning{ dir = 1 @@ -418,7 +415,7 @@ "Pi" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Pn" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -430,17 +427,17 @@ /obj/structure/girder/displaced, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qk" = ( /obj/structure/lattice, /obj/item/stack/tile/wood, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qw" = ( /obj/structure/lattice, /obj/structure/table_frame, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qy" = ( /obj/item/wallframe/airalarm, /obj/structure/disposalpipe/segment{ @@ -499,7 +496,7 @@ /obj/structure/lattice, /obj/item/light/tube/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Wr" = ( /obj/structure/door_assembly/door_assembly_mai, /obj/effect/mapping_helpers/broken_floor, @@ -519,7 +516,7 @@ /obj/item/wallframe/intercom, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" DY @@ -614,7 +611,7 @@ dV (7,1,1) = {" rN eP -eP +qi AY JI IE @@ -630,7 +627,7 @@ IR eP ea eP -qi +nf fc Nw eP diff --git a/_maps/RandomRuins/SpaceRuins/derelict8.dmm b/_maps/RandomRuins/SpaceRuins/derelict8.dmm index 41b53c9b8166..f91b7aafb310 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict8.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict8.dmm @@ -3,7 +3,7 @@ /obj/item/stack/tile/iron/base, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ck" = ( /obj/effect/spawner/random/structure/girder{ spawn_loot_chance = 80 @@ -22,7 +22,7 @@ /obj/structure/lattice, /obj/item/stack/tile/iron/base, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dS" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light/broken/directional/south, @@ -32,12 +32,12 @@ "es" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "eu" = ( /obj/structure/lattice, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "hs" = ( /obj/effect/spawner/random/trash/bin, /obj/effect/decal/cleanable/dirt, @@ -119,7 +119,7 @@ /obj/structure/lattice, /obj/effect/spawner/random/trash/food_packaging, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "yf" = ( /obj/structure/table, /obj/item/food/deadmouse{ @@ -136,11 +136,11 @@ /obj/item/stack/tile/iron/base, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zh" = ( /obj/item/stack/tile/iron/base, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zt" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, @@ -155,7 +155,7 @@ "zK" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "BD" = ( /obj/structure/table, /obj/item/gps/spaceruin{ @@ -176,7 +176,7 @@ /obj/structure/lattice, /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "DQ" = ( /obj/effect/decal/cleanable/glass, /obj/structure/grille, @@ -242,12 +242,12 @@ "Of" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "OD" = ( /obj/structure/lattice, /obj/item/stack/cable_coil/cut, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "OM" = ( /obj/effect/spawner/random/bureaucracy/paper, /obj/structure/table, diff --git a/_maps/RandomRuins/SpaceRuins/derelict_construction.dmm b/_maps/RandomRuins/SpaceRuins/derelict_construction.dmm index c6825c841427..bc3c45fd2d9f 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict_construction.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict_construction.dmm @@ -261,12 +261,12 @@ "DU" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "DY" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/burgundy, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "DZ" = ( /obj/structure/frame, /turf/open/misc/asteroid, @@ -346,10 +346,6 @@ /obj/structure/door_assembly/door_assembly_sec, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/derelictconstruction) -"LL" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space/nearstation) "Md" = ( /turf/open/floor/plating/foam, /area/ruin/space/has_grav/derelictconstruction) @@ -545,9 +541,9 @@ qM qM qM uw -LL +DU qM -LL +DU qM eu qM @@ -574,10 +570,10 @@ qM qM qM uw -LL -LL +DU +DU fa -LL +DU uw Ik bY @@ -603,9 +599,9 @@ qM qM qM Ax -LL +DU qM -LL +DU qM Ax Vq @@ -634,8 +630,8 @@ qM Wj Sw Sw -LL -LL +DU +DU Ax Md ao @@ -663,7 +659,7 @@ qM uw eu qM -LL +DU Sw Ax gi @@ -985,10 +981,10 @@ qR Za qR qR -LL -LL -LL -LL +DU +DU +DU +DU Ax bY bY diff --git a/_maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm b/_maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm index d62b5885ef62..b3cd97c716b9 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm @@ -95,7 +95,7 @@ dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_pump/layer4{ - dir = 4 + dir = 1 }, /obj/structure/cable, /turf/open/floor/pod/light, @@ -283,7 +283,6 @@ /obj/effect/decal/cleanable/blood/footprints{ 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/tgmcemblem{ @@ -410,7 +409,7 @@ "mC" = ( /obj/item/stack/tile/iron/smooth_corner, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "na" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/machinery/computer/terminal/sulaco/map, @@ -427,7 +426,7 @@ /obj/structure/lattice, /obj/item/stack/tile/iron/smooth_half, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "nG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks/xeno{ @@ -606,7 +605,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/layer4{ dir = 4 }, -/obj/structure/cable, /turf/open/floor/carpet, /area/ruin/space/has_grav/derelictsulaco) "uk" = ( @@ -968,6 +966,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/floor/broken, +/obj/structure/cable, /turf/open/floor/carpet, /area/ruin/space/has_grav/derelictsulaco) "GL" = ( @@ -1127,7 +1126,7 @@ "KI" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "KS" = ( /obj/machinery/door/window/brigdoor/left/directional/east, /obj/machinery/keycard_auth/wall_mounted/directional/north, @@ -1234,7 +1233,7 @@ "Ne" = ( /obj/item/stack/tile/iron/smooth_half, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ng" = ( /obj/machinery/camera/directional/south{ network = list() @@ -1311,7 +1310,7 @@ /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "PZ" = ( /obj/structure/table/reinforced, /obj/item/storage/box/ids{ @@ -1375,7 +1374,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Sj" = ( /obj/structure/alien/weeds, /obj/structure/bed/nest, @@ -1516,7 +1515,7 @@ /obj/item/stack/tile/iron/smooth_half, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "VO" = ( /obj/structure/alien/weeds, /obj/structure/barricade/sandbags, @@ -1565,7 +1564,7 @@ anchored = 1 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "WQ" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/red/fourcorners, @@ -1583,7 +1582,7 @@ /obj/structure/lattice, /obj/item/stack/tile/iron/smooth_corner, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "XC" = ( /obj/structure/alien/weeds, /obj/machinery/atmospherics/components/unary/vent_pump/layer4{ @@ -1671,7 +1670,7 @@ "ZZ" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" hi @@ -2537,7 +2536,7 @@ VO Op OQ Ng -sr +VT lf hi hi diff --git a/_maps/RandomRuins/SpaceRuins/dj_station.dmm b/_maps/RandomRuins/SpaceRuins/dj_station.dmm index 89aa0534e1bb..a3ef3d4d6545 100644 --- a/_maps/RandomRuins/SpaceRuins/dj_station.dmm +++ b/_maps/RandomRuins/SpaceRuins/dj_station.dmm @@ -50,7 +50,7 @@ key = "radioroom" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "u" = ( /obj/machinery/telecomms/relay/preset/telecomms, /turf/open/floor/plating, @@ -143,7 +143,7 @@ key = "solars" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "V" = ( /obj/structure/sign/warning/vacuum/external/directional/south, /obj/effect/spawner/random/maintenance, diff --git a/_maps/RandomRuins/SpaceRuins/emptyshell.dmm b/_maps/RandomRuins/SpaceRuins/emptyshell.dmm index b0c5d4cf2601..5950409a498f 100644 --- a/_maps/RandomRuins/SpaceRuins/emptyshell.dmm +++ b/_maps/RandomRuins/SpaceRuins/emptyshell.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav) diff --git a/_maps/RandomRuins/SpaceRuins/fasttravel.dmm b/_maps/RandomRuins/SpaceRuins/fasttravel.dmm index ca51f7525f5a..8e50bd9f8056 100644 --- a/_maps/RandomRuins/SpaceRuins/fasttravel.dmm +++ b/_maps/RandomRuins/SpaceRuins/fasttravel.dmm @@ -55,7 +55,7 @@ amount = 10 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lq" = ( /obj/machinery/conveyor{ dir = 8; @@ -187,7 +187,7 @@ "CX" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "DZ" = ( /obj/machinery/power/rtg/advanced, /obj/structure/cable, diff --git a/_maps/RandomRuins/SpaceRuins/film_studio.dmm b/_maps/RandomRuins/SpaceRuins/film_studio.dmm index 595583e81405..c426b7d2bb02 100644 --- a/_maps/RandomRuins/SpaceRuins/film_studio.dmm +++ b/_maps/RandomRuins/SpaceRuins/film_studio.dmm @@ -31,7 +31,7 @@ "aG" = ( /obj/structure/lattice, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "aI" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/curtain/cloth/fancy, @@ -182,7 +182,7 @@ /area/ruin/space/has_grav/film_studio/director) "dd" = ( /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "dg" = ( /turf/closed/wall, /area/ruin/space/has_grav/film_studio/starboard) @@ -348,6 +348,7 @@ name = "Cabin 3" }, /obj/effect/mapping_helpers/airlock/access/all/away, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/ruin/space/has_grav/film_studio/dorms) "gl" = ( @@ -2263,7 +2264,6 @@ /obj/structure/chair/comfy/black{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/ruin/space/has_grav/film_studio/director) "Np" = ( @@ -3577,13 +3577,13 @@ dd XK bA NB -NB +Zd xd NB -NB +Zd On pY -NB +Zd gW NB aO @@ -5202,7 +5202,7 @@ WC KP dg DP -Wy +zL zL ST Ym diff --git a/_maps/RandomRuins/SpaceRuins/forgottenship.dmm b/_maps/RandomRuins/SpaceRuins/forgottenship.dmm index 581c5b320611..1544232c33d2 100644 --- a/_maps/RandomRuins/SpaceRuins/forgottenship.dmm +++ b/_maps/RandomRuins/SpaceRuins/forgottenship.dmm @@ -54,8 +54,8 @@ /turf/open/floor/plastic, /area/ruin/space/has_grav/syndicate_forgotten_ship) "an" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall/plastitanium/syndicate, +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "ao" = ( /turf/open/floor/carpet/royalblack, @@ -243,7 +243,7 @@ amount = 10 }, /obj/item/stack/cable_coil, -/obj/item/circuitboard/computer/rdconsole, +/obj/item/circuitboard/computer/rdconsole/unlocked, /obj/item/storage/box/stockparts/deluxe, /obj/item/storage/box/stockparts/deluxe, /obj/item/storage/box/beakers, @@ -442,7 +442,7 @@ /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bO" = ( /obj/structure/bodycontainer/crematorium{ id = "fscremate" @@ -568,10 +568,6 @@ /obj/machinery/stasis, /turf/open/floor/plastic, /area/ruin/space/has_grav/syndicate_forgotten_ship) -"ck" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/r_wall/plastitanium/syndicate, -/area/ruin/space/has_grav/syndicate_forgotten_cargopod) "cm" = ( /obj/machinery/door/airlock/grunge{ name = "Syndicate Ship Airlock" @@ -815,12 +811,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) -"cU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ruin/space/has_grav/syndicate_forgotten_ship) "cW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -922,7 +912,7 @@ /area/ruin/space/has_grav/powered/syndicate_forgotten_vault) "dj" = ( /turf/closed/mineral/random/high_chance, -/area/template_noop) +/area/space/nearstation) "dl" = ( /obj/machinery/door/password/voice/sfc{ password = null @@ -1050,11 +1040,11 @@ /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") + req_access = list("syndicate"); + dir = 1 }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) @@ -1107,6 +1097,7 @@ /obj/structure/closet/crate/secure/engineering{ req_access = list("syndicate") }, +/obj/structure/sign/departments/cargo/directional/north, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_cargopod) "Cy" = ( @@ -1182,6 +1173,10 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) +"OW" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/syndicate_forgotten_ship) "VF" = ( /obj/structure/table/reinforced, /obj/machinery/button/door{ @@ -1921,7 +1916,7 @@ ao bx aH cD -cU +aw by al al @@ -1968,7 +1963,7 @@ ao bx aS cx -aS +aw by al al @@ -2015,7 +2010,7 @@ bn bZ tv cE -aS +aw bZ bY bE @@ -2479,8 +2474,8 @@ aa bZ al al -an -al +bZ +OW at ah cA @@ -2488,8 +2483,8 @@ cP ah ah aL -al an +bZ al bJ bZ @@ -2500,7 +2495,7 @@ aa aa aY aY -ck +bb yv bj bj diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm index 09fcc9957602..20bd5e3613c9 100644 --- a/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm +++ b/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm @@ -36,6 +36,7 @@ /obj/item/paper/crumpled, /obj/item/restraints/handcuffs/cable/zipties/used, /obj/effect/decal/cleanable/blood/gibs/old, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/foodwaste) "bx" = ( @@ -537,10 +538,6 @@ /mob/living/basic/mouse, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/foodwaste) -"yi" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/garbagetruck/foodwaste) "yv" = ( /obj/item/trash/can{ pixel_x = -8; @@ -844,10 +841,8 @@ /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/foodwaste) "Ie" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, /obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/foodwaste) "II" = ( @@ -883,6 +878,7 @@ /obj/item/fish/ratfish, /obj/structure/closet/crate/freezer, /obj/effect/spawner/random/medical/surgery_tool, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/foodwaste) "KD" = ( @@ -1162,7 +1158,7 @@ "VL" = ( /obj/machinery/power/shuttle_engine/propulsion, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Xi" = ( /obj/item/food/badrecipe/moldy/bacteria, /obj/effect/decal/cleanable/food/egg_smudge, @@ -1295,7 +1291,7 @@ nS fV Vb bs -yi +Sa "} (4,1,1) = {" og @@ -1449,7 +1445,7 @@ uJ FL Nm JH -yi +Sa "} (11,1,1) = {" qM diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck2.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck2.dmm index 4ac2217e945e..1abd0beb6d1c 100644 --- a/_maps/RandomRuins/SpaceRuins/garbagetruck2.dmm +++ b/_maps/RandomRuins/SpaceRuins/garbagetruck2.dmm @@ -134,10 +134,8 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/medicalwaste) "mZ" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, /obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/medicalwaste) "nW" = ( @@ -192,6 +190,7 @@ /obj/item/poster/random_contraband, /obj/item/organ/tongue/zombie, /obj/structure/closet/crate/trashcart, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/medicalwaste) "rB" = ( @@ -616,6 +615,7 @@ brute_damage = 200; mob_type = /mob/living/carbon/human/species/lizard }, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/medicalwaste) "Ua" = ( @@ -651,7 +651,7 @@ "VL" = ( /obj/machinery/power/shuttle_engine/propulsion, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "VV" = ( /obj/effect/decal/cleanable/blood/gibs/robot_debris/up, /obj/structure/frame/computer, @@ -665,10 +665,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/medicalwaste) -"XC" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/garbagetruck/medicalwaste) "XD" = ( /obj/structure/sinkframe, /obj/structure/broken_flooring/pile, @@ -760,7 +756,7 @@ AB py io TM -XC +MC "} (4,1,1) = {" iw @@ -914,7 +910,7 @@ Tp zH AU qX -XC +MC "} (11,1,1) = {" gh diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm index 568f2e9194ff..21136cc1089d 100644 --- a/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm +++ b/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm @@ -98,6 +98,7 @@ /obj/item/trash/syndi_cakes, /obj/effect/decal/cleanable/plastic, /obj/item/t_scanner, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/squat) "gq" = ( @@ -237,10 +238,8 @@ /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/squat) "lE" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, /obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/squat) "lY" = ( @@ -786,10 +785,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/squat) -"Pz" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/garbagetruck/squat) "PE" = ( /obj/machinery/door/airlock/shuttle, /turf/open/floor/plating, @@ -886,7 +881,7 @@ "VL" = ( /obj/machinery/power/shuttle_engine/propulsion, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "WK" = ( /obj/effect/decal/cleanable/fuel_pool, /obj/item/clothing/shoes/workboots{ @@ -908,6 +903,7 @@ /obj/item/cigarette/carp, /obj/item/extinguisher/mini, /obj/effect/decal/cleanable/fuel_pool, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/squat) "XS" = ( @@ -997,7 +993,7 @@ tu hm pC fF -Pz +mV "} (4,1,1) = {" Ye @@ -1151,7 +1147,7 @@ yF Nd Er Xv -Pz +mV "} (11,1,1) = {" JX diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck4.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck4.dmm index 00f49ef1cf19..10c1a56fa260 100644 --- a/_maps/RandomRuins/SpaceRuins/garbagetruck4.dmm +++ b/_maps/RandomRuins/SpaceRuins/garbagetruck4.dmm @@ -75,6 +75,7 @@ /obj/item/clothing/shoes/kindle_kicks{ pixel_y = -10 }, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/toystore) "hH" = ( @@ -196,10 +197,6 @@ /obj/item/food/spidereggs, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/toystore) -"rb" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/garbagetruck/toystore) "rc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/flashlight/flare/torch, @@ -314,10 +311,8 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/toystore) "wu" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, /obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/toystore) "ww" = ( @@ -746,7 +741,7 @@ /obj/item/coin/plastic, /obj/structure/safe, /obj/structure/spider/stickyweb, -/obj/item/tank/jetpack/oxygen{ +/obj/item/tank/jetpack{ desc = "A tank of compressed oxygen for use as propulsion in zero-gravity areas. It's blue, and has a triangle chiselled into the paint." }, /obj/item/switchblade, @@ -798,6 +793,7 @@ }, /obj/structure/mop_bucket, /obj/item/broken_bottle, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/toystore) "UD" = ( @@ -811,7 +807,7 @@ "VL" = ( /obj/machinery/power/shuttle_engine/propulsion, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Wl" = ( /obj/structure/plasticflaps/opaque, /turf/open/floor/plating, @@ -953,7 +949,7 @@ xC Ix dq TO -rb +Yr "} (4,1,1) = {" yP @@ -1107,7 +1103,7 @@ ld Hy Rl hD -rb +Yr "} (11,1,1) = {" Zi diff --git a/_maps/RandomRuins/SpaceRuins/hauntedtradingpost.dmm b/_maps/RandomRuins/SpaceRuins/hauntedtradingpost.dmm index 03a5efc398f5..075260585625 100644 --- a/_maps/RandomRuins/SpaceRuins/hauntedtradingpost.dmm +++ b/_maps/RandomRuins/SpaceRuins/hauntedtradingpost.dmm @@ -25,7 +25,8 @@ /obj/machinery/button/door/invisible_tripwire{ id = "donk_vault_lasertrap"; suicide_pact = 1; - suicide_pact_id = "donk_vault_lasertrap" + suicide_pact_id = "donk_vault_lasertrap"; + dir = 1 }, /turf/open/floor/wood, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -78,7 +79,7 @@ /obj/structure/grille, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bd" = ( /obj/structure/table/wood, /obj/structure/cable/layer1, @@ -357,7 +358,8 @@ suicide_pact = 1; suicide_pact_id = "donk_office_trap_shutters"; id = "donk_office_trap_shutters"; - sync_doors = 0 + sync_doors = 0; + dir = 4 }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -514,7 +516,8 @@ suicide_pact = 1; suicide_pact_id = "donk_office_trap_shutters"; id = "donk_office_trap_shutters"; - sync_doors = 0 + sync_doors = 0; + dir = 4 }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -581,11 +584,9 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/sink/directional/south, -/obj/machinery/button/door{ - pixel_y = 22; - pixel_x = -12; - id = "donk_market"; - name = "shutter button" +/obj/machinery/button/door/directional/north{ + pixel_x = 10; + id = "donk_market" }, /turf/open/floor/carpet/orange, /area/ruin/space/has_grav/hauntedtradingpost/public) @@ -837,6 +838,9 @@ /obj/structure/curtain/cloth/fancy, /turf/open/floor/carpet/donk, /area/ruin/space/has_grav/hauntedtradingpost/public) +"ht" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ruin/space/has_grav/hauntedtradingpost/aicore) "hw" = ( /obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/airalarm/directional/south, @@ -879,7 +883,6 @@ }, /obj/item/coin/gold, /obj/item/vending_refill/donksnackvendor, -/obj/item/circuitboard/machine/vending/donksnackvendor, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/space/has_grav/hauntedtradingpost/public) "hL" = ( @@ -915,21 +918,21 @@ /turf/open/floor/carpet/orange/airless, /area/ruin/space/has_grav/hauntedtradingpost/public/corridor) "ia" = ( -/obj/structure/safe/floor, -/obj/item/fishing_hook/shiny{ - desc = "A fancy fishing hook made out of gold."; - name = "fancy gold fishing hook" - }, -/obj/item/food/bait/natural, /obj/structure/cable/layer1, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, /obj/machinery/button/door/invisible_tripwire{ id = "donk_vault_lasertrap"; suicide_pact = 1; suicide_pact_id = "donk_vault_lasertrap" }, +/obj/item/food/bait/natural, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/fishing_hook/shiny{ + desc = "A fancy fishing hook made out of gold."; + name = "fancy gold fishing hook" + }, +/obj/structure/safe/floor, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/space/has_grav/hauntedtradingpost/office) "ic" = ( @@ -1020,7 +1023,8 @@ id = "donk_office_entrance_trap_gamma"; donk_ai_slave = 1; multiuse = 1; - resets_self = 1 + resets_self = 1; + dir = 1 }, /turf/open/floor/carpet/orange, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -1152,7 +1156,8 @@ suicide_pact = 1; suicide_pact_id = "donk_office_trap_shutters"; id = "donk_office_trap_shutters"; - sync_doors = 0 + sync_doors = 0; + dir = 4 }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -1241,7 +1246,7 @@ /obj/structure/lattice, /obj/structure/grille, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "kx" = ( /mob/living/basic/bot/dedbot{ bot_mode_flags = 29 @@ -1426,12 +1431,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/carpet/orange, /area/ruin/space/has_grav/hauntedtradingpost/public/corridor) -"mh" = ( -/obj/item/circuitboard/machine/vendatray{ - pixel_y = 15 - }, -/turf/open/floor/carpet/orange, -/area/ruin/space/has_grav/hauntedtradingpost/public) "mn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/airalarm/directional/south, @@ -1807,9 +1806,7 @@ /area/ruin/space/has_grav/hauntedtradingpost/office) "pG" = ( /obj/structure/lattice/catwalk, -/obj/effect/spawner/structure/electrified_grille{ - spawn_list = list(/obj/structure/grille,/obj/structure/cable/layer1) - }, +/obj/effect/spawner/structure/electrified_grille/layer1, /turf/template_noop, /area/ruin/space/has_grav/hauntedtradingpost/office) "pN" = ( @@ -1943,7 +1940,7 @@ /turf/template_noop, /area/template_noop) "qY" = ( -/obj/item/tank/jetpack/oxygen/security{ +/obj/item/tank/jetpack/security{ name = "red jetpack (oxygen)" }, /obj/item/tank/internals/oxygen/red, @@ -2105,7 +2102,7 @@ /obj/structure/table/reinforced/plastitaniumglass, /obj/effect/spawner/random/exotic/technology, /obj/effect/mapping_helpers/apc/syndicate_access, -/obj/item/gun/energy/laser/carbine/cybersun, +/obj/item/gun/energy/laser/cybersun, /obj/effect/mapping_helpers/apc/full_charge, /obj/machinery/power/apc/auto_name/directional/south{ cable_layer = 1 @@ -2151,15 +2148,12 @@ /obj/structure/cable/layer1, /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/cell_charger, -/obj/machinery/button/door{ - pixel_y = 23; - pixel_x = 10; - id = "donk_office_peek"; - name = "shutter button" - }, /obj/item/stock_parts/power_store/cell/bluespace{ pixel_y = 2 }, +/obj/machinery/button/door/directional/north{ + id = "donk_office_peek" + }, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/space/has_grav/hauntedtradingpost/aicore) "sD" = ( @@ -2882,7 +2876,7 @@ /obj/effect/spawner/random/structure/grille, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "yU" = ( /obj/item/rack_parts{ pixel_y = 8; @@ -2990,17 +2984,11 @@ "zQ" = ( /mob/living/basic/viscerator, /obj/effect/turf_decal/bot_red, -/obj/machinery/button/door{ - pixel_y = 23; - pixel_x = 8; - normaldoorcontrol = 1; - specialfunctions = 4; - id = "donk_aicore_door_bolts"; - name = "Door Bolt Button"; - skin = "-warning"; - silicon_access_disabled = 1 - }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/button/door/directional/north{ + id = "donk_aicore_door_bolts" + }, +/obj/structure/sign/warning/directional/west, /turf/open/floor/circuit/red/off, /area/ruin/space/has_grav/hauntedtradingpost/aicore) "Ab" = ( @@ -3046,9 +3034,7 @@ /area/ruin/space/has_grav/hauntedtradingpost/employees/corridor) "At" = ( /obj/structure/lattice/catwalk, -/obj/effect/spawner/structure/electrified_grille{ - spawn_list = list(/obj/structure/grille,/obj/structure/cable/layer1) - }, +/obj/effect/spawner/structure/electrified_grille/layer1, /turf/template_noop, /area/ruin/space/has_grav/hauntedtradingpost/employees/corridor) "Au" = ( @@ -3142,7 +3128,7 @@ /obj/structure/lattice, /obj/effect/spawner/random/structure/grille, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Bj" = ( /obj/structure/rack, /obj/effect/spawner/random/medical/minor_healing, @@ -3283,7 +3269,8 @@ id = "donk_office_entrance_trap_alpha"; resets_self = 1; donk_ai_slave = 1; - multiuse = 1 + multiuse = 1; + dir = 1 }, /turf/open/floor/carpet/orange, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -3412,9 +3399,7 @@ id = "Donk_Trash_Chute" }, /obj/machinery/light/small/dim/directional/west, -/obj/machinery/button/door{ - pixel_y = 10; - pixel_x = -23; +/obj/machinery/button/door/directional/west{ id = "donk_waste" }, /turf/open/floor/plating, @@ -3460,9 +3445,7 @@ /area/ruin/space/has_grav/hauntedtradingpost/employees) "EC" = ( /obj/structure/lattice/catwalk, -/obj/effect/spawner/structure/electrified_grille{ - spawn_list = list(/obj/structure/grille,/obj/structure/cable/layer1) - }, +/obj/effect/spawner/structure/electrified_grille/layer1, /turf/template_noop, /area/ruin/space/has_grav/hauntedtradingpost/employees/workstation) "EK" = ( @@ -3645,7 +3628,6 @@ /turf/open/floor/carpet/donk, /area/ruin/space/has_grav/hauntedtradingpost/office) "Ga" = ( -/obj/effect/spawner/random/entertainment/arcade, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -3654,8 +3636,10 @@ }, /obj/machinery/button/door/invisible_tripwire{ id = "donk_refuel_window"; - donk_ai_slave = 1 + donk_ai_slave = 1; + dir = 1 }, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/catwalk_floor/iron_smooth, /area/ruin/space/has_grav/hauntedtradingpost/public/corridor) "Ge" = ( @@ -3974,15 +3958,8 @@ /area/ruin/space/has_grav/hauntedtradingpost/aicore) "Im" = ( /obj/effect/turf_decal/stripes/red/line, -/obj/machinery/button/door{ - pixel_y = -23; - pixel_x = -8; - normaldoorcontrol = 1; - specialfunctions = 4; - id = "donk_aicore_door_bolts"; - name = "Door Bolt Button"; - skin = "-warning"; - silicon_access_disabled = 1 +/obj/machinery/button/door/directional/south{ + id = "donk_aicore_door_bolts" }, /turf/open/floor/circuit/red/off, /area/ruin/space/has_grav/hauntedtradingpost/aicore) @@ -4072,7 +4049,8 @@ suicide_pact = 1; suicide_pact_id = "donk_office_trap_shutters"; id = "donk_office_trap_shutters"; - sync_doors = 0 + sync_doors = 0; + dir = 4 }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -4095,6 +4073,12 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/hauntedtradingpost/maint) +"Ju" = ( +/mob/living/basic/viscerator, +/obj/effect/turf_decal/bot_red, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/circuit/red/off, +/area/ruin/space/has_grav/hauntedtradingpost/aicore) "Jw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/donk, @@ -4223,23 +4207,20 @@ /obj/machinery/light/small/directional/north, /obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/button/door{ - pixel_y = 25; - pixel_x = 12; - id = "donk_toilet" - }, -/obj/machinery/button/door{ - pixel_y = 25; - pixel_x = -12; - id = "donk_toilet_window"; - name = "window shutter button" - }, /obj/machinery/airalarm/directional/south, /obj/effect/decal/cleanable/dirt, /obj/structure/toilet/secret{ secret_type = /obj/item/toy/plush/nukeplushie; dir = 4 }, +/obj/machinery/button/door/directional/north{ + pixel_x = -12; + id = "donk_toilet" + }, +/obj/machinery/button/door/directional/north{ + pixel_x = 12; + id = "donk_toilet_window" + }, /turf/open/floor/plating, /area/ruin/space/has_grav/hauntedtradingpost/maint/disposals) "KZ" = ( @@ -4345,10 +4326,6 @@ /turf/open/floor/wood, /area/ruin/space/has_grav/hauntedtradingpost/public/corridor) "LI" = ( -/obj/item/circuitboard/machine/vending/donksofttoyvendor{ - pixel_y = -2; - pixel_x = -6 - }, /obj/effect/decal/cleanable/glass, /turf/open/floor/carpet/donk, /area/ruin/space/has_grav/hauntedtradingpost/employees) @@ -4582,11 +4559,8 @@ /obj/item/stock_parts/capacitor/super{ pixel_y = 5 }, -/obj/machinery/button/door{ - pixel_y = 23; - pixel_x = -10; - id = "donk_corridor_peek"; - name = "shutter button" +/obj/machinery/button/door/directional/north{ + id = "donk_corridor_peek" }, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/space/has_grav/hauntedtradingpost/aicore) @@ -4610,7 +4584,7 @@ "NS" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "NY" = ( /obj/structure/cable/layer1, /obj/machinery/vending/coffee{ @@ -4798,7 +4772,8 @@ id = "donk_office_entrance_trap_beta"; resets_self = 1; donk_ai_slave = 1; - multiuse = 1 + multiuse = 1; + dir = 1 }, /turf/open/floor/carpet/orange, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -4884,8 +4859,7 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/space/has_grav/hauntedtradingpost/maint) "QA" = ( -/obj/structure/sign/warning, -/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/structure/window/reinforced/plasma/plastitanium, /turf/open/floor/plating, /area/ruin/space/has_grav/hauntedtradingpost/aicore) "QF" = ( @@ -5040,7 +5014,7 @@ width = 35 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "RI" = ( /obj/structure/chair/sofa/left/brown{ dir = 1 @@ -5179,13 +5153,6 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/hauntedtradingpost/maint/toystorage) "SX" = ( -/obj/machinery/button/door{ - pixel_y = 24; - pixel_x = 9; - id = "donk_office_trap_shutters"; - name = "shutter button"; - sync_doors = 0 - }, /obj/machinery/button/door/selfdestructs{ normaldoorcontrol = 1; id = "donk_door_bolts"; @@ -5195,6 +5162,10 @@ desc = "A button for unbolting doors throughout the facility."; name = "door bolt override" }, +/obj/machinery/button/door/directional/north{ + id = "donk_office_trap_shutters"; + pixel_x = 10 + }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) "SY" = ( @@ -5307,7 +5278,7 @@ name = "external vent" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "TU" = ( /obj/structure/cable/layer1, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, @@ -5566,9 +5537,7 @@ /area/ruin/space/has_grav/hauntedtradingpost/public/corridor) "Wf" = ( /obj/structure/lattice/catwalk, -/obj/effect/spawner/structure/electrified_grille{ - spawn_list = list(/obj/structure/grille,/obj/structure/cable/layer1) - }, +/obj/effect/spawner/structure/electrified_grille/layer1, /turf/template_noop, /area/ruin/space/has_grav/hauntedtradingpost/office/meetingroom) "Wg" = ( @@ -6015,7 +5984,7 @@ /obj/structure/lattice, /obj/structure/grille/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ZI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -6695,7 +6664,7 @@ jk je Nw Ii -ve +ht QA lA nE @@ -6756,7 +6725,7 @@ tl Ht uZ eE -mh +Ip He TY RX @@ -6831,7 +6800,7 @@ BE yb Im MR -kl +Ju Gk iv PX @@ -6875,7 +6844,7 @@ pX je Nw AB -ve +MR QA kl nE diff --git a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm b/_maps/RandomRuins/SpaceRuins/hellfactory.dmm index 4d3ac05f1be2..7ddd26f84194 100644 --- a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm +++ b/_maps/RandomRuins/SpaceRuins/hellfactory.dmm @@ -347,7 +347,7 @@ "bm" = ( /obj/structure/table, /obj/item/stamp/denied, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 6; pixel_y = 6 }, @@ -876,7 +876,7 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/hellfactory) "ux" = ( -/obj/machinery/light/small/directional/west, +/obj/machinery/light/small/directional/east, /turf/open/floor/iron, /area/ruin/space/has_grav/hellfactory) "uL" = ( diff --git a/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm b/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm index 9565fa689c34..96b778786af6 100644 --- a/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm +++ b/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm @@ -35,7 +35,7 @@ "aB" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aV" = ( /obj/machinery/light/small/red/dim/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -84,7 +84,7 @@ /obj/item/ammo_casing/spent, /obj/item/ammo_casing/spent, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bD" = ( /obj/effect/decal/cleanable/blood/gibs{ icon_state = "gib3-old"; @@ -450,7 +450,7 @@ "fM" = ( /obj/structure/door_assembly/door_assembly_ext, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "fX" = ( /obj/structure/toilet{ dir = 4 @@ -463,7 +463,7 @@ "gG" = ( /obj/effect/spawner/random/trash/food_packaging, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "gW" = ( /obj/effect/turf_decal{ dir = 4 @@ -945,7 +945,7 @@ pixel_x = 15 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qb" = ( /obj/effect/turf_decal{ dir = 8 @@ -1014,14 +1014,14 @@ "qF" = ( /obj/item/ammo_casing/spent, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qJ" = ( /obj/structure/closet/crate/trashcart, /obj/item/clothing/mask/facehugger/toy, /obj/item/storage/fancy/cigarettes/cigpack_cannabis, /obj/effect/mob_spawn/corpse/human/charredskeleton, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qR" = ( /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/mob_spawn/corpse/human/syndicatecommando/lessenedgear, @@ -1103,7 +1103,7 @@ "rO" = ( /obj/structure/broken_flooring/pile/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "so" = ( /obj/effect/mapping_helpers/broken_floor, /obj/item/broken_missile, @@ -1150,7 +1150,7 @@ "sT" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "sZ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -1365,7 +1365,7 @@ amount = 25 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "wt" = ( /obj/effect/turf_decal{ icon_state = "warningline_white"; @@ -1448,7 +1448,7 @@ /obj/effect/spawner/random/trash, /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/mineral/plastitanium/airless, -/area/template_noop) +/area/space/nearstation) "xo" = ( /obj/effect/decal/cleanable/glass, /obj/structure/cable, @@ -1651,11 +1651,11 @@ }, /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "zU" = ( /obj/structure/broken_flooring/pile/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zV" = ( /obj/machinery/suit_storage_unit/open, /obj/effect/turf_decal{ @@ -1839,7 +1839,7 @@ "Eg" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Er" = ( /obj/effect/turf_decal{ icon_state = "arrows_red"; @@ -1879,7 +1879,7 @@ "EB" = ( /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "EL" = ( /obj/effect/turf_decal{ icon_state = "warningline_white" @@ -2086,12 +2086,12 @@ "HD" = ( /obj/structure/broken_flooring/singular/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "HP" = ( /obj/structure/broken_flooring/plating/directional/north, /obj/structure/broken_flooring/pile/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Im" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/mineral/plastitanium, @@ -2325,7 +2325,7 @@ /obj/item/ammo_casing/spent, /obj/structure/alien/weeds, /turf/open/floor/mineral/plastitanium/airless, -/area/template_noop) +/area/space/nearstation) "Ln" = ( /obj/effect/decal/cleanable/glass, /obj/item/ammo_casing/spent, @@ -2518,7 +2518,7 @@ amount = 23 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ou" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -2624,7 +2624,7 @@ /obj/item/ammo_casing/spent, /obj/item/ammo_casing/spent, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qm" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -2649,7 +2649,7 @@ "QL" = ( /obj/structure/broken_flooring/singular/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ru" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt, @@ -2657,7 +2657,7 @@ /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, -/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack, /obj/item/storage/box/coffeepack, /obj/item/storage/box/coffeepack, /obj/item/storage/box/emptysandbags, @@ -2728,7 +2728,7 @@ "RY" = ( /obj/effect/spawner/random/trash, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Sr" = ( /obj/effect/turf_decal{ icon_state = "warningline_white"; @@ -2937,7 +2937,7 @@ "VR" = ( /obj/item/tank/internals/oxygen/empty, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "VU" = ( /obj/structure/cable, /obj/effect/decal/cleanable/vomit/old, @@ -3004,7 +3004,7 @@ amount = 50 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Xc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, diff --git a/_maps/RandomRuins/SpaceRuins/interdyne.dmm b/_maps/RandomRuins/SpaceRuins/interdyne.dmm index ae2a3578e2fc..c053639750b6 100644 --- a/_maps/RandomRuins/SpaceRuins/interdyne.dmm +++ b/_maps/RandomRuins/SpaceRuins/interdyne.dmm @@ -8,12 +8,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/interdyne) -"aI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/interdyne) "aY" = ( /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/interdyne) @@ -54,6 +48,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/gibspawner/generic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/interdyne) "cJ" = ( @@ -670,11 +665,6 @@ /obj/machinery/light/blacklight/directional/north, /turf/open/floor/iron/smooth, /area/ruin/space/has_grav/interdyne) -"DA" = ( -/mob/living/basic/zombie, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/interdyne) "DH" = ( /turf/open/floor/iron/showroomfloor, /area/ruin/space/has_grav/interdyne) @@ -995,6 +985,12 @@ /obj/structure/sink/directional/south, /turf/open/floor/iron/showroomfloor, /area/ruin/space/has_grav/interdyne) +"OU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/interdyne) "OW" = ( /obj/machinery/power/smes/engineering{ input_available = 100000; @@ -1783,8 +1779,8 @@ fu eJ WU Zi -gV -vd +oO +OU xb Zi Rn @@ -1819,7 +1815,7 @@ Yi US NG In -SE +QD FF Zi Rn @@ -2161,7 +2157,7 @@ mp Zi fu Nb -DA +uy ga Zi Gk @@ -2196,7 +2192,7 @@ SC Zi ub cG -aI +OU QD Zi XS diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm index c1188e986636..cb069a04b11d 100644 --- a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm @@ -24,7 +24,6 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "aP" = ( -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/anticorner/contrasted, /turf/open/floor/iron, @@ -53,7 +52,6 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "by" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/item/multitool{ pixel_x = 8; pixel_y = 3 @@ -80,18 +78,10 @@ /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) "ch" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/cerulean, /turf/template_noop, /area/ruin/space) -"cj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/small, -/area/ruin/space/has_grav/listeningstation) "cq" = ( /obj/effect/turf_decal/bot, /obj/item/weldingtool/largetank, @@ -123,7 +113,6 @@ /obj/structure/table, /obj/item/storage/medkit/regular, /obj/item/clothing/neck/stethoscope, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/small/directional/north, /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 @@ -131,20 +120,23 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) "dv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) -"dW" = ( +"dM" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) -"eR" = ( +"dW" = ( +/obj/structure/cable, /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/plating, +/turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) "eW" = ( /obj/structure/table, @@ -241,13 +233,9 @@ /turf/open/floor/circuit/red, /area/ruin/space/has_grav/listeningstation) "lO" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/marker_beacon/cerulean, +/obj/structure/sign/nanotrasen/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/airless, /area/ruin/space) "nG" = ( @@ -322,12 +310,6 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/listeningstation) -"tf" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/small, -/area/ruin/space/has_grav/listeningstation) "tl" = ( /obj/structure/marker_beacon/cerulean, /turf/open/floor/plating/airless, @@ -350,17 +332,16 @@ /area/ruin/space/has_grav/listeningstation) "vt" = ( /obj/structure/lattice/catwalk, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/structure/marker_beacon/cerulean, +/obj/structure/sign/nanotrasen/directional/west, /turf/template_noop, /area/ruin/space) "vC" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/spawner/random/trash/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) "vI" = ( @@ -372,7 +353,6 @@ req_access = list("syndicate") }, /obj/item/paper/fluff/ruins/listeningstation/reports/september, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) @@ -421,6 +401,7 @@ "ym" = ( /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/ruin/space/has_grav/listeningstation) "yx" = ( @@ -453,7 +434,6 @@ /area/ruin/space/has_grav/listeningstation) "zo" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) @@ -471,10 +451,8 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "zV" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/structure/cable, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/plating/airless, /area/ruin/space) "zZ" = ( @@ -609,13 +587,9 @@ /turf/open/floor/iron/showroomfloor, /area/ruin/space/has_grav/listeningstation) "FU" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/marker_beacon/cerulean, +/obj/structure/sign/nanotrasen/directional/south, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/airless, /area/ruin/space) "FV" = ( @@ -684,7 +658,7 @@ width = 9 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "KG" = ( /obj/structure/curtain, /obj/effect/decal/cleanable/dirt, @@ -704,7 +678,6 @@ /obj/structure/chair/sofa/right/brown{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "LU" = ( @@ -751,7 +724,6 @@ "Ni" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/south, /obj/structure/closet/secure_closet/freezer/empty/open, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) "NO" = ( @@ -786,7 +758,6 @@ "Or" = ( /obj/structure/closet/crate/bin, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) @@ -819,6 +790,7 @@ dir = 4 }, /obj/machinery/light/warm/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/grimy, /area/ruin/space/has_grav/listeningstation) "Sx" = ( @@ -863,6 +835,8 @@ /obj/structure/chair/sofa/left/brown{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "Uh" = ( @@ -916,6 +890,9 @@ }, /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) +"We" = ( +/turf/open/floor/plating, +/area/ruin/space/has_grav/listeningstation) "WD" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -930,10 +907,8 @@ /area/ruin/space/has_grav/listeningstation) "WG" = ( /obj/structure/lattice/catwalk, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/structure/marker_beacon/cerulean, +/obj/structure/sign/nanotrasen/directional/south, /turf/template_noop, /area/ruin/space) "WW" = ( @@ -945,7 +920,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) "Yf" = ( @@ -1320,9 +1294,9 @@ MS It ad by -cj -db -Sz +wm +ym +wk JB vI vI @@ -1342,9 +1316,9 @@ JB JB JB eW -eR -eR -cj +FV +FV +wm dv TO LR @@ -1367,12 +1341,12 @@ Dv WD rG Or -SB +We FV ca BX dW -Sz +We JB vI vI @@ -1392,9 +1366,9 @@ LU Mt nX Sx -vC +dM ym -tf +dW ym ym Ni diff --git a/_maps/RandomRuins/SpaceRuins/meatderelict.dmm b/_maps/RandomRuins/SpaceRuins/meatderelict.dmm index 2933e4723eb1..48ea0933387c 100644 --- a/_maps/RandomRuins/SpaceRuins/meatderelict.dmm +++ b/_maps/RandomRuins/SpaceRuins/meatderelict.dmm @@ -87,6 +87,13 @@ /obj/structure/microscope, /turf/open/indestructible/white, /area/ruin/space/has_grav/powered/biooutpost) +"bV" = ( +/obj/structure/broken_flooring/corner/always_floorplane{ + dir = 4 + }, +/obj/structure/sign/warning/directional/west, +/turf/open/indestructible/meat, +/area/ruin/space/has_grav/powered/biooutpost) "ch" = ( /turf/open/indestructible/white{ icon_state = "showroomfloor" @@ -333,9 +340,11 @@ /turf/open/indestructible/meat, /area/ruin/space/has_grav/powered/biooutpost) "hR" = ( -/obj/structure/sign/warning, -/turf/closed/indestructible/reinforced, -/area/ruin/space/has_grav/powered/biooutpost/vault) +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/directional/east, +/turf/open/indestructible/white, +/area/ruin/space/has_grav/powered/biooutpost) "hW" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/decal/cleanable/blood/splatter, @@ -1314,6 +1323,7 @@ dir = 5 }, /obj/structure/sign/warning/chem_diamond/directional/west, +/obj/structure/sign/warning/directional/south, /turf/open/indestructible/dark, /area/ruin/space/has_grav/powered/biooutpost) "za" = ( @@ -1388,8 +1398,12 @@ /turf/open/indestructible/dark, /area/ruin/space/has_grav/powered/biooutpost) "AT" = ( -/obj/structure/sign/warning, -/turf/closed/indestructible/riveted/plastinum/nodiagonal, +/obj/structure/puzzle_blockade{ + id = "md_armory" + }, +/obj/effect/turf_decal/stripes/full, +/obj/structure/sign/warning/directional/north, +/turf/open/indestructible/white, /area/ruin/space/has_grav/powered/biooutpost) "AV" = ( /obj/effect/turf_decal/stripes/full, @@ -1704,6 +1718,12 @@ /obj/machinery/light/small/broken/directional/south, /turf/open/indestructible/dark, /area/ruin/space/has_grav/powered/biooutpost) +"Gq" = ( +/obj/structure/sign/directions/security/directional/south{ + pixel_y = 0 + }, +/turf/closed/indestructible/riveted/plastinum/nodiagonal, +/area/ruin/space/has_grav/powered/biooutpost/vault) "GA" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -2528,9 +2548,6 @@ /turf/open/indestructible/plating, /area/ruin/space/has_grav/powered/biooutpost) "XO" = ( -/obj/structure/sign/directions/security/directional/south{ - pixel_x = 32 - }, /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/structure/sign/poster/official/random/directional/east, /obj/effect/decal/cleanable/dirt, @@ -2984,7 +3001,7 @@ Jh AP DJ yU -AT +Jh vF ih hf @@ -3262,7 +3279,7 @@ Jh wX wM DJ -cp +hR XO Ju op @@ -3304,9 +3321,9 @@ UX UX EC xr -hR -UX +EC UX +Gq UX op Gd @@ -3560,8 +3577,8 @@ EN EN eP EC -hR -IK +EC +AT IK IK PQ @@ -3721,7 +3738,7 @@ Rb Sj EC Yc -hR +EC EC xr EC @@ -3763,7 +3780,7 @@ UD qV ij Nz -sJ +bV OM Vu NE diff --git a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm index 2591d4991e57..7ea38800f8e6 100644 --- a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm +++ b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm @@ -33,12 +33,12 @@ "hR" = ( /obj/item/shard/titanium, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "if" = ( /obj/structure/lattice, /obj/structure/mecha_wreckage/gygax, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "is" = ( /turf/template_noop, /area/template_noop) @@ -98,12 +98,12 @@ pixel_x = 12 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lc" = ( /obj/structure/lattice, /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lB" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood, @@ -172,7 +172,7 @@ "wJ" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "xJ" = ( /obj/structure/chair/office{ dir = 1 @@ -268,7 +268,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Lk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large/airless, @@ -298,7 +298,7 @@ "PG" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ dir = 8 @@ -322,7 +322,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Vl" = ( /obj/machinery/power/shuttle_engine/heater, /turf/open/floor/plating/airless, diff --git a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm index be9dfaaa1a7f..bac43576d133 100644 --- a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm @@ -5,7 +5,7 @@ "ab" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ac" = ( /turf/open/floor/plating/airless, /area/ruin/space/tcommsat_oldaisat) @@ -13,16 +13,16 @@ /obj/structure/lattice, /obj/structure/grille/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/structure/lattice, /obj/structure/grille, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "af" = ( /obj/structure/grille, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "ag" = ( /turf/closed/wall/r_wall, /area/ruin/space/tcommsat_oldaisat) @@ -33,7 +33,7 @@ "ai" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aj" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/plating/airless, @@ -78,7 +78,7 @@ /obj/structure/lattice, /obj/structure/window/reinforced/spawner/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "au" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -96,7 +96,7 @@ /obj/structure/lattice, /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ay" = ( /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/iron/airless, @@ -160,7 +160,7 @@ "aL" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aM" = ( /obj/item/folder/yellow, /turf/open/floor/iron/airless, @@ -177,14 +177,14 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aP" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aQ" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -194,22 +194,19 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aS" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aT" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/template_noop, -/area/template_noop) -"aU" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/ruin/space/tcommsat_oldaisat) +/area/space/nearstation) "aV" = ( /obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron/airless, /area/ruin/space/tcommsat_oldaisat) "aW" = ( @@ -326,16 +323,16 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "br" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bs" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bt" = ( /obj/structure/table, /obj/item/gps/spaceruin, @@ -361,7 +358,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bz" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/item/shard{ @@ -400,7 +397,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bG" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/west, @@ -562,12 +559,12 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ck" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cl" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -596,7 +593,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cq" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/west, @@ -649,7 +646,7 @@ icon_state = "medium" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cz" = ( /obj/structure/lattice, /obj/item/stack/rods, @@ -657,7 +654,7 @@ icon_state = "medium" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cB" = ( /obj/effect/spawner/structure/window/hollow/reinforced, /turf/open/floor/plating, @@ -665,7 +662,7 @@ "cC" = ( /obj/structure/grille/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cD" = ( /obj/machinery/door/airlock/hatch, /turf/open/floor/iron, @@ -2354,7 +2351,7 @@ ag ag ag ag -aU +ag bf ag ag diff --git a/_maps/RandomRuins/SpaceRuins/old_infiltrator.dmm b/_maps/RandomRuins/SpaceRuins/old_infiltrator.dmm index 3fef3d7f7fe7..082f1341908d 100644 --- a/_maps/RandomRuins/SpaceRuins/old_infiltrator.dmm +++ b/_maps/RandomRuins/SpaceRuins/old_infiltrator.dmm @@ -206,7 +206,7 @@ "nv" = ( /obj/item/stack/sheet/mineral/plastitanium, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "nF" = ( /obj/item/radio/intercom/directional/south, /obj/effect/decal/cleanable/blood/old, @@ -268,7 +268,6 @@ "sL" = ( /obj/structure/table, /obj/effect/spawner/random/engineering/tool, -/obj/machinery/light/directional/north, /obj/item/stack/cable_coil, /turf/open/floor/mineral/plastitanium/red/airless, /area/ruin/space/unpowered) @@ -439,6 +438,7 @@ pixel_x = 8 }, /obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium/red/airless, /area/ruin/space/unpowered) "Da" = ( @@ -521,7 +521,7 @@ "Jd" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "JH" = ( /obj/structure/frame/machine, /turf/open/floor/circuit/red/airless, @@ -544,7 +544,7 @@ "KM" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Lz" = ( /obj/structure/table, /obj/item/tank/internals/emergency_oxygen/engi, @@ -562,11 +562,9 @@ /turf/open/floor/iron/dark/airless, /area/ruin/space/unpowered) "Mw" = ( -/obj/machinery/status_display/ai{ - pixel_x = 32 - }, /obj/machinery/light/directional/east, /obj/effect/decal/cleanable/blood/old, +/obj/machinery/status_display/ai/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/unpowered) "MB" = ( @@ -646,7 +644,7 @@ "Tc" = ( /obj/item/stack/rods/two, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Tx" = ( /obj/machinery/door/window/brigdoor/right/directional/west{ req_access = list("syndicate"); @@ -732,7 +730,7 @@ "YT" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Zh" = ( /obj/structure/table, /obj/item/storage/medkit/ancient{ diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm index f6091bb08a65..93141bbfef43 100644 --- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm @@ -288,7 +288,9 @@ /turf/open/floor/iron, /area/ruin/space/ancientstation/charlie/bridge) "bA" = ( -/obj/structure/ai_core/deactivated, +/obj/structure/ai_core{ + state = 5 + }, /turf/open/floor/iron/dark, /area/ruin/space/ancientstation/delta/ai) "bC" = ( @@ -710,7 +712,7 @@ "dq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank/high{ - desc = "A highly-pressurized water tank, this one seems almost empty.."; + desc = "A highly-pressurized water tank. This one seems almost empty.."; tank_volume = 1000 }, /obj/effect/decal/cleanable/dirt, @@ -1006,7 +1008,7 @@ /turf/open/floor/iron/diagonal, /area/ruin/space/ancientstation/beta/gravity) "eF" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/ruin/space/ancientstation/delta/rnd) @@ -2291,8 +2293,8 @@ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mob_spawn/ghost_role/human/oldsec, /obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/ghost_role/human/oldstation/sec, /turf/open/floor/iron, /area/ruin/space/ancientstation/charlie/dorms) "ks" = ( @@ -2395,18 +2397,6 @@ /obj/item/clothing/neck/link_scryer/loaded/charlie, /turf/open/floor/iron, /area/ruin/space/ancientstation/charlie/dorms) -"kO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mob_spawn/ghost_role/human/oldsci, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/space/ancientstation/charlie/dorms) "kP" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -2545,7 +2535,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/mob_spawn/ghost_role/human/oldeng, +/obj/effect/mob_spawn/ghost_role/human/oldstation/sci, /turf/open/floor/iron, /area/ruin/space/ancientstation/charlie/dorms) "lq" = ( @@ -2563,7 +2553,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/mob_spawn/ghost_role/human/oldsci, +/obj/effect/mob_spawn/ghost_role/human/oldstation/eng, /turf/open/floor/iron, /area/ruin/space/ancientstation/charlie/dorms) "lw" = ( @@ -2612,13 +2602,6 @@ /area/ruin/space/ancientstation/charlie/hydro) "lI" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/west{ - id = "Beta Secure Storage"; - name = "Engineering Secure Storage"; - req_access = list("engine_equip"); - pixel_x = 25; - pixel_y = 23 - }, /obj/item/shard/plasma, /turf/open/floor/engine/airless, /area/ruin/space/ancientstation/beta/supermatter) @@ -2695,10 +2678,6 @@ "mc" = ( /turf/closed/mineral/plasma, /area/ruin/space/ancientstation/charlie/dorms) -"md" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/ruin/space/ancientstation/delta/biolab) "me" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -3018,7 +2997,7 @@ "nr" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ns" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, @@ -3373,6 +3352,7 @@ dir = 4 }, /obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /turf/open/floor/iron, /area/ruin/space/ancientstation/beta/atmos) "pB" = ( @@ -4137,7 +4117,6 @@ /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 }, @@ -4551,6 +4530,7 @@ /obj/machinery/door/window/right/directional/east{ req_access = list("away_general") }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/engine, /area/ruin/space/ancientstation/delta/biolab) "xT" = ( @@ -5563,7 +5543,6 @@ /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 }, @@ -7066,7 +7045,7 @@ /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 }, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/iron/white/textured_edge{ dir = 4 }, @@ -7833,6 +7812,9 @@ /obj/item/geiger_counter, /obj/item/geiger_counter, /obj/machinery/light/small/broken/directional/north, +/obj/machinery/button/door/directional/north{ + id = "Beta Secure Storage" + }, /turf/open/floor/engine/airless, /area/ruin/space/ancientstation/beta/supermatter) "TA" = ( @@ -8219,6 +8201,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /turf/open/floor/iron, /area/ruin/space/ancientstation/beta/atmos) "WR" = ( @@ -12496,9 +12479,9 @@ jJ cq Qg bN -ln +lr bN -kO +ln bN lr uX @@ -15389,7 +15372,7 @@ uo GX NG Lo -md +rp xM Go Yl diff --git a/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm b/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm index cb2dbf4aca06..a9f3a5da151c 100644 --- a/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /turf/open/floor/plating/airless, /area/ruin/space/oldteleporter) diff --git a/_maps/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/RandomRuins/SpaceRuins/onehalf.dmm index 0048ccb3976e..8b1ef6e7cedf 100644 --- a/_maps/RandomRuins/SpaceRuins/onehalf.dmm +++ b/_maps/RandomRuins/SpaceRuins/onehalf.dmm @@ -6,16 +6,16 @@ /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ad" = ( /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/item/stack/cable_coil/cut, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ag" = ( /turf/closed/wall, /area/ruin/space/has_grav/onehalf/dorms_med) @@ -106,7 +106,7 @@ "aw" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ax" = ( /obj/structure/lattice, /turf/template_noop, @@ -227,7 +227,7 @@ /obj/structure/lattice, /obj/item/storage/toolbox/syndicate, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aT" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -570,7 +570,7 @@ "bV" = ( /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bW" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, @@ -651,7 +651,7 @@ icon_state = "small" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ck" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/disposalpipe/segment{ @@ -705,14 +705,14 @@ "cr" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cs" = ( /obj/item/stack/sheet/plasteel{ amount = 10 }, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ct" = ( /obj/structure/lattice, /obj/item/shard{ @@ -747,7 +747,7 @@ "cA" = ( /obj/item/stack/tile/wood, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cB" = ( /turf/template_noop, /area/ruin/space/has_grav/onehalf/hallway) @@ -813,7 +813,7 @@ "cN" = ( /obj/item/stack/sheet/plasteel, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -828,19 +828,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/ruin/space/has_grav/onehalf/bridge) -"cT" = ( +"cU" = ( +/obj/structure/table/reinforced, /obj/machinery/button/door{ id = "bridge_onehalf"; name = "Bridge Blast Door"; - pixel_x = 32; pixel_y = 5 }, /turf/open/floor/iron, /area/ruin/space/has_grav/onehalf/bridge) -"cU" = ( -/obj/structure/table/reinforced, -/turf/open/floor/iron, -/area/ruin/space/has_grav/onehalf/bridge) "cY" = ( /obj/structure/table/reinforced, /obj/item/gps/spaceruin, @@ -879,23 +875,23 @@ /obj/item/stack/sheet/plasteel, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "di" = ( /obj/item/shard{ icon_state = "medium" }, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dj" = ( /obj/item/stack/rods, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dl" = ( /obj/item/stack/cable_coil/cut, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ms" = ( /obj/item/stack/tile/iron/base, /obj/structure/cable, @@ -1411,7 +1407,7 @@ Vh Vh cJ cn -cT +cn cn cq ad diff --git a/_maps/RandomRuins/SpaceRuins/originalcontent.dmm b/_maps/RandomRuins/SpaceRuins/originalcontent.dmm index d2cf049c0a57..9a6e450321e8 100644 --- a/_maps/RandomRuins/SpaceRuins/originalcontent.dmm +++ b/_maps/RandomRuins/SpaceRuins/originalcontent.dmm @@ -5,23 +5,23 @@ "ab" = ( /obj/structure/fluff/paper/corner, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ac" = ( /obj/structure/fluff/paper, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ad" = ( /obj/structure/fluff/paper/corner{ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/structure/fluff/paper{ dir = 4 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "af" = ( /turf/closed/indestructible/paper, /area/ruin/space/has_grav/powered) @@ -30,20 +30,20 @@ dir = 10 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ah" = ( /obj/structure/fluff/paper/corner, /obj/structure/fluff/paper/corner{ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ai" = ( /obj/structure/fluff/paper{ dir = 6 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aj" = ( /obj/machinery/door/airlock/freezer{ name = "Airlock"; @@ -137,7 +137,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ax" = ( /obj/structure/fluff/paper/corner{ dir = 1 @@ -375,19 +375,19 @@ dir = 9 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bd" = ( /obj/structure/fluff/paper{ dir = 1 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "be" = ( /obj/structure/fluff/paper/corner{ dir = 4 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bf" = ( /obj/structure/fluff/paper{ dir = 4 @@ -454,7 +454,7 @@ dir = 10 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bo" = ( /obj/structure/fluff/paper/corner{ dir = 4 @@ -463,7 +463,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bp" = ( /obj/structure/fluff/paper{ dir = 8 @@ -518,13 +518,13 @@ dir = 1 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bx" = ( /obj/structure/fluff/paper{ dir = 5 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "by" = ( /obj/structure/fluff/paper/corner, /turf/open/indestructible/paper, diff --git a/_maps/RandomRuins/SpaceRuins/prison_shuttle.dmm b/_maps/RandomRuins/SpaceRuins/prison_shuttle.dmm index e44e1a8adcc8..4175d832b83c 100644 --- a/_maps/RandomRuins/SpaceRuins/prison_shuttle.dmm +++ b/_maps/RandomRuins/SpaceRuins/prison_shuttle.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/girder/reinforced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /obj/structure/girder/reinforced, /turf/open/misc/asteroid/airless, diff --git a/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm b/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm index 98831dd9d2be..86727c3b383a 100644 --- a/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm +++ b/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm @@ -113,6 +113,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/ruin/space/ks13/hallway/central) +"aQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/ruin/space/ks13/hallway/aft) "aU" = ( /obj/item/shard, /obj/structure/lattice, @@ -1675,7 +1679,7 @@ "rd" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "re" = ( /obj/structure/girder, /turf/open/floor/plating/airless, @@ -1704,10 +1708,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/ruin/space/ks13/engineering/atmos) -"rk" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space/nearstation) "rl" = ( /turf/closed/wall/r_wall, /area/ruin/space/ks13/command/bridge) @@ -6388,9 +6388,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/ruin/space/ks13/medical/morgue) -"PG" = ( -/turf/closed/wall/r_wall, -/area/template_noop) "PH" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/power/apc/auto_name/directional/north, @@ -6992,7 +6989,7 @@ /obj/structure/frame/computer{ dir = 1 }, -/obj/item/circuitboard/computer/rdconsole, +/obj/item/circuitboard/computer/rdconsole/unlocked, /obj/structure/cable, /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating/airless, @@ -8135,9 +8132,9 @@ /turf/open/floor/circuit/red/off, /area/ruin/space/ks13/ai/corridor) "YE" = ( -/obj/structure/plaque/static_plaque/golden/commission/ks13, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/plaque/static_plaque/golden/commission/ks13, /turf/open/floor/iron/airless, /area/ruin/space/ks13/hallway/central) "YF" = ( @@ -8510,17 +8507,17 @@ aa aa aa aa -rk +rd aa aa aa -rk +rd nW -rk +rd aa aa -rk -rk +rd +rd aa aa aa @@ -8620,10 +8617,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd aa IQ IQ @@ -8633,9 +8630,9 @@ yW IQ IQ IF -rk -rk -rk +rd +rd +rd aa aa aa @@ -8748,8 +8745,8 @@ PA uf Kb Kb -rk -rk +rd +rd aa aa aa @@ -8957,7 +8954,7 @@ aa aa aa aa -rk +rd MB QU zF @@ -8973,7 +8970,7 @@ LE Qu uf Qe -rk +rd nd aa aa @@ -9070,7 +9067,7 @@ aa aa aa aa -rk +rd MB wt Eu @@ -9085,9 +9082,9 @@ Eq vl Lj uf -rk +rd qG -rk +rd aa qG aa @@ -9201,7 +9198,7 @@ uf No Bp Bp -rk +rd uF aa aa @@ -9313,8 +9310,8 @@ NO uf eG oD -rk -rk +rd +rd uF aa aa @@ -9428,7 +9425,7 @@ Nc uF uF uF -rk +rd aa aa aa @@ -9521,7 +9518,7 @@ aa aa aa aa -rk +rd aa aI EL @@ -9537,7 +9534,7 @@ GY CU Xj uf -rk +rd gn ZD aa @@ -9634,7 +9631,7 @@ aa aa aa aa -rk +rd aa MB Ky @@ -9650,8 +9647,8 @@ rw rw Tb uf -rk -rk +rd +rd UP aa aa @@ -9746,9 +9743,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd MB MB MB @@ -9763,9 +9760,9 @@ ZR yq rm uf -rk +rd qG -rk +rd aa aa aa @@ -9862,7 +9859,7 @@ aa aa aa aa -rk +rd aa MB BO @@ -9975,7 +9972,7 @@ aa aa aa aa -rk +rd aa MB MB @@ -9997,10 +9994,10 @@ Jr aa aa aa -rk +rd aa aa -rk +rd aa aa aa @@ -10088,10 +10085,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd yq DH sX @@ -10110,13 +10107,13 @@ Is aa aa aa -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd aa aa aa @@ -10202,9 +10199,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd yq SW SK @@ -10220,23 +10217,23 @@ Is ow MN Is -rk -rk +rd +rd aa -rk +rd uF uF IF uF -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd IF -rk -rk +rd +rd aa aa aa @@ -10316,8 +10313,8 @@ aa aa aa aa -rk -rk +rd +rd yq PF TT @@ -10334,21 +10331,21 @@ MN Is MN MN -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd IF -rk +rd IF IF -rk +rd uF uF IF -rk +rd aa aa aa @@ -10430,7 +10427,7 @@ aa aa aa aa -rk +rd yq yq yq @@ -10461,7 +10458,7 @@ Ii Ii uF aa -rk +rd aa aa aa @@ -10573,12 +10570,12 @@ cI qJ qv aa -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd aa aa aa @@ -10673,7 +10670,7 @@ vb Jr Ut Ww -MW +Jr Wt Sp pK @@ -10685,12 +10682,12 @@ qv OX kG Me -rk -rk +rd +rd aa aa aa -rk +rd aa aa aa @@ -10761,9 +10758,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -10779,7 +10776,7 @@ qO wC WE OR -MW +Jr JJ Hi vb @@ -10798,12 +10795,12 @@ VE vZ QZ Me -rk +rd aa aa aa aa -rk +rd aa aa aa @@ -10874,10 +10871,10 @@ aa aa aa aa -rk +rd aa -rk -rk +rd +rd aa aa aa @@ -10911,14 +10908,14 @@ Ag VE rR Iy -rk -rk +rd +rd aa -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd aa aa aa @@ -10980,18 +10977,18 @@ aa aa aa aa -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd QG QG QG -rk -rk +rd +rd aa aa aa @@ -11025,13 +11022,13 @@ VE rR Iy aa -rk -rk -rk +rd +rd +rd aa aa aa -rk +rd aa aa aa @@ -11092,12 +11089,12 @@ aa aa aa aa -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd QG QG QG @@ -11105,7 +11102,7 @@ QG QG QG QG -rk +rd aa aa aa @@ -11137,14 +11134,14 @@ qv vZ zr Iy -rk -rk +rd +rd aa -rk -rk +rd +rd aa -rk -rk +rd +rd aa aa aa @@ -11204,13 +11201,13 @@ aa aa aa aa -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd QG QG Xt @@ -11218,8 +11215,8 @@ Xb DT QG QG -rk -rk +rd +rd aa aa II @@ -11250,13 +11247,13 @@ qv Zj qv Me -rk -rk -rk +rd +rd +rd ZK -rk -rk -rk +rd +rd +rd aa aa aa @@ -11314,15 +11311,15 @@ aa aa aa aa -rk -rk -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd +rd +rd sU QG PH @@ -11332,7 +11329,7 @@ Rq sL QG sU -rk +rd aa aU Ho @@ -11369,9 +11366,9 @@ bm ZK ke Ez -rk -rk -rk +rd +rd +rd aa aa aa @@ -11426,16 +11423,16 @@ aa aa aa aa -rk +rd nQ -rk +rd Kb sU sU -rk -rk -rk -rk +rd +rd +rd +rd sU Dy Us @@ -11482,9 +11479,9 @@ bm XO TK Fv -rk +rd IF -rk +rd aa aa aa @@ -11513,13 +11510,13 @@ aa aa aa aa -rk +rd aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -11537,10 +11534,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd Kb sU sU @@ -11597,8 +11594,8 @@ TK Ez jV NW -rk -rk +rd +rd aa aa aa @@ -11625,16 +11622,16 @@ aa aa aa aa -rk +rd aa -rk -rk -rk +rd +rd +rd aa aa aa -rk -rk +rd +rd aa aa aa @@ -11649,10 +11646,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd Kb sU gd @@ -11738,7 +11735,7 @@ aa aa aa aa -rk +rd Yc Yc Yc @@ -11747,7 +11744,7 @@ Yc Yc Yc aa -rk +rd aa aa aa @@ -11763,9 +11760,9 @@ aa aa aa aa -rk +rd Kb -rk +rd Kb sU aj @@ -11818,7 +11815,7 @@ Fa iT TW BM -jV +aQ Uo gG jV @@ -11852,7 +11849,7 @@ aa aa aa aa -rk +rd Yc Pw fU @@ -11860,15 +11857,15 @@ zA fU Yc aa -rk -rk -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd +rd +rd nQ aa aa @@ -11964,7 +11961,7 @@ aa aa aa aa -rk +rd Yc Yc eA @@ -11990,7 +11987,7 @@ aa aa aa aa -rk +rd Kb Wk MG @@ -12078,9 +12075,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd Yc AW KO @@ -12103,7 +12100,7 @@ aa aa aa aa -rk +rd Kb sU UZ @@ -12193,7 +12190,7 @@ aa aa aa aa -rk +rd Yc Yc lk @@ -12206,7 +12203,7 @@ Jw Jw Jw Jw -rk +rd aa aa OY @@ -12307,7 +12304,7 @@ aa aa aa aa -rk +rd Yc fU fU @@ -12319,8 +12316,8 @@ fU fU YC Yc -rk -rk +rd +rd aa uu Pm @@ -12433,7 +12430,7 @@ st Yc Yc aa -rk +rd aa uu NJ @@ -12998,7 +12995,7 @@ qC Yc Yc Yc -rk +rd aa aa aa @@ -13007,7 +13004,7 @@ aa aa aa rd -rk +rd Kb sU fg @@ -13232,7 +13229,7 @@ aa aa aa aa -PG +Kb IF Kb Wk @@ -13347,7 +13344,7 @@ aa aa rd Kb -rk +rd BK Wk HO @@ -13459,8 +13456,8 @@ aa aa aa rd -rk -rk +rd +rd Kb sU HO @@ -13500,18 +13497,18 @@ xW BU Dn cB -rk -rk -rk +rd +rd +rd xW aa -rk +rd Sq aa -rk -rk +rd +rd aa -rk +rd aa ZK Pu @@ -13550,7 +13547,7 @@ aa aa aa aa -rk +rd Yc Yc Yc @@ -13573,8 +13570,8 @@ aa aa aa rd -rk -rk +rd +rd Kb sU sU @@ -13614,17 +13611,17 @@ vP AE Rx sK -rk -rk +rd +rd xW -rk -rk -rk +rd +rd +rd aa aa -rk +rd aa -rk +rd aa ZK Pu @@ -13646,8 +13643,8 @@ aa aa aa aa -rk -rk +rd +rd aa aa "} @@ -13663,7 +13660,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -13686,9 +13683,9 @@ aa aa aa rd -rk -rk -rk +rd +rd +rd Kb sU sU @@ -13725,21 +13722,21 @@ AQ xE AO BT -rk +rd sq xV -rk +rd xW aa -rk -rk -rk -rk -rk -rk -rk -aa -ZK +rd +rd +rd +rd +rd +rd +rd +aa +ZK HI Ze jV @@ -13759,10 +13756,10 @@ aa aa aa aa -rk +rd aa -rk -rk +rd +rd "} (48,1,1) = {" aa @@ -13776,7 +13773,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -13807,8 +13804,8 @@ aa aa aa aa -rk -rk +rd +rd sU rr up @@ -13839,14 +13836,14 @@ Ar Ai ML Cf -rk +rd XA -rk +rd Lq Uu Ar Ar -rk +rd ia LB LB @@ -13871,7 +13868,7 @@ NW NW NW NW -rk +rd NW NW NW @@ -13921,8 +13918,8 @@ aa aa aa aa -rk -rk +rd +rd rr rr ab @@ -13958,12 +13955,12 @@ hY XA AM xs -rk -rk +rd +rd uQ Xv aa -rk +rd Xv Lq Pe @@ -13974,9 +13971,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd BK aa aa @@ -13985,7 +13982,7 @@ aa aa aa aa -rk +rd aa aa NW @@ -14002,7 +13999,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14035,7 +14032,7 @@ aa aa aa aa -rk +rd rr rr rr @@ -14071,12 +14068,12 @@ vz Bf rg sY -rk +rd DF -rk +rd XA XA -rk +rd XA Lq xk @@ -14085,7 +14082,7 @@ ZK Kb Kb BK -rk +rd aa BZ aa @@ -14115,7 +14112,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14148,9 +14145,9 @@ aa aa aa aa -rk +rd aa -rk +rd rr rr rr @@ -14184,10 +14181,10 @@ gm Lq Lq jk -rk +rd hY -rk -rk +rd +rd DO DO DO @@ -14197,12 +14194,12 @@ vN jV NW aa -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd aa aa aa @@ -14228,7 +14225,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14253,17 +14250,17 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa aa aa aa -rk +rd aa -rk +rd wv AX KB @@ -14295,13 +14292,13 @@ RP Ib JF Lq -rk +rd ZJ Sv pB sH MA -rk +rd DF zY Lq @@ -14310,12 +14307,12 @@ vN jV NW aa -rk +rd aa -rk +rd aa -rk -rk +rd +rd mR aa aa @@ -14372,11 +14369,11 @@ aa aa aa aa -rk +rd aa -rk -rk -rk +rd +rd +rd Mj MT QR @@ -14403,10 +14400,10 @@ Ay Qr Qr Rv -rk -rk -rk -rk +rd +rd +rd +rd Lq Cf mS @@ -14424,7 +14421,7 @@ jV NW aa mR -rk +rd hK mR yt @@ -14454,7 +14451,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14478,16 +14475,16 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa aa aa GI -rk -rk +rd +rd aa aa Mj @@ -14509,7 +14506,7 @@ zX Uj Uj CP -rk +rd aw OK vi @@ -14517,8 +14514,8 @@ OK Lq xN Yf -rk -rk +rd +rd uG Lq Wy @@ -14594,14 +14591,14 @@ GI aa Nk GI -rk -rk +rd +rd aa aa -rk +rd aa -rk -rk +rd +rd aa Mj pT @@ -14623,15 +14620,15 @@ Mt Xy Su OK -rk -rk +rd +rd OK vi Lq xN om vI -rk +rd uG Qr zY @@ -14666,7 +14663,7 @@ aa vE aa aa -rk +rd "} (56,1,1) = {" aa @@ -14680,7 +14677,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14705,13 +14702,13 @@ aa aa GI gQ -rk +rd aa aa -rk +rd aa aa -rk +rd aa aa aa @@ -14737,7 +14734,7 @@ Xm CP il Uj -rk +rd Ir Ir Lq @@ -14824,7 +14821,7 @@ aa aa aa aa -rk +rd aa aa aa @@ -14848,7 +14845,7 @@ NT Cy YZ Th -rk +rd Tt Ir Ir @@ -14906,7 +14903,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14936,8 +14933,8 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -14954,10 +14951,10 @@ tT yl yl TC -rk -rk -rk -rk +rd +rd +rd +rd NT vQ ZL @@ -14968,9 +14965,9 @@ vi aa oU IF -rk -rk -rk +rd +rd +rd ZK VO CV @@ -15005,7 +15002,7 @@ uz vE uz aa -rk +rd "} (59,1,1) = {" aa @@ -15019,7 +15016,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -15048,9 +15045,9 @@ De aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -15067,10 +15064,10 @@ tT DM yl wv -rk -rk -rk -rk +rd +rd +rd +rd Cy tb Qi @@ -15080,10 +15077,10 @@ il vi aa aa -rk +rd Gf aa -rk +rd ZK ZK ZK @@ -15115,24 +15112,24 @@ aa aa aa aa -rk +rd aa aa -rk +rd "} (60,1,1) = {" aa aa aa -rk -rk +rd +rd aa aa -rk -rk +rd +rd aa aa -rk +rd Kb Yc yz @@ -15180,21 +15177,21 @@ wv pT xd TC -rk -rk -rk -rk +rd +rd +rd +rd IF tb TB tb IF IF -rk +rd aa aa aa -rk +rd aa aa Gf @@ -15225,24 +15222,24 @@ NW NW NW NW -rk +rd NW NW -rk -rk +rd +rd NW -rk +rd "} (61,1,1) = {" aa aa aa -rk +rd NW NW NW NW -rk +rd aa aa aa @@ -15293,21 +15290,21 @@ XV iF cf wv -rk -rk +rd +rd aa aa -rk +rd GA tK rM GA -rk +rd aa aa AC -rk -rk +rd +rd aa aa Gf @@ -15334,31 +15331,31 @@ sz AK AK AK -rk +rd aa aa aa aa aa aa -rk -rk -rk +rd +rd +rd aa "} (62,1,1) = {" -rk -rk +rd +rd aa aa -rk +rd aa aa NW aa aa aa -rk +rd IF Yc yz @@ -15410,7 +15407,7 @@ aa aa aa aa -rk +rd GA kt rM @@ -15419,11 +15416,11 @@ aa aa aa aa -rk +rd GI aa -rk -rk +rd +rd aa aa aa @@ -15447,7 +15444,7 @@ mR mR mR mR -rk +rd aa aa aa @@ -15460,18 +15457,18 @@ aa aa "} (63,1,1) = {" -rk +rd aa nD ri bP -rk -rk +rd +rd NW aa aa aa -rk +rd IF Yc yz @@ -15513,16 +15510,16 @@ yR xd wv wv -rk +rd XW cu th XW -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd IF tb IX @@ -15532,10 +15529,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd aa aa aa @@ -15560,7 +15557,7 @@ AK AK sz sz -rk +rd aa aa aa @@ -15584,7 +15581,7 @@ NW aa aa aa -rk +rd IF Yc yz @@ -15625,18 +15622,18 @@ xd UM AX wv -rk -rk +rd +rd Uv xT xY OO -rk +rd aa -rk +rd aa aa -rk +rd LV EV PO @@ -15646,8 +15643,8 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -15673,8 +15670,8 @@ mR mR mR mR -rk -rk +rd +rd aa aa aa @@ -15694,10 +15691,10 @@ bP aa aa NW -rk -rk -rk -rk +rd +rd +rd +rd IF Yc yz @@ -15746,7 +15743,7 @@ IN Uv aa aa -rk +rd aa aa IF @@ -15759,8 +15756,8 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -15779,15 +15776,15 @@ aa jV Ez yX -rk -rk +rd +rd aa -rk +rd aa -rk -rk +rd +rd aa -rk +rd aa aa aa @@ -15851,7 +15848,7 @@ VD VD wv wv -rk +rd aa OO QI @@ -15862,17 +15859,17 @@ aa GI aa aa -rk +rd aa GA PO GA -rk -rk -rk +rd +rd +rd aa aa -rk +rd aa aa aa @@ -15892,14 +15889,14 @@ aa jV ZT yX -rk +rd aa aa -rk +rd aa aa -rk -rk +rd +rd to aa aa @@ -15964,7 +15961,7 @@ iS Kb aa aa -rk +rd aa OO QI @@ -15975,7 +15972,7 @@ aa aa aa aa -rk +rd aa tb dS @@ -15984,9 +15981,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -16003,14 +16000,14 @@ aa aa aa jV -rk +rd yX -rk +rd aa -rk -rk +rd +rd aa -rk +rd aa aa aa @@ -16073,9 +16070,9 @@ Pc Db IL Aw -rk +rd Dr -rk +rd aa XW XW @@ -16088,7 +16085,7 @@ XW aa aa aa -rk +rd aa tb zs @@ -16096,8 +16093,8 @@ tb aa aa aa -rk -rk +rd +rd aa aa aa @@ -16115,15 +16112,15 @@ aa aa aa yM -rk -rk -rk -rk +rd +rd +rd +rd aa -rk +rd aa aa -rk +rd aa aa aa @@ -16184,7 +16181,7 @@ Jz JC Zv Rs -rk +rd vY pt Dr @@ -16202,16 +16199,16 @@ aa aa aa IF -rk +rd GA BP GA aa aa -rk +rd BZ -rk -rk +rd +rd aa aa aa @@ -16230,13 +16227,13 @@ aa aa Fu aa -rk +rd aa aa -rk +rd aa aa -rk +rd aa aa aa @@ -16299,7 +16296,7 @@ FQ sa Hu IL -rk +rd Wx aa Lx @@ -16314,7 +16311,7 @@ XW TI XW aa -rk +rd aa tb TB @@ -16324,10 +16321,10 @@ aa aa BZ aa -rk -rk -rk -rk +rd +rd +rd +rd AC aa aa @@ -16341,16 +16338,16 @@ aa aa aa aa -rk +rd aa -rk +rd aa aa -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd aa aa aa @@ -16412,7 +16409,7 @@ dx Bg Wm Ol -rk +rd An aa uF @@ -16427,16 +16424,16 @@ wD Xd XW aa -rk +rd aa tb za GA aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -16454,15 +16451,15 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa aa aa -rk +rd aa aa aa @@ -16477,7 +16474,7 @@ aa aa "} (72,1,1) = {" -rk +rd aa bP ri @@ -16547,8 +16544,8 @@ pd GA aa aa -rk -rk +rd +rd aa aa aa @@ -16567,15 +16564,15 @@ aa aa aa aa -rk +rd aa aa aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -16590,7 +16587,7 @@ aa aa "} (73,1,1) = {" -rk +rd aa bP ri @@ -16635,7 +16632,7 @@ Qd SE rl IF -rk +rd aa aa aa @@ -16654,7 +16651,7 @@ dO Sw IF IF -rk +rd GA TB GA @@ -16671,23 +16668,23 @@ aa aa aa aa -rk +rd aa aa aa -rk +rd aa aa aa -rk -rk +rd +rd aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -16784,23 +16781,23 @@ Dh aa aa aa -rk +rd aa aa aa -rk +rd aa aa -rk -rk +rd +rd aa -rk -rk -rk +rd +rd +rd aa aa aa -rk +rd aa aa aa @@ -16824,10 +16821,10 @@ bP aa aa NW -rk +rd NW NW -rk +rd NW NW NW @@ -16843,13 +16840,13 @@ dT IF IF IF -rk +rd aa aa aa aa aa -rk +rd Bw rl Ae @@ -16894,27 +16891,27 @@ or Be XM zm -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd aa to -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd to aa aa @@ -16940,7 +16937,7 @@ NW aa aa aa -rk +rd aa aa aa @@ -16949,21 +16946,21 @@ aa aa aa aa -rk +rd dT Ad dT aa aa -rk -rk +rd +rd aa aa aa aa aa aa -rk +rd rl GV GV @@ -16974,7 +16971,7 @@ GV GV rl Bw -rk +rd aa IF IF @@ -17010,13 +17007,13 @@ cb aa aa aa -rk +rd aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -17024,7 +17021,7 @@ aa aa aa aa -rk +rd aa aa aa @@ -17047,8 +17044,8 @@ aa bP ri bP -rk -rk +rd +rd NW aa aa @@ -17062,11 +17059,11 @@ aa aa aa aa -rk +rd aa aa -rk -rk +rd +rd aa aa aa @@ -17077,17 +17074,17 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa aa AC aa -rk +rd aa -rk +rd aa IF IF @@ -17123,13 +17120,13 @@ Gf aa aa aa -rk +rd aa aa aa -rk +rd aa -rk +rd aa aa aa @@ -17159,11 +17156,11 @@ NW aa aa aa -rk +rd aa aa -rk -rk +rd +rd aa aa aa @@ -17199,7 +17196,7 @@ aa aa aa aa -rk +rd aa aa Kb @@ -17242,7 +17239,7 @@ aa aa uq aa -rk +rd aa aa aa @@ -17272,11 +17269,11 @@ NW NW NW NW -rk +rd NW NW NW -rk +rd aa aa aa @@ -17355,7 +17352,7 @@ aa IF NW NW -rk +rd aa aa aa @@ -17381,14 +17378,14 @@ aa aa "} (80,1,1) = {" -rk +rd aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -17468,7 +17465,7 @@ NW NW NW aa -rk +rd aa aa aa @@ -17580,8 +17577,8 @@ IF aa IF aa -rk -rk +rd +rd aa aa aa @@ -17653,7 +17650,7 @@ aa aa aa aa -rk +rd IF IF IF @@ -17661,7 +17658,7 @@ IF IF IF IF -rk +rd aa aa aa @@ -17693,8 +17690,8 @@ Kb Kb Kb Kb -rk -rk +rd +rd aa aa aa @@ -17766,15 +17763,15 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -17807,7 +17804,7 @@ NW NW NW aa -rk +rd aa aa aa diff --git a/_maps/RandomRuins/SpaceRuins/space_ghost_restaurant.dmm b/_maps/RandomRuins/SpaceRuins/space_ghost_restaurant.dmm index ad0c72415948..fb9745de0ce2 100644 --- a/_maps/RandomRuins/SpaceRuins/space_ghost_restaurant.dmm +++ b/_maps/RandomRuins/SpaceRuins/space_ghost_restaurant.dmm @@ -29,7 +29,7 @@ "eb" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "en" = ( /obj/machinery/power/smes/magical{ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; @@ -60,11 +60,11 @@ "hp" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "iF" = ( /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "jd" = ( /obj/item/stack/sheet/iron, /turf/open/floor/plating/airless, @@ -148,7 +148,7 @@ "Bv" = ( /obj/structure/broken_flooring/singular/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "BA" = ( /obj/effect/decal/cleanable/blood/gibs/robot_debris, /obj/effect/decal/cleanable/glass, @@ -236,7 +236,7 @@ "Ng" = ( /obj/item/stack/tile/iron/showroomfloor, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ns" = ( /obj/item/chair, /obj/item/clothing/head/utility/surgerycap, @@ -272,7 +272,7 @@ "Rm" = ( /obj/item/circuitboard/machine/restaurant_portal, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "RI" = ( /obj/effect/decal/cleanable/shreds, /turf/open/floor/iron/cafeteria/airless, diff --git a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm index e18683a83340..e8448c8a0471 100644 --- a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm +++ b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm @@ -137,14 +137,12 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/machinery/button/door/directional/south{ - id = "a5"; - name = "privacy button"; - pixel_y = 24 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, +/obj/machinery/button/door/directional/north{ + id = "a5" + }, /turf/open/floor/carpet/purple, /area/ruin/space/has_grav/hotel/guestroom/room_5) "by" = ( @@ -356,7 +354,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dK" = ( /obj/structure/frame/computer{ dir = 1 @@ -579,17 +577,14 @@ /turf/open/floor/iron/grimy, /area/ruin/space/has_grav/hotel/bar) "gv" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - icon_state = "roomnum"; - name = "Room Number 1"; - pixel_y = -24 +/obj/machinery/light/small/directional/south, +/obj/machinery/button{ + id = "hcb2"; + name = "shutters control"; + pixel_y = -25 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/open/floor/catwalk_floor, +/area/ruin/space/has_grav/hotel/dock) "gB" = ( /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/carpet/black, @@ -634,16 +629,15 @@ /turf/open/floor/wood/tile, /area/ruin/space/has_grav/hotel) "hg" = ( -/obj/effect/turf_decal/siding/wood, /obj/structure/sign/warning/fire{ desc = "A sign that states the labeled room's number."; dir = 10; icon_state = "roomnum"; name = "Room Number 6"; - pixel_y = 24 + pixel_y = -5 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_6) "hh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -1160,7 +1154,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lf" = ( /obj/structure/window/spawner/directional/north, /obj/machinery/shower/directional/south, @@ -1197,7 +1191,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lw" = ( /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating, @@ -1205,7 +1199,7 @@ "lB" = ( /obj/structure/fluff/tram_rail, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lE" = ( /obj/machinery/light/directional/east, /turf/open/floor/iron/grimy, @@ -1239,7 +1233,6 @@ /obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/sepia, /area/ruin/space/has_grav/hotel/pool) @@ -1281,7 +1274,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "mj" = ( /obj/structure/chair/sofa/right/brown{ dir = 4 @@ -1543,7 +1536,7 @@ /obj/structure/fluff/tram_rail, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ot" = ( /obj/structure/table/wood/fancy/red, /obj/item/paper_bin, @@ -1573,7 +1566,7 @@ }, /obj/structure/fluff/tram_rail, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "po" = ( /obj/structure/fluff/beach_umbrella/syndi, /turf/open/misc/beach/sand, @@ -1666,7 +1659,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qF" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1686,7 +1679,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qM" = ( /turf/open/floor/wood/parquet, /area/ruin/space/has_grav/hotel/guestroom/room_1) @@ -1897,7 +1890,6 @@ }, /obj/effect/turf_decal/siding/white, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/sepia, /area/ruin/space/has_grav/hotel/pool) "tj" = ( @@ -1929,16 +1921,13 @@ /turf/open/floor/carpet/blue, /area/ruin/space/has_grav/hotel) "tW" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - dir = 8; - icon_state = "roomnum"; - name = "Room Number 4"; - pixel_y = 24 +/obj/machinery/button{ + id = "hcb2"; + name = "shutters control"; + pixel_y = 8 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/dock) "ua" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/light/small/directional/south, @@ -2019,10 +2008,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/button/door/directional/south{ - id = "a3"; - name = "privacy button"; - pixel_y = 24 +/obj/machinery/button/door/directional/north{ + id = "a3" }, /turf/open/floor/carpet/red, /area/ruin/space/has_grav/hotel/guestroom/room_3) @@ -2102,7 +2089,8 @@ id = "hcb1"; name = "shutters control"; pixel_x = 26; - pixel_y = 8 + pixel_y = 8; + dir = 4 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2326,8 +2314,6 @@ /area/ruin/space/has_grav/hotel/pool) "xS" = ( /obj/item/beacon, -/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/has_grav/hotel/dock) "xZ" = ( @@ -2393,7 +2379,7 @@ "yB" = ( /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "yD" = ( /obj/structure/sink/directional/west, /obj/machinery/firealarm/directional/north, @@ -2432,7 +2418,7 @@ "yV" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "yY" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/tile, @@ -2449,12 +2435,6 @@ /area/ruin/space/has_grav/hotel/power) "zr" = ( /obj/effect/turf_decal/loading_area, -/obj/machinery/button{ - id = "hcb2"; - name = "shutters control"; - pixel_x = -25; - pixel_y = 8 - }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/hotel/dock) "zy" = ( @@ -2588,6 +2568,13 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/hotel) +"BP" = ( +/obj/machinery/button{ + id = "hcd1"; + name = "shutters control" + }, +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/dock) "BU" = ( /obj/structure/cable, /turf/open/floor/circuit/green, @@ -2901,7 +2888,7 @@ /obj/structure/lattice, /obj/structure/grille, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "FT" = ( /turf/open/floor/iron/dark/side, /area/ruin/space/has_grav/hotel/dock) @@ -3123,7 +3110,7 @@ /obj/structure/lattice, /obj/structure/grille/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Iq" = ( /obj/item/kirbyplants/organic/plant16, /obj/structure/sign/poster/random/directional/west, @@ -3176,7 +3163,7 @@ "IZ" = ( /obj/structure/fluff/tram_rail/end, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Je" = ( /obj/structure/cable, /obj/item/reagent_containers/cup/bucket, @@ -3397,18 +3384,14 @@ /turf/open/floor/iron/showroomfloor, /area/ruin/space/has_grav/hotel/guestroom/room_2) "MY" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/table/wood/fancy/red, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/obj/machinery/button/door/directional/north{ - id = "a2"; - name = "privacy button"; - pixel_y = -24 +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + icon_state = "roomnum"; + name = "Room Number 5"; + dir = 5 }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/hotel/guestroom/room_2) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_5) "Ne" = ( /obj/effect/turf_decal/loading_area, /obj/machinery/light/small/directional/east, @@ -3429,23 +3412,22 @@ /turf/open/floor/carpet/blue, /area/ruin/space/has_grav/hotel) "ND" = ( -/obj/machinery/button{ - id = "hcd1"; - name = "shutters control"; - pixel_x = -25; - pixel_y = -25 +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + dir = 8; + icon_state = "roomnum"; + name = "Room Number 4" }, -/turf/open/floor/iron/dark/side, -/area/ruin/space/has_grav/hotel/dock) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_4) "NG" = ( -/obj/machinery/button{ - id = "hcb2"; - name = "shutters control"; - pixel_x = -25; - pixel_y = -25 +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + icon_state = "roomnum"; + name = "Room Number 1" }, -/turf/open/floor/catwalk_floor, -/area/ruin/space/has_grav/hotel/dock) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_1) "NJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3626,7 +3608,6 @@ /obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/sepia, /area/ruin/space/has_grav/hotel/pool) @@ -3891,18 +3872,15 @@ /turf/open/floor/iron/cafeteria, /area/ruin/space/has_grav/hotel/bar) "Tq" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, /obj/structure/sign/warning/fire{ desc = "A sign that states the labeled room's number."; - dir = 6; + dir = 1; icon_state = "roomnum"; - name = "Room Number 5"; - pixel_y = -24 + name = "Room Number 2"; + pixel_y = -10 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_2) "Ts" = ( /turf/open/floor/carpet/purple, /area/ruin/space/has_grav/hotel/guestroom/room_5) @@ -3918,18 +3896,15 @@ /turf/template_noop, /area/ruin/space/has_grav/hotel) "TG" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, /obj/structure/sign/warning/fire{ desc = "A sign that states the labeled room's number."; dir = 4; icon_state = "roomnum"; name = "Room Number 3"; - pixel_y = -24 + pixel_y = 10 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_3) "TH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4072,7 +4047,8 @@ id = "hcb1"; name = "shutters control"; pixel_x = -25; - pixel_y = 8 + pixel_y = 8; + dir = 8 }, /turf/open/floor/catwalk_floor, /area/ruin/space/has_grav/hotel/dock) @@ -4092,7 +4068,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "VM" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/power/apc/auto_name/directional/south, @@ -4369,12 +4345,9 @@ /area/ruin/space/has_grav/hotel/bar) "Yf" = ( /obj/effect/turf_decal/siding/wood, -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - dir = 1; - icon_state = "roomnum"; - name = "Room Number 2"; - pixel_y = 24 +/obj/machinery/button/door/directional/north{ + id = "a2"; + pixel_y = 32 }, /turf/open/floor/wood/tile, /area/ruin/space/has_grav/hotel) @@ -4466,7 +4439,6 @@ "Zg" = ( /obj/effect/turf_decal/siding/white, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/sepia, /area/ruin/space/has_grav/hotel/pool) "Zl" = ( @@ -4483,7 +4455,7 @@ }, /obj/structure/fluff/tram_rail/end, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Zo" = ( /obj/structure/sink/directional/west, /turf/open/floor/iron/showroomfloor, @@ -5557,13 +5529,13 @@ ez Ka Xg XS -xI hg +yY Lj PF wr -Tq -LD +QH +MY bu lZ hO @@ -6579,13 +6551,13 @@ Fy On eR Gg -Hm -tW +ND +yY cf PF cf +QH TG -vy vx Xx Rl @@ -7256,9 +7228,9 @@ VV aC lW sh -Ct -VV +gv VV +tW iP jf jy @@ -7329,7 +7301,7 @@ VV hZ hE xd -NG +hZ LB zr nw @@ -7381,14 +7353,14 @@ WD CL Ml OS -MY -Ff +OS +Tq Yf cf PF cf -gv -BK +QH +NG Xw Bb SN @@ -8211,7 +8183,7 @@ VV lI xS FT -VV +BP VV Cl Cl @@ -8283,7 +8255,7 @@ nX hU lI KZ -ND +FT hB Jj Cl diff --git a/_maps/RandomRuins/SpaceRuins/the_faceoff.dmm b/_maps/RandomRuins/SpaceRuins/the_faceoff.dmm index 48844fb46b22..6464c4901fd9 100644 --- a/_maps/RandomRuins/SpaceRuins/the_faceoff.dmm +++ b/_maps/RandomRuins/SpaceRuins/the_faceoff.dmm @@ -37,7 +37,7 @@ /area/ruin/space) "aC" = ( /obj/effect/turf_decal/stripes/red/full, -/obj/machinery/light/small/built, +/obj/machinery/light/small/empty, /obj/item/light/bulb/broken, /turf/open/floor/iron/dark/smooth_large/airless, /area/ruin/space) diff --git a/_maps/RandomRuins/SpaceRuins/the_outlet.dmm b/_maps/RandomRuins/SpaceRuins/the_outlet.dmm index 6965d1acea39..e90910816365 100644 --- a/_maps/RandomRuins/SpaceRuins/the_outlet.dmm +++ b/_maps/RandomRuins/SpaceRuins/the_outlet.dmm @@ -534,7 +534,7 @@ "nM" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "od" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/the_outlet/storefront) @@ -1566,7 +1566,7 @@ "LA" = ( /obj/item/stack/rods/two, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "LL" = ( /mob/living/basic/construct/proteon/hostile, /obj/effect/decal/cleanable/crayon/rune2, diff --git a/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm b/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm index 05d7ab995c54..b62a9b01b05d 100644 --- a/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm +++ b/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm @@ -41,7 +41,6 @@ "cm" = ( /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 }, @@ -223,7 +222,6 @@ /area/ruin/space/has_grav/thelizardsgas) "xy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -234,7 +232,7 @@ desc = "An incredibly bad idea." }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zn" = ( /obj/structure/rack, /obj/effect/spawner/random/food_or_drink/snack, @@ -377,7 +375,7 @@ /area/ruin/space/has_grav/thelizardsgas) "Kw" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 + dir = 4 }, /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating, diff --git a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm b/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm index cfb0424aeeeb..e2efec50286e 100644 --- a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm +++ b/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm @@ -195,7 +195,7 @@ /obj/structure/lattice, /obj/structure/girder, /turf/open/floor/plating/rust/airless, -/area/template_noop) +/area/space/nearstation) "my" = ( /obj/effect/turf_decal/trimline/red/line{ dir = 8 @@ -307,7 +307,7 @@ "rK" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "sb" = ( /turf/open/floor/wood/parquet, /area/ruin/space/has_grav/turretedoutpost) diff --git a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm index c98f09869345..830bd7508ec9 100644 --- a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm +++ b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /obj/structure/lattice, /turf/open/misc/asteroid/airless, diff --git a/_maps/RandomRuins/SpaceRuins/waystation.dmm b/_maps/RandomRuins/SpaceRuins/waystation.dmm index 336c57b1dc86..c950663a8266 100644 --- a/_maps/RandomRuins/SpaceRuins/waystation.dmm +++ b/_maps/RandomRuins/SpaceRuins/waystation.dmm @@ -111,7 +111,7 @@ "dd" = ( /obj/structure/broken_flooring/pile/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dl" = ( /obj/machinery/door/airlock/mining/glass, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -277,7 +277,7 @@ pixel_y = 24 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 8 }, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) @@ -285,6 +285,11 @@ /obj/machinery/power/shuttle_engine/propulsion, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powered/waystation/assaultpod) +"fk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/ruin/space/has_grav/waystation/cargobay) "fm" = ( /obj/machinery/conveyor{ dir = 1; @@ -316,9 +321,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/noticeboard/directional/north{ - dir = 2 - }, +/obj/structure/noticeboard/directional/north, /obj/item/paper/fluff/ruins/waystation/menu, /obj/item/paper/fluff/ruins/waystation/toilet, /turf/open/floor/iron, @@ -563,7 +566,7 @@ "kn" = ( /obj/structure/broken_flooring/pile/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ko" = ( /obj/machinery/door/airlock{ name = "Freezer" @@ -713,7 +716,7 @@ pixel_x = -6; pixel_y = 4 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 9 }, @@ -825,7 +828,7 @@ width = 35 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "nQ" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -864,7 +867,6 @@ pixel_x = 12; pixel_y = 7 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) "or" = ( @@ -1155,6 +1157,13 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) +"se" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ruin/space/has_grav/waystation/power) "su" = ( /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -1220,6 +1229,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate_abandoned, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) "ux" = ( @@ -1257,7 +1267,7 @@ "vi" = ( /obj/structure/girder, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "vn" = ( /obj/effect/turf_decal/siding/red{ dir = 1 @@ -1325,7 +1335,7 @@ "wf" = ( /obj/item/stack/rods/two, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "wj" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/siding/green, @@ -1381,7 +1391,7 @@ "xi" = ( /obj/structure/broken_flooring/pile/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "xq" = ( /obj/machinery/conveyor{ dir = 1; @@ -1499,6 +1509,7 @@ /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) "zd" = ( @@ -1564,6 +1575,14 @@ /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) +"AT" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/ruin/space/has_grav/waystation/cargobay) "AW" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -1580,9 +1599,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/noticeboard/directional/west{ - dir = 4 - }, +/obj/structure/noticeboard/directional/west, /obj/item/paper/fluff/ruins/waystation/sop, /obj/structure/cable, /turf/open/floor/iron, @@ -1669,7 +1686,6 @@ /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/dim/directional/west, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) @@ -1700,11 +1716,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/space/has_grav/waystation) -"Ee" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/space/has_grav/waystation/cargobay) "Eh" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/structure/filingcabinet, @@ -1843,7 +1854,7 @@ }, /obj/effect/mapping_helpers/broken_floor, /obj/item/light/tube/broken, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargooffice) "HH" = ( @@ -2398,7 +2409,7 @@ /area/ruin/space/has_grav/waystation/cargooffice) "Qx" = ( /obj/structure/table, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/item/stamp/denied{ pixel_x = 8 }, @@ -2525,7 +2536,7 @@ "Tl" = ( /obj/item/shell/airlock, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Tx" = ( /obj/effect/turf_decal/siding/brown{ dir = 8 @@ -2601,7 +2612,9 @@ /turf/closed/wall, /area/ruin/space/has_grav/waystation/cargooffice) "UH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) @@ -4732,7 +4745,7 @@ pK pK Br yg -Mu +se Mu Mu yg @@ -4993,7 +5006,7 @@ Vb Vb Bq jH -Vb +AT Xr rn Vb @@ -5052,11 +5065,11 @@ Jf gu bW Jy -Xa +fk Ko -GI +bW hH -Xa +fk AJ bW kc @@ -5064,7 +5077,7 @@ bW Ko Xa ut -Ee +Xa CN Xa GN @@ -5114,11 +5127,11 @@ LW gu Xa Ko -Xa +fk Kn -GI +bW Kn -Xa +fk CN Xa vy @@ -5126,7 +5139,7 @@ bW Ko bW zc -Ee +Xa Kn Xa zI @@ -5177,8 +5190,8 @@ bW Xa Kn UH -KI -GI +Ko +bW oo fd ka diff --git a/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm b/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm index ca8d7627ef73..231a679be864 100644 --- a/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm +++ b/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/docking_port/stationary/picked/whiteship, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" a @@ -834,7 +834,7 @@ a a a a -b +a a a a @@ -1244,7 +1244,7 @@ a a a a -a +b a a a diff --git a/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm b/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm index 12bc608bda91..3f430bc63d8d 100644 --- a/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm +++ b/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm @@ -5,7 +5,7 @@ pixel_x = 9 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aw" = ( /obj/effect/decal/cleanable/glass/plastitanium, /turf/open/floor/mineral/titanium/white/airless, @@ -987,7 +987,7 @@ pixel_x = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "FX" = ( /obj/effect/turf_decal/tile/blue/half/contrasted, /obj/machinery/sleeper{ diff --git a/_maps/RandomZLevels/SnowCabin.dmm b/_maps/RandomZLevels/SnowCabin.dmm index 91c1feb25456..a190ac27e3e1 100644 --- a/_maps/RandomZLevels/SnowCabin.dmm +++ b/_maps/RandomZLevels/SnowCabin.dmm @@ -139,9 +139,9 @@ /area/awaymission/cabin) "aE" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/baseturf_helper/asteroid/snow, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/power/turbine/inlet_compressor, /turf/open/floor/plating, /area/awaymission/cabin) "aF" = ( @@ -198,17 +198,10 @@ /turf/open/floor/carpet, /area/awaymission/cabin) "aQ" = ( -/obj/structure{ - anchored = 1; - density = 1; - desc = "Generates power from lava!"; - dir = 1; - icon = 'icons/obj/pipes_n_cables/simple.dmi'; - icon_state = "compressor"; - name = "geothermal generator" - }, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/power/turbine/core_rotor, +/obj/structure/cable, /turf/open/floor/plating, /area/awaymission/cabin) "aR" = ( @@ -701,17 +694,9 @@ /turf/open/floor/plating, /area/awaymission/cabin) "dv" = ( -/obj/structure{ - anchored = 1; - density = 1; - desc = "Generates power from lava!"; - icon = 'icons/obj/pipes_n_cables/simple.dmi'; - icon_state = "turbine"; - name = "geothermal generator" - }, -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/power/turbine/turbine_outlet, /turf/open/floor/plating, /area/awaymission/cabin) "dC" = ( @@ -1545,9 +1530,9 @@ /turf/open/floor/carpet, /area/awaymission/cabin/caves/mountain) "hL" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/snow, -/area/awaymission/cabin/caves/mountain) +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/ice/smooth, +/area/awaymission/cabin/caves) "hM" = ( /turf/closed/wall/mineral/snow, /area/awaymission/cabin/caves/mountain) @@ -1674,7 +1659,8 @@ /area/awaymission/cabin/caves) "iP" = ( /obj/structure/sign/picture_frame{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/awaymission/cabin/caves) @@ -2499,8 +2485,11 @@ /turf/closed/indestructible/syndicate, /area/awaymission/cabin/caves/sovietcave) "no" = ( -/obj/structure/sign/warning, -/turf/closed/indestructible/syndicate, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, /area/awaymission/cabin/caves/sovietcave) "np" = ( /turf/closed/indestructible/fakedoor{ @@ -2857,6 +2846,14 @@ }, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/caves) +"qx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) "qz" = ( /obj/effect/light_emitter{ set_cap = 3; @@ -3602,10 +3599,8 @@ /turf/open/floor/plating/snowed/snow_cabin, /area/awaymission/cabin/snowforest/sovietsurface) "yJ" = ( -/obj/structure/sign/poster/contraband/free_drone{ - desc = "This poster seems to be meant for a bunch of machines that used to be deployed on space stations." - }, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/sign/poster/contraband/free_drone/directional/west, /turf/open/indestructible, /area/awaymission/cabin/caves/mountain) "yP" = ( @@ -4057,6 +4052,13 @@ }, /turf/open/floor/plating/snowed, /area/awaymission/cabin/snowforest) +"EK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/directional/north, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) "EL" = ( /obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, @@ -4155,6 +4157,10 @@ /obj/structure/flora/tree/pine/style_random, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/caves) +"Gf" = ( +/obj/structure/sign/poster/official/soft_cap_pop_art/directional/north, +/turf/open/floor/wood, +/area/awaymission/cabin) "Gk" = ( /obj/structure/closet/crate/bin, /obj/machinery/light/small/directional/east, @@ -5109,6 +5115,11 @@ /obj/effect/decal/cleanable/molten_object/large, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/caves) +"SW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/baseturf_helper/asteroid/snow, +/turf/open/floor/plating, +/area/awaymission/cabin) "To" = ( /obj/effect/decal/cleanable/blood/old, /obj/item/hatchet/wooden, @@ -5535,16 +5546,12 @@ /turf/open/floor/plating/snowed/smoothed, /area/awaymission/cabin/caves) "Zb" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, /obj/effect/light_emitter{ set_cap = 3; set_luminosity = 6; light_color = "#9bbbff" }, -/turf/open/misc/asteroid/snow/snow_cabin, +/turf/closed/wall, /area/awaymission/cabin/caves) "Zf" = ( /obj/structure/fence{ @@ -5585,6 +5592,16 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood/freezing, /area/awaymission/cabin/lumbermill) +"ZZ" = ( +/obj/effect/light_emitter{ + name = "cave light"; + set_cap = 3; + set_luminosity = 6; + light_color = "#9bbbff" + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow/snow_cabin, +/area/awaymission/cabin/caves) (1,1,1) = {" ab @@ -17122,7 +17139,7 @@ vh vh vh Zb -Su +ZZ oz oz oz @@ -18921,7 +18938,7 @@ vh vh vh Zb -Su +ZZ oz oz oz @@ -29131,8 +29148,8 @@ Yp aA jj an -eg aq +eg an cN aq @@ -29388,8 +29405,8 @@ an an an an -ct -aq +Gf +eg an jE aq @@ -29645,8 +29662,8 @@ sG au ji an -eg -bh +aq +ht an cO cO @@ -36321,7 +36338,7 @@ vh xt an aw -ed +SW ed hv an @@ -48293,12 +48310,12 @@ gx gx gx gx +hM hL PV PV PV PV -PV Oe Oe Oe @@ -49321,12 +49338,12 @@ gx gx gx gx +hM hL PV PV PV PV -PV gx gx gx @@ -68760,10 +68777,10 @@ gx gx gx gx +ii +EK no -im -im -no +ii gx gx gx @@ -69274,10 +69291,10 @@ gx gx gx gx -no -im -lS -no +ii +EK +qx +ii gx gx gx diff --git a/_maps/RandomZLevels/TheBeach.dmm b/_maps/RandomZLevels/TheBeach.dmm index 6b29a5e2fc52..cc06de9ed5dc 100644 --- a/_maps/RandomZLevels/TheBeach.dmm +++ b/_maps/RandomZLevels/TheBeach.dmm @@ -93,7 +93,7 @@ /turf/open/floor/wood, /area/awaymission/beach) "bg" = ( -/obj/structure/no_effect_signpost{ +/obj/structure/signpost{ pixel_y = 6; desc = "Northwest: Hotel. South: Seaside Bar. East: Dressing Rooms." }, diff --git a/_maps/RandomZLevels/caves.dmm b/_maps/RandomZLevels/caves.dmm index 9891aa74685e..f3f34b78b3f5 100644 --- a/_maps/RandomZLevels/caves.dmm +++ b/_maps/RandomZLevels/caves.dmm @@ -152,7 +152,7 @@ /area/awaymission/caves/bmp_asteroid/level_four) "ba" = ( /obj/structure/table/wood/fancy, -/obj/item/clothing/gloves/krav_maga/combatglovesplus, +/obj/item/clothing/gloves/kaza_ruk/combatglovesplus, /turf/open/floor/engine/cult, /area/awaymission/caves/bmp_asteroid/level_four) "bf" = ( @@ -1038,7 +1038,7 @@ /turf/open/misc/asteroid/basalt, /area/awaymission/caves/bmp_asteroid) "nw" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/spider/stickyweb, /turf/open/floor/iron, /area/awaymission/caves/bmp_asteroid/level_two) @@ -1149,7 +1149,7 @@ desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine."; name = "\improper MECH TUNNEL PASSAGE A2 TO B1" }, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/misc/asteroid/basalt, /area/awaymission/caves/bmp_asteroid/level_two) "vR" = ( @@ -1190,7 +1190,7 @@ "yS" = ( /obj/structure/closet/crate, /obj/item/paper/fluff/awaymissions/caves/shipment_receipt, -/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser/soul, /obj/item/slimepotion/fireproof, /obj/item/slimepotion/fireproof, /obj/item/clothing/glasses/thermal, @@ -1314,7 +1314,7 @@ /turf/open/floor/iron, /area/awaymission/caves/research) "FS" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/spider/stickyweb, /mob/living/basic/spider/giant/hunter/away_caves, /turf/open/floor/iron, @@ -1324,7 +1324,7 @@ /turf/open/misc/asteroid/basalt, /area/awaymission/caves/bmp_asteroid/level_two) "Gt" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/machinery/suit_storage_unit/mining{ desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; name = "rusted suit storage unit" @@ -1347,7 +1347,7 @@ /turf/open/floor/iron, /area/awaymission/caves/research) "IE" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/sign/warning/pods/directional/east{ desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine."; name = "\improper MECH TUNNEL PASSAGE B1 TO A2" @@ -1397,7 +1397,7 @@ /turf/open/misc/asteroid/basalt, /area/awaymission/caves/bmp_asteroid/level_two) "Mk" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/wood, /area/awaymission/caves/northblock) "Mq" = ( @@ -1453,7 +1453,7 @@ }, /area/awaymission/caves/bmp_asteroid) "PS" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/machinery/suit_storage_unit/mining{ desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; name = "rusted suit storage unit" diff --git a/_maps/RandomZLevels/heretic.dmm b/_maps/RandomZLevels/heretic.dmm new file mode 100644 index 000000000000..f69126634259 --- /dev/null +++ b/_maps/RandomZLevels/heretic.dmm @@ -0,0 +1,75414 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"af" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ah" = ( +/obj/structure/statue/uranium/nuke, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"ai" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ak" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"al" = ( +/obj/item/radio/intercom/mi13/directional/north, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"am" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"an" = ( +/obj/machinery/light/directional/west, +/obj/structure/closet/crate/secure/weapon{ + name = "p90 ammo crate" + }, +/obj/item/stack/sheet/cardboard/fifty, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"ao" = ( +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack{ + pixel_y = 9; + pixel_x = 15; + anchored = 1; + name = "Sam Site Missle rack" + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"aq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/door_assembly/door_assembly_material, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"ar" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"as" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"au" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"aw" = ( +/obj/structure/fluff/tram_rail, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"ay" = ( +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"az" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"aA" = ( +/obj/structure/table, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"aB" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/turf_decal/tile/green, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"aC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"aD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"aE" = ( +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"aF" = ( +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -10; + pixel_y = 0 + }, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"aK" = ( +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"aL" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/thermoplastic/light, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 8 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"aM" = ( +/obj/structure/fluff/bus/dense, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"aO" = ( +/obj/machinery/door/airlock{ + name = "Guest Room" + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"aP" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/camera/xray/directional/east, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"aQ" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"aR" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"aV" = ( +/obj/structure/table, +/obj/item/storage/toolbox/syndicate, +/obj/item/trench_tool, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"aW" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_x = -6 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ba" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"bb" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"bc" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"be" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"bf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"bi" = ( +/obj/effect/landmark/transport/nav_beacon/tram/platform/heretic/left, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"bl" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/closet/crate/secure/trashcart/filled, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"bn" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"bq" = ( +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"br" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"bt" = ( +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"bu" = ( +/mob/living/basic/trooper/nanotrasen/peaceful, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bv" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"by" = ( +/obj/structure/fence, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"bA" = ( +/obj/structure/table, +/obj/item/binoculars, +/obj/item/binoculars, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bB" = ( +/turf/closed/mineral/ash_rock, +/area/awaymission/beach/heretic) +"bG" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"bH" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bJ" = ( +/obj/machinery/light/directional/north, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bN" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"bP" = ( +/obj/structure/chair/office/tactical{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bR" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"bT" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + 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/awaymission/caves/heretic_laboratory) +"bZ" = ( +/obj/machinery/door/airlock/multi_tile{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"cb" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ce" = ( +/obj/effect/turf_decal/siding/blue/corner, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"ci" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"cj" = ( +/mob/living/basic/heretic_summon/stalker, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ck" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"cl" = ( +/turf/open/misc/beach/coast{ + dir = 9 + }, +/area/awaymission/caves/heretic_laboratory_clean) +"cp" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 10 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"cq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"cs" = ( +/obj/machinery/quantum_server, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"ct" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"cw" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"cy" = ( +/obj/structure/table, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/gauze, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"cz" = ( +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/machinery/conveyor/auto{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"cC" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"cF" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/mecha_wreckage/ripley/mk2, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"cI" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"cK" = ( +/obj/effect/turf_decal/tile/bar/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"cL" = ( +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"cN" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"cO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"cP" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"cQ" = ( +/turf/closed/wall/rock, +/area/awaymission/caves/heretic_laboratory) +"cR" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"cT" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/dresser, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"cV" = ( +/obj/structure/frame/machine/secured, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"cX" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"db" = ( +/obj/machinery/vending/games, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dd" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"de" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"df" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"dj" = ( +/mob/living/basic/construct/proteon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dk" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"dl" = ( +/obj/item/stack/sheet/mineral/sandbags, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"dm" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"do" = ( +/obj/machinery/door/airlock, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"dp" = ( +/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 = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dr" = ( +/obj/structure/table, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"du" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dw" = ( +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"dy" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/magic/midas_hand, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"dA" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/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, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"dC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"dD" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dF" = ( +/obj/machinery/light/very_dim/directional/east, +/obj/machinery/suit_storage_unit/industrial, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"dG" = ( +/obj/machinery/disposal/delivery_chute{ + name = "EXTREMELY hazardous waste disposal chute" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"dI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"dL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"dP" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"dR" = ( +/turf/open/misc/beach/coast/corner{ + dir = 8 + }, +/area/awaymission/beach/heretic) +"dS" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"dU" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/spawner/surgery_tray/full, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"dW" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"dX" = ( +/obj/machinery/camera/xray/directional/south, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"dY" = ( +/obj/structure/bookcase/random, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"eg" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"eh" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"ek" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"el" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"eo" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/puzzle/keycard/biological_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ep" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"eq" = ( +/obj/structure/table, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"et" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"ev" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory) +"ew" = ( +/obj/item/radio/intercom/mi13/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ey" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"eB" = ( +/obj/structure/filingcabinet, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"eE" = ( +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"eH" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"eJ" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"eK" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"eM" = ( +/obj/machinery/computer/operating/oldstation{ + dir = 8 + }, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"eN" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"eQ" = ( +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"eS" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"eT" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"eW" = ( +/obj/structure/table, +/obj/item/ammo_box/magazine/m7mm, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"eY" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"fb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"fg" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"fh" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Beachside Inn" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"fk" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/airlock/virology, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"fl" = ( +/obj/structure/projected_forcefield, +/obj/effect/oneway, +/turf/open/floor/mineral/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"fm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"fo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"fp" = ( +/obj/machinery/door/airlock/virology, +/obj/machinery/door/puzzle/keycard/cbrn_area, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"fq" = ( +/obj/machinery/vending/hotdog, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"fu" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"fw" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"fx" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/iron/checker, +/area/awaymission/caves/heretic_laboratory) +"fz" = ( +/obj/structure/table, +/obj/item/paper/fluff/awaymissions/heretic/floorsafe, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"fA" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"fB" = ( +/obj/structure/closet/secure_closet/security/sec, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"fC" = ( +/obj/machinery/conveyor/auto{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"fD" = ( +/obj/machinery/telecomms/processor, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"fE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"fF" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dorms" + }, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"fH" = ( +/obj/machinery/light/floor, +/obj/structure/table, +/obj/item/fake_items/feddy_fazbear, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"fI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"fJ" = ( +/obj/machinery/light/small/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"fK" = ( +/obj/structure/table, +/obj/item/stack/sticky_tape{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/stack/sticky_tape{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"fL" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"fM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"fP" = ( +/obj/item/stack/sheet/mineral/uranium, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/coin/uranium, +/obj/item/stack/ore/uranium, +/obj/item/reagent_containers/cup/bottle/radium, +/obj/structure/closet/crate/wooden, +/obj/item/nuke_core{ + anchored = 1 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"fR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"fV" = ( +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"fW" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"fX" = ( +/obj/item/stack/cable_coil/thirty, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"fY" = ( +/obj/structure/closet/crate/grave, +/obj/effect/spawner/random/heretic_gateway, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"fZ" = ( +/obj/structure/flora/tree/jungle/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"ga" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/obj/machinery/computer/tram_controls/heretic_tram_computer{ + icon_state = "tram_alt_controls"; + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"gb" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/door/window/right/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"gd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gg" = ( +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/coin/uranium, +/obj/item/stack/ore/uranium, +/obj/item/reagent_containers/cup/bottle/radium, +/obj/structure/closet/crate/wooden, +/obj/item/nuke_core{ + anchored = 1 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"gh" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"gi" = ( +/obj/effect/heretic_rune/big, +/mob/living/basic/faithless, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"gj" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory_clean) +"gm" = ( +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"gp" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"gq" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gr" = ( +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"gs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/barricade/security, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"gt" = ( +/obj/structure/closet/firecloset/full, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"gu" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"gv" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"gw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/transport/tram{ + specific_transport_id = "heretic_1"; + pixel_y = 8; + id = 2 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gx" = ( +/obj/structure/mop_bucket, +/obj/effect/spawner/random/trash/bucket, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/mop/advanced, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"gy" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/structure/holosign/barrier/atmos/sturdy, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"gz" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"gA" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"gB" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"gC" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"gF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"gI" = ( +/obj/machinery/door/window/survival_pod/left/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"gJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gK" = ( +/turf/open/misc/beach/coast{ + dir = 8 + }, +/area/awaymission/beach/heretic) +"gN" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"gO" = ( +/obj/structure/bodycontainer/crematorium{ + id = "crematoriumchapel"; + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"gQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"gS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/structure/door_assembly/door_assembly_highsecurity, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gT" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"gU" = ( +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/obj/item/toy/plush/moth, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"gW" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"gX" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gY" = ( +/obj/machinery/conveyor/auto{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ha" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"hb" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"hc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"hd" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/flare/candle/infinite, +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"he" = ( +/obj/structure/sign/poster/contraband/communist_state/directional/west, +/obj/effect/spawner/random/trash/moisture_trap, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"hf" = ( +/obj/structure/fluff/bus/passable/seat{ + pixel_y = 15 + }, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"hg" = ( +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"hi" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"hk" = ( +/turf/open/misc/beach/coast{ + dir = 4 + }, +/area/awaymission/beach/heretic) +"ho" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"hp" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"hq" = ( +/obj/structure/flora/tree/palm/style_random, +/obj/structure/flora/coconuts, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"hr" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/transport/tram{ + specific_transport_id = "heretic_1"; + pixel_y = 8; + id = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"hs" = ( +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"hu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"hv" = ( +/obj/machinery/light/directional/north, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"hB" = ( +/mob/living/basic/crab, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"hC" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"hD" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/energy/dueling, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"hE" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"hF" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"hG" = ( +/obj/structure/flora/tree/palm/style_random, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"hI" = ( +/obj/effect/turf_decal/sand/plating, +/obj/machinery/vending/snack, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"hJ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"hK" = ( +/obj/structure/table/wood/fancy, +/obj/item/plate/oven_tray, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"hL" = ( +/obj/machinery/light/directional/south, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"hM" = ( +/obj/machinery/door/airlock{ + name = "Employees Only"; + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"hQ" = ( +/obj/structure/table, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"hS" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 6 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"hU" = ( +/obj/machinery/autolathe, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"hV" = ( +/obj/machinery/door/airlock/wood{ + name = "Beach Bar" + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"hX" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"hY" = ( +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"ia" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"id" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"ie" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/structure/bed/double, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"if" = ( +/obj/machinery/cryo_cell{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"ig" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "bottomdoor" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"ih" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/dark_green, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ij" = ( +/obj/structure/table/bronze, +/obj/item/flashlight/lamp/green, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"ik" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"il" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"im" = ( +/obj/item/mop/advanced, +/obj/structure/closet, +/obj/item/reagent_containers/cup/bottle/water, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/stock_parts/water_recycler, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"in" = ( +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"ip" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"iu" = ( +/obj/machinery/light/floor, +/turf/closed/wall/mineral/titanium, +/area/awaymission/beach/heretic) +"iw" = ( +/obj/effect/turf_decal/trimline/red/filled/end, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"ix" = ( +/obj/structure/window/spawner/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"iz" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"iB" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"iC" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"iD" = ( +/mob/living/basic/heretic_summon/fire_shark/wild, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"iF" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"iH" = ( +/obj/structure/closet/secure_closet, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"iI" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/closet/cabinet, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"iJ" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medical Freezer" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"iL" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/thermoplastic/light, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"iN" = ( +/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 = 1 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"iO" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"iP" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"iQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"iR" = ( +/obj/structure/fluff/tram_rail/end, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"iS" = ( +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/obj/machinery/transport/tram_controller/heretic_tram_controller, +/obj/structure/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"iU" = ( +/obj/item/bedsheet{ + pixel_x = 19; + pixel_y = 0 + }, +/obj/structure/bed{ + pixel_x = 17; + pixel_y = 0 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"iW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"iX" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"iZ" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"ja" = ( +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"jc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"je" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/human, +/obj/structure/reagent_dispensers/fueltank/large{ + max_integrity = 1; + name = "Extremely fragile high capacity fuel tank" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jf" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jg" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/security, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ji" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"jj" = ( +/obj/effect/decal/cleanable/glass/plastitanium, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"jk" = ( +/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/awaymission/caves/heretic_laboratory) +"jo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"jq" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"js" = ( +/obj/machinery/door/airlock{ + name = "Showers" + }, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"ju" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"jx" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"jy" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"jz" = ( +/obj/effect/gibspawner/human, +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"jF" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jG" = ( +/obj/effect/mob_spawn/corpse/human, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"jK" = ( +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jO" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"jP" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"jQ" = ( +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"jS" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"jT" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"jU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"jV" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jW" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"jX" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/water/deep_beach, +/area/awaymission/beach/heretic) +"jY" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/robot, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jZ" = ( +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"kc" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"kd" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 4 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"kf" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"kg" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"kj" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"kk" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"kl" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"km" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"kn" = ( +/obj/structure/chair/office/tactical{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ko" = ( +/obj/item/stack/sheet/mineral/uranium, +/obj/item/nuke_core{ + anchored = 1 + }, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/coin/uranium, +/obj/item/stack/ore/uranium, +/obj/item/toy/brokenradio, +/obj/structure/closet/crate/wooden, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"kr" = ( +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"kw" = ( +/obj/machinery/light/very_dim/directional/west, +/obj/structure/chair/comfy/shuttle/tactical, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"kz" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/item/radio/intercom/mi13/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"kD" = ( +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"kE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"kF" = ( +/obj/item/flashlight/flare/candle/infinite, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"kG" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"kH" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"kI" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"kK" = ( +/obj/machinery/light/floor, +/obj/item/slimepotion/genderchange, +/obj/structure/closet/crate/freezer, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"kO" = ( +/obj/structure/table, +/obj/item/fake_items/l6_saw, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"kQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"kR" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"kV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"kW" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Grocery Store"; + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"kX" = ( +/obj/structure/sign/poster/abductor/ayy_recruitment/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ld" = ( +/obj/structure/closet/crate/secure/weapon{ + name = "p90 ammo crate" + }, +/obj/item/ammo_box/magazine/napad, +/obj/item/ammo_box/magazine/napad, +/obj/item/ammo_box/magazine/napad, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"lh" = ( +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"lj" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/medicine, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"lm" = ( +/turf/closed/mineral/ash_rock, +/area/awaymission/caves/heretic_laboratory) +"lo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"ls" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"lt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"lu" = ( +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"lv" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"lx" = ( +/mob/living/basic/construct/juggernaut, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"lz" = ( +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"lA" = ( +/obj/item/radio/intercom/mi13/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"lB" = ( +/obj/machinery/autolathe, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"lC" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"lD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"lE" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"lH" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/mapping_helpers/damaged_window, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"lJ" = ( +/obj/effect/turf_decal/tile/dark_green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"lK" = ( +/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, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"lL" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/bananalamp, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"lO" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"lV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"lW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"lX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"lY" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/bar/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"lZ" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"ma" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"mc" = ( +/obj/structure/sink{ + dir = 8; + pixel_y = 1; + pixel_x = 13 + }, +/turf/open/floor/iron/white, +/area/awaymission/beach/heretic) +"md" = ( +/obj/machinery/shieldgen, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"me" = ( +/obj/machinery/light/floor, +/obj/structure/closet/crate/freezer, +/obj/item/organ/heart/gland, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"mg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"mi" = ( +/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/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"mj" = ( +/obj/structure/fence/door, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"mm" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"mn" = ( +/obj/structure/fence/door{ + dir = 8 + }, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"mo" = ( +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"mq" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"mt" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"mu" = ( +/obj/structure/bed, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"mv" = ( +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"mC" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"mE" = ( +/obj/structure/bodycontainer/morgue/beeper_off, +/turf/open/floor/iron/dark/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"mF" = ( +/obj/machinery/vending/drugs, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"mG" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"mH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/curtain, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"mI" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"mJ" = ( +/obj/machinery/suit_storage_unit/open, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"mL" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"mM" = ( +/turf/open/water/jungle, +/area/awaymission/beach/heretic) +"mN" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"mO" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"mR" = ( +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"mS" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/curtain, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"mT" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"mV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"mW" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"mX" = ( +/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 = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"mY" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"mZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/toxin, +/obj/item/storage/medkit/toxin, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"na" = ( +/obj/structure/flora/bush/jungle/a/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"nb" = ( +/turf/closed/wall, +/area/awaymission/caves/heretic_laboratory) +"nd" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/puzzle/keycard/cbrn_area, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"ne" = ( +/obj/item/seeds/cherry/bomb, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"ng" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/obj/machinery/door/airlock/maintenance, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"nh" = ( +/obj/machinery/conveyor/auto{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ni" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"nj" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"nk" = ( +/obj/structure/flora/tree/palm, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"np" = ( +/obj/structure/sign/poster/contraband/arc_slimes/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"nr" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/bed, +/obj/item/bedsheet/black, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"nv" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"nw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/radio/intercom/mi13/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ny" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"nz" = ( +/obj/structure/frame/machine/secured, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"nD" = ( +/obj/structure/projected_forcefield, +/obj/effect/oneway{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"nE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"nF" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"nG" = ( +/obj/structure/dresser, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"nI" = ( +/turf/open/water/deep_beach, +/area/awaymission/beach/heretic) +"nJ" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"nL" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"nM" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"nN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"nO" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"nP" = ( +/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/heretic) +"nQ" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"nR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/shieldgen, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"nT" = ( +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"nV" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"ob" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"oc" = ( +/obj/machinery/door/airlock/public/glass{ + name = "General Store"; + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"od" = ( +/obj/machinery/conveyor/auto, +/obj/item/toy/plush/moth, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"oe" = ( +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"oi" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"oj" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"ol" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/mob/living/basic/trooper/nanotrasen/ranged/smg/peaceful, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"om" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/south, +/obj/structure/bedsheetbin, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"oo" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"op" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/light/floor, +/obj/machinery/light/directional/east, +/obj/structure/bed/double, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"os" = ( +/obj/item/toy/seashell{ + pixel_y = -15 + }, +/obj/item/toy/seashell{ + pixel_y = -3; + pixel_x = -18 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"ov" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"oz" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler/smg, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"oC" = ( +/obj/machinery/pdapainter, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"oD" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"oF" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"oI" = ( +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"oL" = ( +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"oN" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"oO" = ( +/obj/machinery/conveyor/auto{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"oP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"oQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"oS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"oW" = ( +/obj/structure/filingcabinet{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = 3; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -15; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = 12; + pixel_y = 0 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"pa" = ( +/obj/item/stack/sheet/runed_metal/five, +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"pb" = ( +/obj/machinery/door/poddoor/shutters/window/indestructible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"pc" = ( +/obj/effect/decal/cleanable/glass/plastitanium, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"pd" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"pe" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"pf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/item/mop/advanced, +/obj/effect/spawner/random/structure/closet_empty, +/obj/item/reagent_containers/cup/bucket, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pg" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pm" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"pn" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"po" = ( +/obj/structure/fluff/bus/passable/seat, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"pp" = ( +/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/awaymission/caves/heretic_laboratory) +"pr" = ( +/obj/structure/safe/floor{ + desc = "A huge chunk of metal with a dial embedded in it. Fine print on the dial reads \"Hardened Marine confidential containment safe, guaranteed thermite resistant, explosion resistant, and assistant resistant.\"" + }, +/obj/effect/spawner/random/heretic_gateway, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"ps" = ( +/obj/structure/table, +/obj/structure/sink{ + dir = 8; + pixel_y = 6; + pixel_x = 13 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"pt" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 8 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"pu" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pv" = ( +/turf/open/misc/beach/coast{ + dir = 1 + }, +/area/awaymission/beach/heretic) +"pw" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank/large{ + max_integrity = 1; + name = "Extremely fragile high capacity fuel tank" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"px" = ( +/obj/effect/decal/remains/xeno, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"py" = ( +/obj/structure/mop_bucket/janitorialcart, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pB" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"pC" = ( +/obj/effect/decal/cleanable/fuel_pool, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"pD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 5 + }, +/obj/structure/marker_beacon/jade, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"pF" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit, +/obj/item/storage/medkit, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"pH" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/effect/turf_decal/delivery, +/obj/effect/gibspawner/generic/animal, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"pJ" = ( +/mob/living/basic/bot/cleanbot, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"pL" = ( +/obj/machinery/light/directional/south, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pN" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pO" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pP" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pQ" = ( +/obj/item/radio/intercom/mi13/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pU" = ( +/obj/structure/falsewall, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"pW" = ( +/obj/structure/table, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pX" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottomrear" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"pY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/item/stack/sheet/iron/five, +/obj/item/stack/cable_coil/thirty, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"qb" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"qc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"qe" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/spawner/random/heretic_gateway, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"qg" = ( +/obj/item/clothing/glasses/meson, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"qk" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ql" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"qm" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"qn" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"qp" = ( +/obj/structure/toilet{ + pixel_y = 18 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qq" = ( +/obj/structure/flora/bush/jungle/b/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"qr" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"qt" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"qu" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"qv" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qA" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"qB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qC" = ( +/obj/item/clothing/head/utility/radiation/cbrnhood, +/obj/item/clothing/suit/utility/radiation/cbrnsuit, +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"qE" = ( +/obj/effect/decal/cleanable/blood/tracks{ + 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/awaymission/caves/heretic_laboratory) +"qG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qI" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank/large{ + max_integrity = 1; + name = "Extremely fragile high capacity fuel tank" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"qK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"qM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"qO" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/green/double, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"qP" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"qT" = ( +/obj/structure/chair, +/obj/effect/turf_decal/box, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"qU" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"qV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"qW" = ( +/obj/structure/toilet{ + dir = 4; + pixel_x = -2 + }, +/turf/open/floor/iron/white, +/area/awaymission/beach/heretic) +"qY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_green{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"rc" = ( +/obj/machinery/door/airlock{ + name = "Employees Only"; + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"rf" = ( +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"rh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"ri" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"rl" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"rt" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"ru" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"rx" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ry" = ( +/obj/structure/table, +/obj/item/book/bible, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"rA" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"rB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/brute, +/obj/item/storage/medkit/brute, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"rC" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"rF" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"rG" = ( +/obj/effect/decal/cleanable/rubble, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"rK" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/puzzle/keycard/biological_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"rM" = ( +/obj/structure/fluff/beach_umbrella/syndi, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"rN" = ( +/obj/structure/rack, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"rP" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"rR" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"rS" = ( +/mob/living/basic/construct/harvester, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_red/fourcorners, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"rT" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/obj/structure/fluff/tram_rail, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"rU" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/table, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"rX" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"sa" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"sb" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"sc" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 8 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"sd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/flashlight/lantern/on, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"se" = ( +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"sf" = ( +/obj/machinery/vending/donksofttoyvendor, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"sg" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"sj" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"sk" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"so" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"sp" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"sq" = ( +/obj/machinery/light/very_dim/directional/west, +/obj/machinery/suit_storage_unit/industrial, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"sr" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ss" = ( +/obj/item/clothing/shoes/combat/swat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/mask/gas/atmos, +/obj/item/clothing/glasses/meson, +/obj/structure/closet/cabinet, +/obj/item/clothing/under/rank/centcom/military/eng, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"sw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"sx" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"sy" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"sA" = ( +/obj/machinery/door/airlock{ + name = "Employees Only" + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"sC" = ( +/obj/structure/flora/bush/jungle/a/style_random, +/mob/living/basic/venus_human_trap, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"sD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"sF" = ( +/obj/machinery/vending/medical, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"sG" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"sJ" = ( +/obj/structure/table, +/obj/item/storage/medkit/brute{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/medkit/brute, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"sK" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"sL" = ( +/obj/structure/flora/grass/jungle/a/style_random, +/obj/item/seeds/replicapod, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"sM" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"sN" = ( +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"sO" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"sS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"sU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"sZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ta" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"tb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/screwdriver, +/obj/item/crowbar, +/obj/item/multitool, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"tc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"td" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"te" = ( +/turf/closed/wall/mineral/wood/nonmetal, +/area/awaymission/beach/heretic) +"tf" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"tg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"tl" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"tm" = ( +/obj/structure/flora/rock, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"to" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"tq" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"tr" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/beach/heretic) +"ts" = ( +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"ty" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"tA" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"tB" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"tD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/stairs/right, +/area/awaymission/beach/heretic) +"tJ" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"tL" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"tM" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"tN" = ( +/obj/machinery/conveyor/auto{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"tP" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"tQ" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"tR" = ( +/obj/effect/spawner/message_in_a_bottle/low_prob, +/turf/open/water/beach, +/area/awaymission/beach/heretic) +"tS" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"tU" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"tX" = ( +/obj/machinery/shower/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/curtain, +/obj/machinery/door/window/right/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"tY" = ( +/obj/item/binoculars, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"tZ" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ua" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"uc" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ue" = ( +/obj/structure/flora/coconuts, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"uf" = ( +/obj/effect/decal/cleanable/rubble, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"ug" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"uh" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"uj" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ul" = ( +/obj/item/radio/intercom/mi13/directional/north, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"um" = ( +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"un" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"up" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"uq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"us" = ( +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"ut" = ( +/obj/structure/sink/directional/west, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"uu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"uy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"uz" = ( +/turf/closed/wall/mineral/uranium, +/area/awaymission/beach/heretic) +"uA" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"uB" = ( +/obj/structure/closet/cabinet, +/obj/item/book/random, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"uE" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/fake_items/abductor_win_stick, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"uH" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 8 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"uI" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"uJ" = ( +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"uK" = ( +/obj/effect/decal/cleanable/fuel_pool, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"uL" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"uM" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/regular, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/suture, +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"uN" = ( +/obj/machinery/light/floor, +/obj/item/slimepotion/lovepotion, +/obj/item/slimepotion/lovepotion, +/obj/structure/closet/crate/freezer, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"uO" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"uQ" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"uR" = ( +/obj/structure/sign/poster/official/here_for_your_safety/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"uS" = ( +/mob/living/basic/trooper/nanotrasen/ranged/smg/peaceful, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"uT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/stairs/left, +/area/awaymission/beach/heretic) +"uV" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"uW" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"uX" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/energy/disabler/smoothbore, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"va" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"vb" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"vd" = ( +/obj/structure/closet/crate/secure/trashcart/filled, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"vf" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"vj" = ( +/obj/machinery/vending/medical, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vk" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"vm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"vn" = ( +/obj/structure/closet/cabinet, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"vo" = ( +/obj/structure/cable, +/obj/machinery/power/floodlight, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"vp" = ( +/obj/machinery/washing_machine, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vq" = ( +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"vr" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"vs" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vt" = ( +/obj/machinery/vending/medical, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vu" = ( +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"vv" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"vw" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"vx" = ( +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"vy" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"vB" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"vF" = ( +/obj/effect/landmark/transport/nav_beacon/tram/nav/heretic, +/obj/effect/landmark/transport/nav_beacon/tram/platform/heretic/middle, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"vI" = ( +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack{ + pixel_y = 8; + pixel_x = -15; + anchored = 1; + name = "Sam Site Missle rack" + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"vK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"vL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"vN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vO" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"vR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"vS" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"vT" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/gibspawner/human, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"vU" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"vY" = ( +/obj/effect/decal/cleanable/glass/plastitanium, +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"wa" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"wb" = ( +/obj/structure/closet, +/obj/item/shovel, +/obj/item/bodybag, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"wc" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"wd" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"we" = ( +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"wf" = ( +/turf/closed/wall/mineral/titanium, +/area/awaymission/beach/heretic) +"wh" = ( +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"wi" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/heretic_laboratory_clean) +"wl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"wm" = ( +/obj/item/broken_bottle, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"wn" = ( +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"wq" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ws" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/camera/xray/directional/north, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"wt" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"wu" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"wy" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"wz" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"wC" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"wD" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"wE" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"wF" = ( +/obj/machinery/suit_storage_unit, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"wH" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/regular, +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"wI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"wJ" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/obj/structure/fluff/tram_rail, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"wL" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/transport/tram{ + specific_transport_id = "heretic_1"; + pixel_y = 8; + id = 3 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"wM" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"wN" = ( +/obj/structure/projected_forcefield, +/obj/effect/oneway{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"wO" = ( +/turf/open/misc/beach/coast/corner{ + dir = 4 + }, +/area/awaymission/caves/heretic_laboratory_clean) +"wP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"wR" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"wT" = ( +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"wX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"wY" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "d"; + pixel_x = -15; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "a"; + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "n"; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "g"; + pixel_x = 16; + pixel_y = 3 + }, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"wZ" = ( +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"xa" = ( +/obj/machinery/computer/pod/old/mass_driver_controller/feeder{ + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"xb" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"xd" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"xe" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"xi" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"xj" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"xk" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xl" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory_clean) +"xm" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xn" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "reartire" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"xo" = ( +/obj/structure/table/wood, +/obj/item/pen, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"xr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"xs" = ( +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"xu" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"xv" = ( +/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/wrench/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"xx" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xB" = ( +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"xC" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"xD" = ( +/obj/machinery/deepfryer, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"xE" = ( +/obj/effect/turf_decal/weather/sand, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"xF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"xG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xH" = ( +/obj/effect/turf_decal/trimline/red/filled, +/obj/item/mecha_ammo/missiles_srm{ + pixel_y = 3; + name = "Sam Site Missiles"; + anchored = 1 + }, +/obj/item/mecha_ammo/missiles_srm{ + pixel_y = 10; + name = "Sam Site Missiles"; + anchored = 1 + }, +/obj/structure/rack, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"xI" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 6 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"xJ" = ( +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"xM" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "d"; + pixel_x = -15; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "a"; + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "n"; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "g"; + pixel_x = 16; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xO" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xQ" = ( +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"xS" = ( +/obj/structure/window/fulltile, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/awaymission/caves/heretic_laboratory) +"xT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"xW" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"xY" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"ya" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"yb" = ( +/obj/machinery/conveyor/auto/inverted{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"yc" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"yd" = ( +/obj/structure/table, +/obj/item/ammo_box/magazine/lahtimagazine{ + anchored = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"ye" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"yg" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"yj" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"yk" = ( +/obj/structure/curtain/cloth/fancy/mechanical/start_closed, +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"yo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"yp" = ( +/obj/structure/table, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"yu" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"yw" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/clothing/shoes/gunboots/disabler, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"yx" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"yz" = ( +/obj/item/stack/ore/uranium, +/obj/item/coin/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/structure/closet/crate/wooden, +/obj/item/nuke_core{ + anchored = 1 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"yA" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"yD" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"yE" = ( +/obj/machinery/telecomms/hub, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"yF" = ( +/obj/item/binoculars, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"yG" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"yI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"yJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"yK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"yL" = ( +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"yM" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/radio/intercom/mi13/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"yN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"yO" = ( +/obj/structure/chair/plastic, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"yQ" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"yS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"yV" = ( +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"yW" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"yX" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"yZ" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"za" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"zb" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"zc" = ( +/obj/effect/light_emitter/fake_outdoors, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"ze" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"zh" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"zk" = ( +/mob/living/basic/trooper/nanotrasen/peaceful, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"zl" = ( +/obj/structure/falsewall, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"zo" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"zr" = ( +/obj/effect/decal/cleanable/plasma, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"zs" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"zu" = ( +/obj/item/reagent_containers/cup/soda_cans/space_mountain_wind{ + pixel_x = -17; + pixel_y = 17 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"zv" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"zE" = ( +/obj/structure/bookcase/random, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"zF" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"zH" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"zI" = ( +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"zK" = ( +/obj/effect/decal/cleanable/rubble, +/obj/structure/flora/rock, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"zO" = ( +/mob/living/basic/rabbit{ + name = "Primal force of evil"; + desc = "Why is this bunny being put in a cell this extreme and why does it have a nametag that says 'hello my name is: SATAN'" + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"zQ" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/beach/heretic) +"zR" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"zS" = ( +/obj/structure/chair/sofa/bench, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"zT" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"zV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"zW" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"zZ" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottom" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Ac" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Ae" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Af" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"Ag" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"Ai" = ( +/obj/item/seeds/nettle/death, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Am" = ( +/obj/structure/flora/bush/grassy/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Ao" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ap" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "hoodbottom" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Aq" = ( +/obj/effect/decal/cleanable/glass/plastitanium, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"As" = ( +/obj/machinery/door/window/survival_pod/left/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"At" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Av" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Aw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ax" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Ay" = ( +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Az" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"AA" = ( +/obj/structure/flora/bush/jungle/c/style_random, +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"AB" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"AC" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"AD" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"AG" = ( +/obj/structure/bookcase/random, +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"AI" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"AJ" = ( +/obj/structure/toilet{ + dir = 4; + pixel_x = -2 + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"AK" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 5 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"AL" = ( +/obj/structure/table/wood, +/obj/item/book/manual/ripley_build_and_repair, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"AM" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"AO" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"AP" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"AQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"AR" = ( +/obj/item/reagent_containers/cup/soda_cans/sol_dry{ + pixel_y = 18; + pixel_x = 9 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"AS" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"AT" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"AZ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern/on, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"Bc" = ( +/obj/item/radio/intercom/mi13/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Be" = ( +/obj/machinery/gateway, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"Bf" = ( +/obj/item/clothing/head/collectable/welding, +/obj/item/weldingtool, +/obj/item/stack/cable_coil/five, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Bg" = ( +/obj/structure/table, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Bi" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/indestructible, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Bj" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Bl" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/sign/poster/contraband/eat/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Bm" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin/empty{ + name = "Towel bin" + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Bq" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Br" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Bs" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "topdoor" + }, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"Bv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Bx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"By" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"BE" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"BM" = ( +/obj/item/weldingtool/hugetank, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"BN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"BS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"BU" = ( +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"BV" = ( +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"BW" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/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, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"BX" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"BY" = ( +/obj/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/poddoor/shutters, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"BZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ce" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Cf" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/turf/open/water/jungle, +/area/awaymission/beach/heretic) +"Ci" = ( +/obj/effect/baseturf_helper/beach/sand, +/turf/closed/mineral/ash_rock, +/area/awaymission/beach/heretic) +"Ck" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"Cm" = ( +/mob/living/basic/heretic_summon/stalker, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Cn" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Co" = ( +/turf/open/misc/beach/coast{ + dir = 1 + }, +/area/awaymission/caves/heretic_laboratory_clean) +"Cp" = ( +/obj/structure/toilet{ + pixel_y = 18 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"Cs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ct" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Cv" = ( +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Cx" = ( +/mob/living/basic/heretic_summon/maid_in_the_mirror, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Cy" = ( +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Cz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"CA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"CB" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"CC" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"CD" = ( +/obj/machinery/shower/directional/west, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"CG" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"CI" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"CJ" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"CP" = ( +/obj/item/radio/intercom/mi13/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"CQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"CS" = ( +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"CT" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"CU" = ( +/obj/item/holosign_creator/atmos, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"CV" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"CW" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"CX" = ( +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"CZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Dc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Df" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/hos/double, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Dg" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Di" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Dj" = ( +/turf/closed/indestructible/rock, +/area/awaymission/beach/heretic) +"Dk" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/effect/decal/remains/human, +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"Dp" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Dr" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Ds" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Dt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/blood_filter, +/obj/item/clothing/gloves/latex/nitrile, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Du" = ( +/obj/structure/table, +/obj/item/pizzabox/meat, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Dx" = ( +/turf/open/misc/beach/coast{ + dir = 5 + }, +/area/awaymission/beach/heretic) +"Dz" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"DB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"DC" = ( +/obj/structure/bookcase/random, +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"DG" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"DJ" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/door/puzzle/keycard/biological_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"DL" = ( +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"DN" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"DR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 6 + }, +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory) +"DT" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"DU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"DX" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"DY" = ( +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"DZ" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 8 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"Ea" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Eb" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/mapping_helpers/damaged_window, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ec" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Eg" = ( +/obj/machinery/conveyor/auto{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ei" = ( +/obj/structure/flora/bush/jungle/b/style_random, +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Ek" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"El" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Em" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Er" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Es" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Et" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Ew" = ( +/obj/effect/spawner/random/heretic_gateway_low, +/obj/structure/closet, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ex" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ey" = ( +/obj/structure/projected_forcefield, +/obj/effect/oneway{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"Ez" = ( +/obj/machinery/vending/cigarette/beach, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"EA" = ( +/obj/structure/closet/crate/grave, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"EF" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"EG" = ( +/obj/effect/spawner/random/food_or_drink/seed_rare, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"EH" = ( +/obj/machinery/computer/shuttle/ferry/request{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"EI" = ( +/turf/open/water/beach, +/area/awaymission/caves/heretic_laboratory_clean) +"EJ" = ( +/turf/open/water/beach, +/area/awaymission/beach/heretic) +"EK" = ( +/obj/item/seeds/firelemon, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"EO" = ( +/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 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"EP" = ( +/obj/machinery/deployable_turret/hmg, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"EQ" = ( +/obj/machinery/cryo_cell{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"ER" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"ES" = ( +/obj/machinery/shower{ + pixel_y = 15 + }, +/obj/effect/turf_decal/weather/sand, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"EX" = ( +/obj/structure/table, +/obj/item/flashlight, +/obj/item/flashlight{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/flashlight{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"EY" = ( +/obj/effect/spawner/surgery_tray/full/morgue, +/obj/structure/table, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"EZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Fa" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Fb" = ( +/obj/structure/table, +/obj/item/storage/medkit/emergency, +/obj/item/storage/medkit/emergency{ + pixel_x = 0; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Fe" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Fh" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Fi" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/robot, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Fk" = ( +/obj/structure/closet/l3closet/janitor, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Fl" = ( +/turf/open/misc/beach/coast/corner{ + dir = 1 + }, +/area/awaymission/beach/heretic) +"Fm" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Fn" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Fr" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Fs" = ( +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"Fu" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/fake_items/wabbajack, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"Fw" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/thermoplastic/light, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"Fx" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottom" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Fy" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"Fz" = ( +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"FB" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FC" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FD" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FF" = ( +/obj/machinery/light/very_dim/directional/east, +/obj/structure/chair/comfy/shuttle/tactical, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"FG" = ( +/obj/structure/flora/tree/jungle/small/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"FH" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/bar, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FM" = ( +/obj/item/toy/dodgeball{ + name = "William"; + desc = "It's just not the same thing."; + pixel_y = -4; + pixel_x = 7 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"FO" = ( +/obj/effect/mob_spawn/corpse/human/wizard/red, +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"FP" = ( +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"FQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"FR" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"FT" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"FU" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"FW" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"FX" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"FY" = ( +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"FZ" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ga" = ( +/obj/structure/bed/double{ + dir = 4 + }, +/obj/item/bedsheet/rd/double{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"Gb" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Gd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Gf" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/mapping_helpers/damaged_window, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Gg" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Gh" = ( +/turf/closed/wall/mineral/iron, +/area/awaymission/beach/heretic) +"Gi" = ( +/obj/structure/sink/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Gj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Gk" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Gm" = ( +/obj/structure/flora/tree/palm{ + pixel_y = 24; + pixel_x = -7 + }, +/obj/structure/flora/coconuts, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Go" = ( +/obj/structure/flora/bush/jungle/b/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Gp" = ( +/mob/living/basic/bot/medbot/mysterious, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Gq" = ( +/obj/structure/sign/poster/contraband/energy_swords/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Gs" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/flare/candle/infinite, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"Gt" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Gu" = ( +/obj/structure/table/wood/fancy, +/obj/item/kitchen/fork, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"Gv" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/light/floor, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Gw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Gy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Gz" = ( +/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 = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"GC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"GD" = ( +/obj/structure/rack, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"GE" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"GF" = ( +/obj/structure/dresser, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"GH" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"GJ" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"GL" = ( +/obj/effect/spawner/random/trash/deluxe_garbage, +/obj/effect/spawner/random/trash/deluxe_garbage, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"GM" = ( +/obj/structure/closet/crate/secure/trashcart/filled, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"GN" = ( +/obj/machinery/light/floor, +/obj/item/slimepotion/slime/mutator, +/obj/structure/closet/crate/freezer, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"GO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"GP" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"GR" = ( +/obj/effect/turf_decal/trimline/red/arrow_cw, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack{ + pixel_y = 9; + pixel_x = 15; + anchored = 1; + name = "Sam Site Missle rack" + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"GT" = ( +/obj/machinery/light/floor, +/obj/structure/closet/crate/freezer, +/obj/item/organ/appendix/corrupt, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"GU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"GV" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"GW" = ( +/obj/structure/fluff/tram_rail, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"GY" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"GZ" = ( +/obj/structure/rack, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Hb" = ( +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"Hc" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/ammo_box/magazine/m7mm, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Hf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Hh" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Hi" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"Hj" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Hk" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Hl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Hn" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Hp" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Hq" = ( +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/sheet/iron, +/obj/item/stack/sheet/iron, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Hr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Hs" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ht" = ( +/obj/structure/filingcabinet{ + pixel_x = -1; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -10; + pixel_y = 0 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Hv" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/fakeartefact, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"Hx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"Hz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"HA" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"HC" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"HF" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HH" = ( +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"HJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HL" = ( +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HM" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"HN" = ( +/turf/open/misc/beach/coast{ + dir = 10 + }, +/area/awaymission/beach/heretic) +"HQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HR" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HU" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/item/stack/sheet/mineral/sandbags, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"HV" = ( +/turf/open/misc/beach/coast/corner{ + dir = 4 + }, +/area/awaymission/beach/heretic) +"HW" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"HX" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"Ia" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ib" = ( +/obj/item/gun/ballistic/automatic/napad/no_mag{ + pixel_x = -3 + }, +/obj/structure/rack, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Ic" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"Id" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ie" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/wood, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"If" = ( +/turf/open/floor/carpet/neon, +/area/awaymission/caves/heretic_laboratory) +"Ii" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/closet/crate/secure/trashcart/filled, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"Ij" = ( +/obj/item/reagent_containers/cup/soda_cans/starkist{ + pixel_y = 16; + pixel_x = 10 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Ik" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Il" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"Im" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"In" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Io" = ( +/obj/machinery/door/window/right/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Ir" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "e"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "r"; + pixel_x = 5; + pixel_y = 3 + }, +/obj/machinery/light/red/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Iv" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin/empty{ + name = "Towel bin" + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Iw" = ( +/obj/structure/closet/crate/grave, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"Iz" = ( +/obj/effect/decal/cleanable/rubble, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/plasma, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"IA" = ( +/obj/machinery/washing_machine, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"IB" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/misc/asteroid, +/area/awaymission/beach/heretic) +"ID" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"IF" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"IG" = ( +/mob/living/basic/heretic_summon/raw_prophet, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"II" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/oneway{ + dir = 4 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"IJ" = ( +/turf/open/misc/beach/coast{ + dir = 9 + }, +/area/awaymission/beach/heretic) +"IK" = ( +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"IL" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"IP" = ( +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"IQ" = ( +/obj/machinery/shower/directional/east, +/obj/structure/window/spawner/directional/north, +/obj/structure/curtain, +/obj/machinery/door/window/right/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"IS" = ( +/obj/machinery/griddle, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"IV" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"IX" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/remains/xeno, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"IZ" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ja" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Jb" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Jf" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/item/fake_items/sm_sliver, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Jg" = ( +/obj/machinery/computer/camera_advanced{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ji" = ( +/obj/structure/flora/tree/palm{ + pixel_y = 31 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Jn" = ( +/obj/structure/sign/poster/contraband/double_rainbow/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Jo" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Jp" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Jq" = ( +/obj/structure/fence/corner, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Js" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Jt" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Jv" = ( +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"Jw" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"Jy" = ( +/obj/effect/mob_spawn/corpse/human/old_pirate_captain, +/obj/structure/bed/maint, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Jz" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"JA" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"JB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"JD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"JE" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/water/beach, +/area/awaymission/beach/heretic) +"JG" = ( +/obj/structure/fluff/tram_rail/anchor, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"JH" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"JI" = ( +/obj/effect/spawner/random/food_or_drink/seed_vault, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"JK" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"JM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"JN" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"JO" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"JQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"JR" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"JS" = ( +/obj/structure/table/reinforced, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"JT" = ( +/obj/machinery/conveyor/auto{ + dir = 4 + }, +/obj/item/toy/plush/moth, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"JU" = ( +/obj/structure/falsewall, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"JW" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/fullupgrade, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"JX" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"JY" = ( +/obj/structure/table, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Ka" = ( +/obj/effect/spawner/structure/window/reinforced/indestructible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Kb" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Kd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/graffiti, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Kg" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Kj" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Kk" = ( +/obj/machinery/computer/camera_advanced{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"Kl" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/drone, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/head/utility/welding, +/obj/item/clothing/head/utility/welding, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"Km" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Kn" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/human, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ko" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"Kp" = ( +/obj/effect/landmark/transport/transport_id/heretic, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Kq" = ( +/obj/machinery/stasis{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Ks" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ku" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/obj/machinery/door/airlock/maintenance, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"Kx" = ( +/obj/item/grenade/c4, +/obj/item/grenade/c4, +/obj/item/grenade/c4, +/obj/effect/spawner/random/heretic_gateway_low, +/obj/structure/closet, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ky" = ( +/obj/structure/rack, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"KB" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory) +"KD" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"KE" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/paper_bin/bundlenatural, +/obj/item/pen, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"KF" = ( +/obj/structure/chair/plastic, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"KG" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/light/floor, +/obj/structure/bed/double, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"KH" = ( +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"KJ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"KO" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"KQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"KR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"KS" = ( +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"KT" = ( +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"La" = ( +/obj/effect/baseturf_helper/beach/sand, +/turf/closed/indestructible/rock, +/area/awaymission/caves/heretic_laboratory_clean) +"Lb" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/fake_items/time_stopper, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"Lc" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Le" = ( +/obj/structure/table, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Lf" = ( +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Lh" = ( +/turf/closed/indestructible/rock, +/area/awaymission/caves/heretic_laboratory_clean) +"Li" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "wheredahoodat" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Lj" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ln" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"Lo" = ( +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Lp" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Lv" = ( +/obj/structure/fluff/bus/passable, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"Lw" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Lx" = ( +/obj/machinery/mass_driver/feeder{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ly" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"LC" = ( +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"LE" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"LI" = ( +/obj/effect/turf_decal/tile/purple/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, +/area/awaymission/caves/heretic_laboratory) +"LL" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"LN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"LS" = ( +/obj/effect/spawner/random/trash/bin, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"LU" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/structure/bed/double, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Ma" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/security, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Mb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Md" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Mf" = ( +/obj/structure/fluff/tram_rail/end, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Mg" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/remains/robot, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Mh" = ( +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Mj" = ( +/obj/effect/turf_decal/trimline/red/line, +/turf/closed/wall/mineral/iron, +/area/awaymission/beach/heretic) +"Mk" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ml" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"Mn" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Mo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Mq" = ( +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Mr" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ms" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/sign/poster/contraband/donk_co/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Mt" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Mu" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Mw" = ( +/obj/item/stack/ore/uranium, +/turf/open/water/jungle, +/area/awaymission/beach/heretic) +"Mz" = ( +/obj/structure/bodycontainer/crematorium{ + dir = 4; + id = "crematoriumChapel" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"MB" = ( +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"MD" = ( +/obj/machinery/door/airlock/medical{ + name = "Surgery B" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"MH" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"MI" = ( +/obj/item/clothing/neck/stethoscope, +/obj/item/wrench, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ML" = ( +/obj/structure/bookcase/random, +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"MP" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"MR" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"MS" = ( +/obj/machinery/vending/donksnack, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"MT" = ( +/mob/living/basic/heretic_summon/stalker, +/obj/structure/flora/bush/fullgrass/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"MV" = ( +/turf/closed/indestructible/reinforced/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"MW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"MX" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"MY" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Na" = ( +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"Nb" = ( +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/door/airlock/security{ + name = "Armory" + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Nc" = ( +/obj/machinery/light/directional/east, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ne" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Ni" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Nj" = ( +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Nm" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/structure/chair/office/tactical{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Nn" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Np" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"Nq" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ns" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"Nt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Nu" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/double, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Nv" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Nz" = ( +/obj/effect/mob_spawn/corpse/human/skeleton/cultist, +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"NA" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"NB" = ( +/obj/effect/spawner/random/heretic_gateway, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"ND" = ( +/obj/structure/sign/poster/contraband/babel_device/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"NG" = ( +/obj/structure/safe/floor, +/obj/item/reagent_containers/cup/glass/bottle/beer, +/obj/item/reagent_containers/cup/glass/bottle/beer, +/obj/item/cigarette/rollie/cannabis, +/obj/item/cigarette/rollie/cannabis, +/obj/item/cigarette/rollie/cannabis, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"NI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/basic/migo, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"NO" = ( +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/obj/item/toy/plush/moth, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"NQ" = ( +/obj/structure/sink/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"NU" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"NW" = ( +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"NX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"NY" = ( +/obj/structure/table/optable, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"Oa" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Oc" = ( +/obj/structure/table/wood, +/obj/item/pen, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"Od" = ( +/obj/machinery/door/airlock/external/ruin, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Oe" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Of" = ( +/obj/structure/chair/wood, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"Og" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Oh" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/thermoplastic/light, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"Oi" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ok" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ol" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/neon, +/area/awaymission/caves/heretic_laboratory) +"Op" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/free_tonto/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Oq" = ( +/obj/item/seeds/organ_tree, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Or" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ot" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ow" = ( +/obj/structure/flora/grass/jungle/a/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Ox" = ( +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Oz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"OC" = ( +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/obj/structure/sign/poster/abductor/ayy_piping/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"OD" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"OG" = ( +/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/awaymission/caves/heretic_laboratory) +"OJ" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"OK" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"OL" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/mi13/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"OM" = ( +/obj/item/clothing/mask/gas/welding/up, +/obj/effect/decal/cleanable/blood/tracks/xeno, +/obj/item/organ/tail/xeno, +/obj/item/stack/sheet/animalhide/xeno, +/obj/item/stack/sheet/xenochitin, +/obj/effect/decal/cleanable/blood/gibs/xeno/larva/body, +/obj/effect/decal/remains/xeno, +/obj/effect/light_emitter, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"OP" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"OQ" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"OR" = ( +/obj/structure/table/wood, +/obj/structure/curtain/cloth, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"OS" = ( +/obj/effect/temp_visual/drawing_heretic_rune, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"OW" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"OY" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"OZ" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Pa" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Pb" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Pc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"Ph" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"Pj" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Pl" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Pp" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Pq" = ( +/obj/machinery/vending/sustenance, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Pw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Px" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Py" = ( +/turf/open/floor/carpet/blue, +/area/awaymission/beach/heretic) +"Pz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"PA" = ( +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"PC" = ( +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"PD" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"PE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/basic/faithless, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"PF" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"PG" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"PK" = ( +/obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"PL" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/effect/blessing/invisible, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"PN" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/west, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"PP" = ( +/obj/structure/flora/tree/palm/style_random, +/obj/structure/flora/coconuts, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"PT" = ( +/obj/machinery/light/floor, +/obj/structure/closet/crate/freezer, +/obj/item/organ/eyes/corrupt, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"PU" = ( +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"PV" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"PX" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"Qb" = ( +/obj/structure/safe/floor, +/obj/item/keycard/highsec_access, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Qd" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Qf" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Qh" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Qi" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/rd/double, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"Qj" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Qk" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 6 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"Ql" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Qm" = ( +/mob/living/basic/heretic_summon/ash_spirit, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Qn" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Qo" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/obj/structure/curtain/cloth/fancy/mechanical/start_closed, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Qr" = ( +/obj/effect/spawner/random/trash/bacteria, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Qt" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Qx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"Qz" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/energy/shrink_ray/one_shot, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"QA" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"QB" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 5 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"QE" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"QF" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"QG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"QI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"QK" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"QL" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"QM" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"QN" = ( +/obj/machinery/cryo_cell{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"QO" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 4 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"QP" = ( +/mob/living/basic/venus_human_trap, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"QW" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"QZ" = ( +/obj/machinery/door/airlock/highsecurity, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Ra" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Rb" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Re" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Rf" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Rl" = ( +/obj/structure/closet/cardboard, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Rn" = ( +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"Rp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Rq" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Rs" = ( +/obj/structure/flora/bush/jungle/a/style_random, +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 10 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Rt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ru" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Rv" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Rw" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 9 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Ry" = ( +/turf/open/lava, +/area/awaymission/caves/heretic_laboratory_clean) +"Rz" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"RA" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/magic/staff, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"RB" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"RE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"RH" = ( +/obj/item/fishing_rod, +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_containers/cup/glass/bottle/rum/aged, +/obj/effect/spawner/random/heretic_gateway, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"RI" = ( +/obj/structure/window/fulltile, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/awaymission/caves/heretic_laboratory) +"RM" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"RP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"RR" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/gibspawner/human/bodypartless, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"RS" = ( +/obj/machinery/shower/directional/east, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"RT" = ( +/obj/structure/table/wood/fancy, +/obj/item/knife/combat, +/obj/item/knife/hunting, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"RU" = ( +/obj/structure/sign/poster/official/safety_internals/directional/west, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"RW" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass/fifty{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stack/sheet/rglass/fifty{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"RY" = ( +/obj/structure/table, +/obj/effect/spawner/random/exotic/tool, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"RZ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Sb" = ( +/obj/machinery/camera/xray/directional/north, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Sc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/small/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Sd" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Sg" = ( +/obj/structure/rack, +/obj/machinery/light/directional/north, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/shovel, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Sh" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Si" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Sk" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/decal/remains/human, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Sl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Sm" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Sn" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/obj/structure/sign/poster/contraband/blood_geometer/directional/north, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Sq" = ( +/obj/item/keycard/heretic_entrance, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"Sr" = ( +/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/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"Ss" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/sign/poster/contraband/eistee/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"St" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Su" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Sv" = ( +/turf/closed/mineral/ash_rock, +/area/awaymission/caves/heretic_laboratory_clean) +"Sx" = ( +/obj/machinery/door/window/right/directional/south, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"SB" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"SC" = ( +/obj/structure/closet/cabinet, +/obj/item/sticker/pslime, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"SG" = ( +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"SI" = ( +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"SL" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "fronttire" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"SM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"SN" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"SP" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"SQ" = ( +/obj/item/paper/fluff/awaymissions/heretic/blackroomhint, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"SR" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ST" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"SW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"SX" = ( +/obj/structure/fluff/bus/passable, +/obj/item/reagent_containers/condiment/saltshaker, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"SY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"Tb" = ( +/obj/effect/light_emitter/fake_outdoors, +/turf/open/water/beach, +/area/awaymission/beach/heretic) +"Tc" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Td" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Te" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Tf" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ti" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Tk" = ( +/obj/structure/table, +/obj/item/clothing/gloves/combat{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/clothing/gloves/combat{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Tl" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Tm" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Tn" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Tp" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Tq" = ( +/obj/machinery/door/window/survival_pod/left/directional/east, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Ts" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"TA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"TB" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"TD" = ( +/mob/living/basic/construct/wraith, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"TF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"TG" = ( +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"TH" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/light/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/awaymission/caves/heretic_laboratory) +"TI" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"TJ" = ( +/obj/machinery/shower/directional/east, +/obj/structure/window/spawner/directional/north, +/obj/machinery/door/window/right/directional/east, +/obj/structure/curtain, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"TL" = ( +/obj/structure/chair/plastic, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"TM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"TN" = ( +/obj/structure/table, +/obj/item/paperwork/research, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"TO" = ( +/obj/effect/decal/remains/robot, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"TQ" = ( +/obj/machinery/door/puzzle/keycard/highsec_access, +/obj/machinery/conveyor/auto{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"TT" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "hoodtop" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"TV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory) +"TY" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ua" = ( +/turf/open/misc/beach/coast{ + dir = 8 + }, +/area/awaymission/caves/heretic_laboratory_clean) +"Uc" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Ug" = ( +/turf/open/misc/beach/coast/corner, +/area/awaymission/beach/heretic) +"Ui" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Uj" = ( +/obj/item/stack/sheet/plasteel/twenty, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Um" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/oneway{ + dir = 4 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"Un" = ( +/obj/effect/baseturf_helper/beach/sand, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Uo" = ( +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Up" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Uq" = ( +/obj/machinery/shower{ + pixel_y = 15 + }, +/obj/structure/curtain, +/turf/open/floor/iron/white, +/area/awaymission/beach/heretic) +"Ur" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/camera/xray/directional/north, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Uy" = ( +/obj/item/kirbyplants/fern, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"UA" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"UC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"UD" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"UE" = ( +/obj/structure/rack, +/obj/effect/spawner/random/armory/disablers, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"UF" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "e"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "r"; + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"UG" = ( +/obj/machinery/vending/modularpc, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"UK" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"UL" = ( +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"UN" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Telecomms" + }, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"UO" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"UQ" = ( +/obj/machinery/atmospherics/miner/oxygen, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"US" = ( +/obj/structure/closet/radiation, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"UT" = ( +/obj/machinery/power/shuttle_engine/propulsion/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"UV" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"UX" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"UY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/mob/living/basic/trooper/nanotrasen/ranged/smg/peaceful, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Vb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Ve" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Vh" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Vi" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Vj" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Vl" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Vn" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Vr" = ( +/obj/machinery/door/window/right/directional/north, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Vt" = ( +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"Vy" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Vz" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/xeno, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"VA" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"VB" = ( +/obj/structure/table, +/obj/item/radio{ + pixel_x = -4 + }, +/obj/item/radio, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"VC" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"VD" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix/inverse{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"VF" = ( +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"VG" = ( +/obj/structure/table, +/obj/item/fake_items/lahti_l39{ + pixel_x = 16 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"VI" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"VJ" = ( +/obj/structure/rack, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"VQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"VR" = ( +/obj/structure/fence, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"VT" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"VW" = ( +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"VX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"VY" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"VZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"Wa" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Wc" = ( +/obj/effect/decal/remains/human, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Wd" = ( +/turf/open/floor/iron/checker, +/area/awaymission/caves/heretic_laboratory) +"Wi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Wj" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Wk" = ( +/obj/item/bedsheet/black{ + dir = 4 + }, +/obj/structure/bed{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"Wl" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/clown/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Wn" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Wo" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Wr" = ( +/obj/effect/blessing/invisible, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ws" = ( +/obj/structure/fluff/beach_umbrella/science, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Ww" = ( +/obj/structure/table, +/obj/item/storage/toolbox/drone, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare{ + pixel_y = 6 + }, +/obj/item/flashlight/flare{ + pixel_y = 6 + }, +/obj/item/flashlight/flare{ + pixel_y = 6 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Wx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Wy" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Wz" = ( +/obj/effect/turf_decal/trimline/red/arrow_ccw, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack{ + pixel_y = 8; + pixel_x = -15; + anchored = 1; + name = "Sam Site Missle rack" + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"WA" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/access/all/service, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"WD" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"WF" = ( +/obj/structure/dresser, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"WJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"WK" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"WN" = ( +/obj/item/radio/intercom/mi13/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"WO" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"WP" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"WR" = ( +/obj/effect/decal/cleanable/rubble, +/obj/effect/decal/cleanable/plasma, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"WT" = ( +/obj/effect/spawner/random/trash, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"WU" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"WV" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"WY" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"WZ" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xa" = ( +/obj/structure/flora/bush/jungle/a/style_random, +/obj/effect/decal/cleanable/blood/tracks/xeno, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Xb" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Xc" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Xd" = ( +/obj/structure/falsewall, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Xg" = ( +/obj/structure/closet/secure_closet, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/neck/stethoscope, +/obj/item/stack/tile/iron/small, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Xh" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Xk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Xl" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xm" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Xn" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Xo" = ( +/obj/structure/table, +/obj/item/storage/medkit/toxin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/medkit/toxin, +/obj/item/storage/pill_bottle/multiver, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xq" = ( +/obj/item/wrench, +/obj/effect/light_emitter, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Xs" = ( +/obj/machinery/stasis{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Xu" = ( +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Xv" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Xx" = ( +/obj/machinery/shower/directional/south, +/obj/structure/curtain, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xy" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/radio/intercom/mi13/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"XB" = ( +/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/storage/pill_bottle/mannitol, +/obj/item/reagent_containers/dropper{ + pixel_y = 6 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"XC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"XI" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/camera/directional/east{ + network = list("ss13","medbay"); + c_tag = "Medical - Surgery B" + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 22; + pixel_y = -9 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"XL" = ( +/obj/machinery/door/window/survival_pod/left/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"XO" = ( +/obj/structure/sign/poster/contraband/beekind/directional/west, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"XQ" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/item/radio/intercom/mi13/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"XR" = ( +/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/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"XS" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"XU" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"XV" = ( +/obj/structure/fluff/bus/passable/seat/driver, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"XY" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/bed/double, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"XZ" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ya" = ( +/obj/structure/mop_bucket/janitorialcart, +/obj/item/reagent_containers/cup/bucket/wooden, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Yb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Yc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Yd" = ( +/obj/machinery/conveyor/auto{ + dir = 10 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ye" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Yh" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Yi" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Yj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"Ym" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/effect/blessing/invisible, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"Yn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"Yo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Yp" = ( +/obj/structure/table, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Yq" = ( +/obj/structure/closet/cabinet, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Yr" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/mop_bucket/janitorialcart, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Yt" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"Yu" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/ammo_box/magazine/lahtimagazine{ + anchored = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Yv" = ( +/turf/closed/wall/mineral/plastitanium{ + color = "#000000" + }, +/area/awaymission/caves/heretic_laboratory_clean) +"Yw" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Yx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Yy" = ( +/obj/structure/chair/comfy/shuttle/tactical, +/mob/living/basic/trooper/nanotrasen/ranged/smg/peaceful{ + name = "Man filled with fear"; + desc = "This man, has terror in his eyes, he stays deadset on the console and he is constantly twitching, he doesnt acknowledge you and he doesnt do anything besides sit there. This mans mind seems to be lost" + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"YA" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/medkit/regular, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"YG" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/fluff/tram_rail, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"YL" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/stack/sheet/rglass/fifty{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"YN" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"YO" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"YP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"YR" = ( +/obj/machinery/oven/range, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"YS" = ( +/obj/effect/landmark/transport/nav_beacon/tram/platform/heretic/right, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"YW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"YX" = ( +/obj/machinery/autolathe, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Za" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"Zb" = ( +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Zc" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Zd" = ( +/obj/effect/decal/cleanable/rubble, +/obj/structure/flora/rock/pile, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Zf" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/human, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Zg" = ( +/turf/open/misc/beach/coast{ + dir = 6 + }, +/area/awaymission/beach/heretic) +"Zi" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Zj" = ( +/obj/machinery/shower/directional/east, +/obj/item/soap, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"Zk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Zo" = ( +/obj/effect/gibspawner, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Zp" = ( +/mob/living/basic/slime/pet{ + name = "Gilbert"; + desc = "What a cute slime, they seem relieved to see you" + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"Zs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Zv" = ( +/obj/machinery/shower/directional/north, +/obj/structure/curtain, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Zw" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Zy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"ZD" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ZG" = ( +/obj/item/weldingtool/hugetank, +/obj/item/clothing/head/utility/welding, +/obj/item/wrench, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"ZH" = ( +/turf/open/misc/beach/coast, +/area/awaymission/beach/heretic) +"ZI" = ( +/obj/structure/falsewall, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ZK" = ( +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 8 + }, +/obj/item/radio/intercom/mi13/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ZL" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ZM" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"ZO" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ZP" = ( +/obj/effect/turf_decal/trimline/red/filled, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"ZQ" = ( +/obj/machinery/light/directional/east, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ZV" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"ZX" = ( +/obj/effect/decal/cleanable/blood/tracks{ + 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/awaymission/caves/heretic_laboratory) +"ZY" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"ZZ" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/effect/blessing/invisible, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) + +(1,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +"} +(2,1,1) = {" +Lh +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +La +Lh +"} +(3,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(4,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +oO +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +OC +yV +tN +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Eg +NO +gY +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(5,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +yb +yV +yV +yV +yV +yV +yV +wT +yV +tN +xl +JT +kF +gU +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +mE +mE +Mz +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(6,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +KB +KB +KB +KB +KB +KB +KB +xl +Mh +xl +nh +od +Yd +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +xQ +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(7,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +rA +yX +yX +yX +yX +yX +gy +IK +gy +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Ct +QG +QG +QG +Xd +cX +UX +du +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(8,1,1) = {" +Lh +Dj +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +nb +zh +YG +nb +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +ay +ay +ay +KB +xl +Mh +xl +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +ZI +KB +KB +KB +KB +Yr +yo +pf +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(9,1,1) = {" +Lh +Dj +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +ay +rF +ay +KB +wn +wh +wn +KB +Yi +GL +fW +fW +fW +ay +ay +ay +KB +lm +lm +Xk +lm +lm +lm +KB +KB +iJ +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(10,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +tR +EJ +tR +EJ +tR +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +KB +KB +KB +KB +wn +wh +wn +KB +Bf +fW +fW +fW +ay +ay +ay +ay +KB +lm +KQ +Rp +lv +Zi +lm +KB +nF +up +sk +KB +ov +up +sk +KB +ov +up +sk +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(11,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +tR +IJ +gK +gK +gK +HN +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +nb +zh +YG +nb +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +fW +Qd +nE +kg +KB +hJ +hJ +hJ +KB +lm +lO +Rp +jT +lm +lm +KB +XU +mY +Vj +KB +XU +mY +Vj +KB +XU +mY +Vj +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(12,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +pv +Gm +RH +wm +Fl +HN +tR +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +fW +qP +cL +aw +mq +xQ +xQ +xQ +KB +Zi +ay +Xk +lO +lm +lm +KB +Og +CI +mg +KB +Og +CI +mg +KB +Og +CI +mg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(13,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +tR +pv +PA +dd +Jy +os +ZH +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +ay +wz +cL +aw +mq +xQ +xQ +xQ +KB +lm +jT +Xk +KQ +lO +lm +KB +dU +Ck +Vj +KB +dU +Ck +Vj +KB +dU +Ck +Vj +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(14,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +pv +PA +nP +PA +PA +ZH +tR +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +nb +iL +Dk +nb +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +ay +wz +cL +aw +mq +xQ +xQ +xQ +KB +lm +Nc +Rp +Gb +lm +lm +KB +XI +uh +Dt +KB +XI +uh +Dt +KB +XI +uh +Dt +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(15,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +tR +pv +hB +PA +dd +PA +ZH +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +Fw +MP +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +Pj +KB +KB +KB +ZI +KB +KB +KB +KB +KB +MD +KB +KB +KB +MD +KB +KB +KB +MD +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(16,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +Dx +hk +dR +FM +PA +ZH +tR +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +Fw +ER +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +vs +cC +sD +sD +sD +id +wd +sg +qB +qB +qB +sg +qB +qB +qB +HW +yJ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(17,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +tR +EJ +Dx +hk +hk +Zg +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +nb +Oh +yu +nb +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(18,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +tR +EJ +tR +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +cz +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +lB +iz +RW +KB +hg +aL +sc +hg +KB +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +JU +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Km +Xu +Xu +Xu +Km +vS +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(19,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +TQ +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +Sv +KB +Cn +mo +aV +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +KB +gN +ye +CB +tA +CB +lo +ye +Yc +CB +Mo +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +Pj +KB +KB +KB +KB +KB +KB +KB +KB +DT +Xu +Xu +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(20,1,1) = {" +Lh +Dj +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Qr +WT +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +Sv +KB +jK +cL +VW +cL +jK +KB +Sv +KB +cw +As +YL +KB +nb +zh +YG +nb +KB +Sv +Sv +Sv +KB +eT +um +df +lE +lE +vY +Yt +um +NW +JO +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +hr +wz +bi +aw +mq +xQ +xQ +sN +KB +RS +vj +Kq +RS +Ye +Kq +KB +Xu +Xu +Xu +KB +if +Xu +if +Xu +if +vN +Md +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(21,1,1) = {" +Lh +Dj +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +WT +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +Sv +KB +IV +XL +IV +XL +IV +KB +Sv +KB +fK +mo +mo +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +KB +QF +um +lE +Vy +AO +aE +AO +vT +cq +rP +KB +xl +xl +xl +xl +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +BZ +ny +Xu +Xu +Xu +Xu +Xu +KB +Xu +Xu +Xu +KB +Gw +Vb +Vb +Vb +Vb +qG +Qj +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(22,1,1) = {" +Lh +Dj +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +Co +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +zk +zk +vu +vu +xa +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +Sv +KB +If +If +If +If +If +KB +Sv +KB +Fb +mo +mo +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +KB +QF +um +AO +AO +aE +aE +aE +aE +sj +JO +KB +bl +Ii +DN +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +BZ +nv +Xu +Dz +uM +Xu +yx +KB +bG +Xu +uI +KB +lA +Xu +Xu +Xu +Xu +Xu +XB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(23,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +cl +Ua +wO +mv +pa +Nz +mv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +wi +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +wi +PD +PD +PD +PD +PD +Lx +wi +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +wi +vu +vu +vu +xl +Sv +Sv +Sv +KB +Ol +If +If +If +Ol +KB +Sv +KB +EX +mo +mo +KB +nb +zh +YG +nb +KB +Sv +Sv +Sv +KB +QF +um +mV +AO +uq +AO +aE +aE +cq +JO +KB +Ii +wn +wn +Ka +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +xQ +BZ +nv +Xu +CJ +By +Xu +jx +KD +jx +Xu +Vj +OY +nv +Xu +Xu +Xu +Xu +Xu +EO +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(24,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +EI +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Ua +Ua +Ua +Ua +wO +FO +mv +Nz +mv +mv +pa +mv +mv +mv +mv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +KB +KB +KB +QZ +KB +KB +KB +KB +KB +KB +QZ +QZ +KB +KB +Um +II +KB +KB +KB +KB +KB +KB +yW +wt +AO +aE +aE +uW +aE +aE +Cv +lX +KB +wn +wn +wn +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +BZ +nv +Xu +wH +ho +Xu +FX +KB +iO +Xu +zs +KB +yJ +Xu +Xu +Xu +Xu +Xu +xv +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(25,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +jz +mv +mv +xl +Uj +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +KB +KB +KB +gt +KB +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +yK +kf +iR +mo +mo +aE +aE +Sl +aE +aE +AO +aE +aE +mV +aE +jj +aE +aE +Aq +KB +wn +wn +ji +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +BZ +yJ +Xu +Xu +Xu +Xu +Xu +KB +Xu +Xu +Xu +KB +Hr +Hr +Hr +Hr +Hr +Wi +Qj +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(26,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +Tb +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +mv +Nz +mv +mv +mv +Nz +mv +mv +mv +mv +Nz +mv +Nz +xl +ZG +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +uy +uy +uy +uy +Sr +jk +mX +VX +Gz +Gz +Gz +Gz +Gz +pp +ik +ik +to +to +ik +ik +kV +kV +kV +kV +kV +TF +Zy +jj +uq +aE +aE +uq +Yt +JO +KB +wn +TL +Oc +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +KB +CD +vt +Xs +CD +mF +Xs +KB +Xu +Xu +Xu +KB +EQ +Xu +QN +Xu +QN +vN +nN +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(27,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +Tb +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +pa +mv +mv +mv +mv +mv +jz +mv +mv +mv +mv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +uy +KB +KB +KB +KB +KB +KB +KB +zW +zW +KB +KB +KB +KB +FS +gm +to +gm +gm +ya +aE +aE +aE +aE +aE +um +Zy +Zy +Zy +ak +xY +zo +Ek +Fe +KB +wn +wn +AZ +Ka +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +Pj +KB +KB +KB +KB +KB +KB +KB +KB +DT +Xu +Xu +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(28,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +pa +mv +jz +mv +Nz +mv +mv +mv +mv +mv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +uy +Yj +Ku +Ae +Ae +Ae +JD +oP +Ae +GU +Ae +fE +cL +KB +OD +hQ +WU +hQ +hQ +At +KB +KB +KB +KB +Dc +um +Yt +aE +OS +fX +au +wY +um +JM +KB +wn +wn +wn +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Xu +Xu +Xu +Xu +Xu +QA +Xu +Xu +Xu +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(29,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +tR +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +pa +mv +mv +mv +mv +mv +mv +mv +mv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +JB +JB +ng +zV +VD +Nt +Nt +Nt +cO +GO +cL +fR +cL +KB +Cn +hQ +wE +gm +hQ +FW +KB +aF +Lo +KB +QF +um +um +sj +pY +Yt +qE +UF +pc +ZY +KB +wn +wn +wn +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(30,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +mv +mv +mv +mv +mv +mv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +KB +KB +DR +Cs +wP +aD +Rq +aD +wP +aD +UK +dC +et +KB +Cn +hQ +to +gm +hQ +FW +KB +Lf +Sd +KB +QW +gW +gW +xC +Bc +dl +HU +dl +yF +cF +KB +wn +wn +wn +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Km +Xu +Xu +Xu +Xu +Km +Xu +Xu +vS +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(31,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +TV +ip +Zs +cL +Pz +eQ +Zs +cL +Pz +cL +cP +KB +Cn +mo +to +gm +mo +FW +KB +Tq +Yp +KB +KB +KB +KB +KB +KB +oi +WD +oi +KB +KB +KB +KB +zl +KB +KB +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +Pj +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(32,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +nV +mC +Ry +Ry +Ry +Ry +Ry +Ry +aR +BE +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +TV +KB +Rt +Hl +Aw +KB +Rt +Hl +Ea +KB +KB +KB +mo +mo +ik +mo +mo +mo +KB +mo +mo +Ht +KB +bq +bq +bq +bq +bq +wC +bq +bq +bq +bq +bq +bq +bq +KB +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(33,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +wi +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +dS +wi +Ey +Ey +Ey +Ey +Ey +Ey +wi +Wo +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +wi +vu +vu +vu +xl +Sv +Sv +Sv +TV +KB +ql +ay +dm +KB +ql +ay +dm +KB +KB +KB +KB +KB +qm +Gk +KB +KB +KB +mo +mo +oW +KB +bq +bq +bq +bq +bq +wC +bq +bq +bq +bq +bq +bq +bq +KB +wn +wh +dk +KB +xQ +wz +cL +aw +mq +xQ +xQ +UX +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(34,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +hd +RT +Gs +KT +KT +SI +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +vu +vu +xl +Sv +Sv +Sv +TV +KB +ay +UQ +ay +KB +ay +dW +ay +KB +py +KB +Px +Fa +ik +mo +mo +mo +KB +KB +Xh +KB +KB +bq +bq +in +Gv +bq +oN +xS +El +bq +Gv +PN +bq +Br +KB +xl +Mh +xl +KB +Sh +wz +cL +aw +gq +xQ +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(35,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +Gu +KT +KT +KT +KT +rU +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +zk +vu +xl +Sv +Sv +Sv +TV +KB +KB +KB +KB +KB +KB +KB +KB +KB +ay +SB +tL +mo +ik +mo +mo +mo +mo +mo +mo +mo +Xh +bq +bq +Af +yO +bq +hX +xS +kH +bq +XS +kk +bq +bq +KB +xl +IK +xl +KB +KB +vb +BU +mN +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +gj +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(36,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +hK +KT +zO +KT +KT +im +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +vu +vu +xl +Sv +Sv +Sv +Fy +lu +lu +Sv +Sv +Sv +Sv +Sv +Sv +KB +Fk +KB +tL +ik +ik +mo +mo +mo +mo +mo +mo +mo +Xh +bq +bq +Af +yO +bq +Lc +xS +zS +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(37,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +zk +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +Gs +zT +Gs +KT +KT +KT +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +zk +vu +vu +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +tL +Et +KB +KB +KB +ix +Io +KB +KB +KB +KB +bq +bq +Af +yO +CA +Lc +xS +zS +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(38,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +KT +qU +Qk +rt +KT +KT +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +vu +vu +xl +Sv +xl +xl +xl +xl +xl +xl +xl +xl +KB +gB +Za +va +va +ty +bT +KJ +KB +lm +KB +DT +Xu +KB +Gi +iP +KB +mI +bq +Af +Gv +Wx +Lc +xS +zS +bq +Gv +kk +bq +Br +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(39,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +KT +KG +ie +XY +KT +SI +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +vu +vu +xl +Sv +xl +vu +vu +dI +iB +MH +vu +vu +KB +Qi +lD +Ic +uB +KB +tL +KJ +KB +lm +KB +Bm +vp +KB +qp +Hh +qv +bq +bq +Af +yO +bq +Lc +xS +zS +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(40,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +wi +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +kc +wi +nD +nD +nD +nD +nD +nD +wi +mC +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +wi +vu +vu +vu +xl +Sv +xl +vu +vu +Gd +Rf +jU +vu +vu +KB +KB +KB +KB +KB +KB +tL +KJ +KB +KB +KB +KB +KB +KB +KB +KB +KB +bq +bq +Af +yO +bq +Lc +xS +zS +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(41,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +OJ +Wo +Ry +Ry +Ry +Ry +Ry +Ry +dS +UD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +vu +vu +lW +LN +UC +vu +vu +KB +gB +Za +va +va +ty +bT +KJ +KB +uB +ju +xr +Ga +KB +Gi +iP +KB +mI +bq +Af +yO +bq +bH +xS +Hs +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(42,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +vu +vu +vu +vu +vu +vu +vu +KB +Qi +lD +Ic +uB +KB +tU +KJ +ty +va +va +Za +gB +KB +qp +Xu +qv +bq +bq +gv +Gv +bq +oN +xS +El +bq +Gv +PX +bq +Br +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(43,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +Or +Ka +Ka +Ka +Ka +Ka +Or +KB +KB +KB +KB +KB +KB +tL +KJ +KB +KB +KB +KB +KB +KB +KB +KB +KB +bq +bq +bq +bq +bq +wC +bq +bq +bq +bq +bq +bq +bq +KB +xl +IK +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(44,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +hs +hs +eq +TN +eq +hs +hs +KB +gB +xr +ju +uB +KB +tL +KJ +ty +va +va +Za +gB +KB +Gi +Xu +qv +bq +bq +xG +xG +xG +wC +CP +bq +bq +Gq +bq +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(45,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +hs +Pl +hs +hs +hs +Pl +hs +KB +Qi +Za +va +va +ty +bT +KJ +KB +uB +Ic +lD +Qi +KB +qp +iP +KB +KB +KB +Qn +KB +KB +Nq +KB +WA +KB +KB +pO +KB +KB +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(46,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +xl +xl +xl +Si +xl +xl +xl +KB +KB +KB +KB +KB +KB +mo +KJ +KB +KB +KB +KB +KB +KB +KB +KB +KB +he +xi +OG +KB +bq +wC +bq +bq +bq +yL +ay +ay +gx +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(47,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +Sv +xl +mo +Tn +Yh +LI +LI +TH +LI +LI +LI +ik +ik +KJ +Hp +OG +OG +OG +OG +Kd +OG +OG +OG +OG +OG +OG +KB +bq +wC +bq +bq +bq +KB +ba +ay +Ya +KB +xl +VF +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(48,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +Sv +xl +mo +TB +sK +Ru +TB +TB +TB +TB +TB +TB +TB +uc +KB +OG +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bq +wC +xS +bq +bq +xl +xl +xl +xl +xl +xl +hC +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(49,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +xl +xl +xl +bn +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +KB +OG +KB +Sv +Sv +KB +CV +Xy +Sx +Xv +Ss +Xv +Hl +CA +wC +xS +bq +bq +Az +hE +Bl +Nv +Vr +Yw +gb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(50,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +wi +Az +Az +Az +Az +Az +wi +PD +PD +PD +PD +PD +wi +Az +Az +Az +Az +wi +PD +PD +PD +PD +PD +wi +Az +Az +Az +Az +Az +wi +vu +vu +vu +xl +Sv +xl +Kb +rf +Kb +Kb +Kb +rf +Kb +xl +xl +Ib +ld +an +ld +Ib +xl +KB +OG +KB +Sv +Sv +KB +xW +WY +xW +SP +Xv +Xv +Hl +Wx +wC +xS +bq +bq +Az +hE +hE +AP +Bv +Yw +Yw +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(51,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +zk +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +xl +Kb +Kb +dr +ry +dr +Kb +Kb +xl +xl +Wa +Wa +Wa +Wa +sO +xl +KB +OG +KB +Sv +Sv +KB +aW +WY +xW +SP +Xv +Xv +oI +bq +wC +xS +bq +bq +vx +hE +hE +AP +Bv +Yw +Yw +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(52,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +zk +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +xl +WP +Ka +Ka +Ka +Ka +Ka +WP +xl +xl +qC +Wa +Wa +Wa +qC +xl +KB +Oz +KB +Sv +Sv +KB +mi +WY +xW +SP +Bj +Vi +KB +mI +wC +xS +bq +bq +xl +qA +ZV +AP +Bv +Yw +GH +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(53,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Rl +vq +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +xl +vk +vk +vk +vk +vk +vk +Wr +xl +xl +nd +nd +fp +nd +nd +xl +KB +OG +KB +Sv +Sv +KB +OQ +WY +xW +SP +kj +eJ +Ay +CQ +wC +RI +CQ +CQ +aq +Rb +Rb +Dr +de +zb +zb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(54,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +vu +vu +vu +vu +vu +vu +Ce +GC +Ti +vu +vu +vu +vu +vu +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +xl +vk +vk +vk +vk +vk +vk +vk +xl +FY +FY +FY +FY +FY +FY +FY +KB +OG +KB +Sv +Sv +KB +SN +WY +xW +SP +Xv +Xv +Hl +bq +wC +xS +bq +bq +Az +hE +hE +AP +Bv +Yw +zb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(55,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +GC +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Sv +xl +vk +vk +vk +gO +vk +vk +vk +xl +FY +FY +FY +kR +FY +FY +FY +KB +OG +KB +Sv +Sv +KB +JW +WY +JS +Xv +Xv +Xv +Hl +bq +wC +xS +bq +bq +Az +hE +Ms +KF +Bv +kz +zb +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(56,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +GC +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +xl +xl +xl +xl +fk +xl +xl +xl +fk +KB +OG +KB +KB +KB +KB +KB +Hj +KB +KB +KB +KB +KB +bq +wC +xS +bq +bq +xl +xl +xl +xl +xl +xl +aq +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(57,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +Hl +Hl +Hl +Hl +Hl +Xe +Hl +Hl +Hl +Hl +vu +vu +xl +Sv +Sv +KB +Cm +tS +tS +Nj +tS +tS +tS +tS +Ks +tS +tS +Nj +tS +tS +tS +KB +Sv +xl +WF +ss +hs +xl +WF +ss +hs +KB +OG +KB +Gi +Xu +IQ +KB +WY +WY +WY +WY +WY +KB +bq +wC +xS +bq +bq +xl +IS +YR +jy +jS +YN +fb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(58,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +HR +KB +KB +bA +bq +sr +sr +HF +Jg +UO +bA +KB +KB +HR +KB +KB +Sv +KB +tS +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +tS +KB +Sv +xl +hv +hs +hs +xl +hv +hs +hs +KB +OG +KB +qp +Km +Xu +Hn +WY +WY +iI +cT +nr +KB +bq +wC +xS +bq +bq +xl +we +we +we +we +SW +fb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(59,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +bq +bq +RU +KB +bq +kn +kn +kn +bP +kn +kn +bq +KB +RU +bq +bq +KB +Sv +KB +tS +lV +tS +tS +tS +tS +tS +tS +af +tS +tS +tS +tS +lV +tS +KB +Sv +xl +qO +hs +iF +xl +qO +hs +iF +KB +OG +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bq +Qh +HQ +bq +bq +xl +we +we +we +we +Il +fb +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(60,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +bq +bq +bq +KB +bq +bq +uS +bq +CQ +bq +bu +bq +KB +bq +bq +bq +KB +Sv +KB +tS +lV +tS +KB +KB +ci +ci +ci +ci +ci +KB +KB +tS +lV +tS +KB +Sv +xl +xl +am +xl +xl +xl +am +xl +KB +fo +OG +OG +OG +OG +OG +fW +fW +fW +fW +fW +qr +hp +bq +wC +bq +hp +xl +xD +mT +mO +pe +fz +fb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(61,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +mI +bq +bq +HR +bq +bq +bq +UY +CQ +ol +bq +bq +HR +bq +bq +Br +KB +Sv +KB +tS +lV +tS +KB +Fh +Nm +NU +Nm +WO +Nm +Fh +KB +tS +lV +tS +KB +Sv +Sv +xl +vu +xl +Sv +xl +vu +xl +KB +KB +KB +KB +KB +KB +OG +KB +KB +KB +KB +KB +KB +KB +KB +eg +KB +KB +xl +xl +xl +xl +xl +xl +eE +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(62,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +bq +bq +bq +KB +bq +hp +CP +bq +CQ +bq +hp +bq +KB +bq +bq +bq +KB +Sv +KB +tS +lV +tS +vr +WO +YO +Xn +Id +OL +Xn +Xn +Kg +lV +lV +tS +KB +Sv +Sv +xl +vu +xl +Sv +xl +vu +xl +Sv +Sv +Sv +Sv +Sv +KB +OG +KB +Sv +Sv +Sv +Sv +Sv +KB +vB +ZX +vB +KB +NQ +Rn +TJ +xl +td +rX +Hz +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(63,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +Dp +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Kg +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Kg +KB +KB +KB +KB +KB +PV +KB +KB +KB +PV +KB +KB +KB +KB +KB +KB +KB +OG +KB +Sv +Sv +Sv +Sv +Sv +KB +Xx +ZX +Zv +KB +Cp +JH +Rn +Fz +hs +gF +Hz +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +MV +MV +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(64,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +tS +lV +tS +tS +tS +tS +tS +tS +Ks +tS +tS +tS +tS +lV +tS +tS +tS +tS +tS +KB +tS +tS +tS +tS +tS +lV +tS +tS +tS +tS +tS +Ks +tS +tS +tS +tS +tS +tS +tS +tS +qL +qL +fI +OG +KB +Sv +Sv +Sv +Sv +Sv +KB +vO +ZX +Ra +KB +xl +xl +xl +xl +WF +dO +tc +pU +hI +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Sq +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +MV +MV +MV +MV +MV +MV +MV +MV +Lh +Lh +"} +(65,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +tS +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +tS +tS +tS +tS +tS +KB +tS +tS +tS +tS +tS +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +tS +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +KB +Xx +ZX +Zv +KB +lm +lm +lm +xl +hs +hs +hs +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +MV +MV +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(66,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +bJ +tS +tS +tS +CX +tS +af +tS +tS +CX +tS +tS +tS +tS +CX +tS +tS +tS +Cm +KB +Cm +tS +tS +CX +tS +tS +tS +CX +tS +tS +tS +aQ +tS +tS +tS +CX +tS +tS +tS +tS +lV +tS +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +vB +ZX +vB +KB +lm +lm +lm +xl +hs +ij +Nu +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(67,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +Dg +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +sF +sf +GP +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bJ +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +pP +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(68,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +dY +ML +dY +dY +ML +dY +Kb +Kb +Kb +rf +dr +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +KB +tS +lV +tS +KB +ID +BS +ls +Jb +Jb +bc +bc +bc +TM +uj +Yb +bc +bc +bc +Jb +Jb +cV +BS +FB +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(69,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +BW +lV +lV +tS +KB +eN +Wj +EZ +Wj +Wj +tl +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +CG +EZ +Vl +JR +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(70,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +dr +Kb +Kb +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +tS +lV +tS +KB +Xl +JR +Qm +fm +xT +Lp +AQ +Lp +iN +Ml +so +Lp +dp +Lp +xT +St +iD +eN +uQ +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(71,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +FY +bZ +xl +xl +xl +dY +dY +dY +Kb +pJ +dr +Kb +Kb +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +CU +gI +MB +KB +IP +XO +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +eN +Wj +Gy +Wj +Wj +tl +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +Ds +Gy +nQ +JR +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(72,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +zE +DC +CT +CT +ts +GF +xl +dr +Kb +Kb +Kb +Kb +Kb +Kb +Kb +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +yw +IP +KB +AT +Jf +ob +KB +IP +Qz +IP +KB +IP +uN +IP +KB +tS +lV +tS +KB +WZ +Gt +Gt +Gt +Gt +Ia +Ia +Ia +TM +Ml +Yb +Ia +Ia +Ia +Gt +Gt +Gt +Gt +rx +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(73,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +CT +CT +CT +CT +CT +GF +xl +dY +AG +dY +Kb +Kb +Kb +Uo +dr +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +ze +Bq +BX +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +AC +Ml +eS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(74,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +zE +zE +CT +CT +CT +GF +xl +xl +xl +xl +pb +pb +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +yg +fw +yg +KB +FU +PG +FU +KB +yg +fw +yg +KB +rK +DJ +rK +KB +bJ +lV +tS +KB +ID +BS +ls +Jb +Jb +bc +bc +bc +TM +Ml +Yb +tl +tl +tl +Wj +Wj +Pq +pW +FB +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(75,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +iU +br +xI +CT +CT +Di +xl +xl +vf +dw +VA +VA +dw +vf +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +jW +jW +jW +CZ +AI +wI +AI +nw +jW +jc +jW +lJ +Ox +Ox +Ox +KB +tS +lV +tS +KB +eN +Wj +EZ +Wj +Wj +tl +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +Wj +EZ +Wj +JR +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(76,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +CT +op +LU +WN +TG +qe +xl +xl +VA +VA +VA +VA +VA +VA +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +tS +tS +tS +tS +tS +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +fA +lV +lV +tS +KB +Xl +JR +IG +fm +xT +Lp +AQ +Lp +iN +Ml +so +Lp +dp +Lp +xT +St +Cx +eN +uQ +KB +Sv +KB +wz +cL +aw +Yv +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(77,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +xl +VA +yd +VG +kO +eW +VA +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +UV +UV +UV +OZ +UV +UV +UV +ih +oL +sU +oL +Ly +oL +oL +oL +KB +tS +lV +tS +KB +eN +Wj +Gy +Wj +Wj +tl +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +Wj +Gy +Wj +JR +KB +Sv +KB +wz +cL +aw +sd +SQ +Jv +tY +qg +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(78,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +VA +yd +Le +eW +eW +Gp +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +yg +fw +yg +KB +xx +xk +xx +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +tS +lV +tS +KB +WZ +Gt +Gt +Gt +Gt +Ia +Ia +Ia +TM +Ml +Yb +Ia +Ia +Ia +Gt +Gt +Gt +Gt +rx +KB +Sv +KB +wz +cL +aw +Yv +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(79,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +mJ +Yu +Le +eW +Hc +GZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +QE +Ml +eS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(80,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +hD +IP +KB +IP +uX +IP +KB +IP +GN +IP +KB +IP +kK +IP +KB +tS +lV +tS +KB +RB +FD +xb +be +be +Fm +Fm +Fm +TM +Ml +Yb +tl +tl +tl +NA +NA +aa +sZ +Tc +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(81,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +Jz +cK +ua +bt +Wj +lH +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +Wj +qV +Wj +Wj +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(82,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bJ +lV +tS +KB +za +Rv +gJ +gJ +fM +gS +wX +gS +Yx +DU +so +Lp +dp +Lp +xT +lK +cj +RZ +pL +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(83,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +Jz +fV +DB +ja +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +tl +Wj +Wj +dL +Wj +Wj +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(84,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +uy +KB +IP +Fu +IP +KB +IP +RA +IP +KB +IP +Lb +IP +KB +IP +fH +IP +KB +TA +lV +tS +KB +GY +dD +dD +dD +dD +Eb +qb +qb +TM +Pc +Yb +tl +tl +tl +MY +MY +MY +MY +bv +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(85,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +uy +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Jo +Pc +mL +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(86,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +dA +KB +KB +ep +lC +ep +KB +ep +lC +ep +KB +sM +Mt +sM +KB +rK +DJ +rK +KB +tS +lV +tS +KB +wy +oD +oD +oD +oD +oD +oD +Wj +XC +Pc +Wj +Fn +wq +xj +Op +Zw +MS +db +UG +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(87,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +CQ +KB +Tf +AI +AI +AI +xO +DG +DG +DG +yM +AI +RP +AI +qY +DY +DY +DY +KB +tS +lV +tS +KB +In +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Pc +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Wj +IZ +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(88,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +cI +wl +dG +ai +xM +tB +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +lV +lV +lV +lV +lV +lV +fA +lV +lV +tS +tB +In +Wj +ZZ +PL +PL +PL +Ym +Wj +Wj +Pc +HC +HC +HC +HC +HC +HC +HC +Wj +Uy +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(89,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +KB +KB +Ir +KB +Lj +xm +xm +xm +Er +UV +UV +UV +Vh +QL +MW +QL +wD +QL +QL +QL +KB +tS +lV +tS +KB +In +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Pc +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Wj +IZ +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(90,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +KB +KB +KB +KB +xx +ZL +xx +KB +xx +xk +xx +KB +ep +Mt +ep +KB +sM +Nn +sM +KB +tS +lV +tS +KB +Mk +Pb +Pb +Pb +Pb +Pb +Pb +Wj +aC +Pc +Wj +aB +XQ +JX +Wl +gX +SG +fq +jO +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(91,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +MX +Pc +FH +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +Dj +"} +(92,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +uE +IP +KB +IP +dy +IP +KB +IP +Hv +IP +KB +IP +Hv +IP +KB +Ik +lV +tS +KB +pu +Hq +nz +Ot +Ot +gh +gh +gh +TM +Pc +Yb +Fm +Fm +Gf +be +be +xb +FD +cN +KB +Sv +KB +wz +cL +aw +xl +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +xl +bB +bB +bB +CS +CS +vK +CS +Iz +Dj +Dj +"} +(93,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +TY +Wj +az +xQ +xQ +tl +tl +tl +TM +Pc +Yb +tl +tl +lH +Wj +Wj +BN +Wj +Ts +KB +Sv +KB +wz +cL +aw +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +bB +bB +CS +CS +CS +CS +CS +jo +zK +Dj +Dj +"} +(94,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bJ +lV +tS +KB +Ui +Ok +rS +yN +xT +Lp +AQ +Lp +iN +Pc +XR +Lp +AQ +Lp +xT +Bx +lx +Jz +FC +KB +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +CS +CS +CS +CS +CS +CS +CS +SM +rG +Dj +Dj +"} +(95,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +Sn +xQ +kE +Wj +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +lH +Wj +Wj +yI +Wj +Ts +KB +Sv +KB +vb +BU +mN +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +MV +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +CS +CS +CS +CS +CS +CS +CS +CS +vK +zr +WR +Dj +Dj +"} +(96,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +GT +IP +KB +IP +me +IP +KB +IP +me +IP +KB +IP +me +IP +KB +tS +lV +tS +KB +Qt +VY +VY +VY +VY +ni +ni +ni +TM +Pc +Yb +qb +qb +Eb +dD +dD +dD +dD +lY +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +MV +MV +MV +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +lz +CS +uf +Dj +Dj +"} +(97,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +AC +Pc +eS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +vK +FQ +WR +Dj +Dj +"} +(98,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +rK +eo +rK +KB +rK +DJ +rK +KB +tS +lV +tS +KB +RB +FD +xb +be +be +Fm +Fm +Fm +TM +Pc +Yb +Fm +Fm +Fm +be +be +xb +FD +cN +KB +Sv +KB +wz +cL +aw +Es +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +SM +pC +Zd +Dj +Dj +"} +(99,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +Ox +Ox +Ox +Ox +Ox +Ox +Ox +ZK +Ox +qc +Ox +Ox +Ox +Ox +Ox +KB +tS +lV +tS +KB +Jz +Wj +BN +Wj +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +tl +Wj +Wj +BN +Wj +Ts +KB +Sv +KB +zF +cL +JG +ev +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +bB +bB +Lh +Lh +Lh +Lh +Lh +Lh +Dj +Dj +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +vK +uK +zK +Dj +Dj +"} +(100,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +tS +tS +tS +tS +tS +tS +tS +tS +tS +lV +lV +lV +lV +lV +lV +fA +lV +lV +tS +KB +za +Ts +TD +JQ +xT +Lp +AQ +FZ +iN +Pc +so +Lp +AQ +Lp +xT +Bx +dj +Jz +FC +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Lh +Lh +Lh +bB +bB +bB +bB +bB +bB +nT +LE +bB +bB +bB +Lh +Lh +Lh +Lh +Dj +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +vK +rG +Dj +Dj +"} +(101,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +oL +oL +oL +Ly +oL +oL +oL +Ly +oL +sU +oL +Ly +oL +oL +oL +KB +tS +tS +tS +KB +Jz +Wj +yI +Wj +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +tl +Wj +Wj +yI +Wj +Ts +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +fF +mo +mo +mo +mo +ew +mo +mo +KB +Ag +SC +KB +Ag +HX +KB +Ag +HX +KB +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +bB +Am +LE +nT +nT +Am +nT +HM +bB +bB +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +bB +Dj +"} +(102,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +bJ +tS +tS +KB +GY +dD +dD +dD +dD +qb +qb +qb +TM +Pc +Yb +qb +qb +qb +dD +dD +dD +dD +lY +KB +Sv +KB +wz +cL +aw +Es +xQ +xQ +fF +mo +mo +mo +Jt +mo +mo +mo +KB +pd +tM +KB +pd +tM +KB +pd +tM +KB +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +bB +bB +bB +nT +LE +nT +nT +LE +nT +LE +Am +LE +bB +bB +bB +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(103,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +mH +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +AC +Pc +eS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +zF +cL +JG +ev +xQ +xQ +KB +KB +Ma +KB +KB +KB +Js +mo +KB +LL +Hb +KB +LL +Zp +KB +LL +Hb +KB +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +nT +nT +nT +nT +nT +nT +te +te +te +te +bN +bN +te +te +te +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(104,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ia +KB +Sv +Sv +Sv +Sv +KB +IP +PT +IP +KB +IP +me +IP +KB +IP +me +IP +KB +IP +me +IP +KB +Sv +Sv +Sv +KB +RB +FD +xb +be +be +Fm +Fm +Fm +TM +Pc +Yb +Fm +Fm +Fm +be +be +xb +FD +cN +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +ay +ay +ay +pQ +KB +mo +mo +KB +KB +uJ +KB +KB +uJ +KB +KB +uJ +KB +Lh +Lh +Lh +bB +bB +bB +bB +bB +bB +nT +nT +nT +HM +nT +nT +nT +te +mt +Mq +te +eK +QM +te +Mq +mt +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(105,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ia +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +Sv +Sv +Sv +KB +Jz +Wj +BN +Wj +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +tl +Wj +Wj +BN +Wj +Ts +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +ay +ay +ay +ay +KB +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +KB +Lh +Lh +Lh +bB +te +te +te +te +te +hM +te +te +te +nT +nT +nT +te +Ne +KS +aO +PC +PC +aO +KS +sp +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(106,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ia +KB +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +KB +za +Ts +PE +JQ +xT +Lp +AQ +Lp +iN +Pc +so +Lp +AQ +Lp +xT +Bx +NI +Jz +FC +KB +Sv +KB +wz +cL +aw +Es +xQ +xQ +KB +ba +ay +ay +ay +KB +mo +mo +Jt +mo +mo +Jt +np +mo +Jt +mo +mo +KB +Lh +Lh +Lh +bB +te +kD +xe +kD +kD +xs +oC +rN +te +te +nT +nT +te +mu +lL +te +PC +PC +te +lL +mu +te +Sv +bB +CS +FP +CS +FP +CS +FP +CS +FP +CS +FP +CS +FP +CS +bB +Lh +Lh +"} +(107,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +AJ +Gi +KB +AJ +Gi +KB +Sv +Sv +Sv +Sv +Sv +Sv +KB +Jz +Wj +yI +Wj +Wj +tl +tl +tl +TM +iQ +Yb +tl +tl +tl +Wj +Wj +yI +Wj +Ts +KB +Sv +KB +zF +cL +JG +ev +xQ +UX +KB +jP +jP +jP +jP +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Lh +Lh +bB +bB +te +kD +kD +fg +ce +rR +fu +yD +sb +hb +nT +nT +te +te +te +te +PC +tQ +te +te +te +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(108,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Km +Xu +KB +Ve +Km +KB +Sv +Sv +Sv +Sv +Sv +Sv +KB +GY +dD +dD +dD +dD +qb +qb +qb +TM +oQ +Yb +qb +qb +qb +dD +dD +dD +dD +lY +KB +Sv +KB +kd +ga +QO +gd +xQ +xQ +KB +ay +ay +ay +ay +KB +aA +JY +KR +KR +KB +ay +ay +ay +ay +ay +kX +KB +Lh +bB +bB +nT +sA +kD +qT +fg +xs +rN +el +VJ +hF +hb +nT +nT +Am +te +AM +gp +PC +PC +oS +om +te +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(109,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +qv +KB +wa +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +HL +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +il +Kp +ug +gd +xQ +xQ +KB +KB +xJ +xJ +KB +KB +qM +mo +mo +mo +KB +KB +KB +KB +KB +KB +KB +KB +Lh +bB +nT +nT +te +Bg +Ez +ck +yQ +rN +el +rN +hF +hb +nT +nT +nT +te +yG +gp +PC +PC +oS +IA +te +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(110,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +vp +Xu +vs +qK +Xu +Xu +tS +tS +Nj +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +qL +tS +tS +tS +tS +tS +tS +tS +tS +tS +KB +Sv +KB +il +vF +ug +Es +xQ +xQ +fx +Wd +Wd +Wd +Wd +RM +Gj +mo +mo +mo +RM +ay +ay +tZ +ay +ay +KB +Lh +Lh +bB +nT +nT +te +rN +YX +nj +Hk +rN +el +rN +hF +hb +nT +nT +te +te +te +te +eh +PC +te +te +te +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(111,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Iv +qK +qK +qK +qK +qK +HJ +HJ +HJ +HJ +HJ +HJ +GE +HJ +HJ +qL +lt +qL +qL +qL +lt +qL +qL +qL +lt +qL +qL +qL +lt +qL +qL +qL +KB +Sv +KB +VC +UL +Fr +ev +ul +xQ +fx +Wd +Wd +Wd +Wd +RM +Gj +mo +mo +mo +RM +ay +ay +ay +ay +ay +KB +Lh +Lh +bB +HM +LE +te +Ur +GJ +GJ +ri +AS +sa +ek +rl +hb +nT +nT +te +mt +Mq +te +PC +PC +te +Mq +mt +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(112,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +wa +KB +wa +KB +KB +Wn +Wn +Nb +Wn +Wn +Wn +KB +KB +KB +PU +KB +KB +KB +PU +KB +KB +KB +PU +KB +KB +KB +PU +KB +KB +KB +PU +KB +Sv +KB +pt +iS +uH +gw +xQ +xQ +KB +KB +pi +pi +KB +KB +Yo +mo +mo +mo +KB +KB +KB +KB +ay +IL +KB +Lh +Lh +bB +Am +nT +te +te +MR +MR +lZ +xs +rN +rN +te +te +nT +nT +te +Ne +KS +aO +PC +PC +aO +KS +sp +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(113,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +AB +qK +KB +qK +vs +KB +Up +Vn +Vn +Vn +Vn +ZD +KB +nG +vn +xG +KB +nG +vn +xG +KB +nG +Yq +xG +KB +nG +Yq +xG +KB +nG +Yq +xG +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +ew +JK +xo +mo +KB +aA +Su +KR +KR +KB +SR +Kj +KB +ay +ay +KB +Lh +Lh +bB +nT +nT +HM +te +Sg +Ky +hF +vy +GJ +DX +te +nT +nT +nT +te +mu +lL +te +PC +PC +te +lL +mu +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(114,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Pw +tX +KB +Pw +tX +KB +al +Vn +Vn +Vn +Vn +Vn +KB +mI +Wx +vm +KB +mI +Wx +vm +KB +mI +Wx +vm +KB +mI +Wx +vm +KB +mI +Wx +vm +KB +Sv +KB +wz +cL +aw +Es +xQ +xQ +KB +Js +mo +Oa +mo +KB +KB +KB +KB +KB +KB +ay +ay +KB +ay +ay +KB +Lh +Lh +bB +LE +Am +LE +te +hb +hb +oc +kW +hb +hb +te +nT +nT +nT +te +te +te +te +PC +PC +te +te +te +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(115,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +Vn +Vn +Vn +Vn +Vn +Vn +KB +Df +fB +Jn +KB +Df +iH +El +KB +Df +iH +uR +KB +Df +Xg +NG +KB +Df +iH +El +KB +Sv +KB +zF +cL +JG +ev +xQ +xQ +KB +mo +mo +mo +mo +KB +Zj +mS +KB +mo +KB +ay +pN +KB +RM +RM +KB +Sv +Sv +bB +nT +nT +nT +nT +nT +nT +un +tJ +nT +nT +nT +nT +nT +nT +nT +nT +dX +te +PC +PC +KE +jQ +eB +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(116,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +FR +vv +ZQ +oz +UE +UE +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +mo +mo +mo +mo +KB +ut +jZ +js +mo +UN +ay +hU +KB +tb +KT +Qx +Qx +gQ +RE +vL +vL +vL +vL +vL +vL +PC +PC +vL +vL +vL +vL +vL +vL +vL +vL +vL +fh +PC +PC +Rz +wR +Ns +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(117,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +KB +jg +KB +KB +KB +KB +KB +KB +mo +KB +KB +KB +KB +ws +YW +iW +YW +gs +YP +NX +NX +NX +NX +NX +NX +NX +NX +NX +NX +NX +PC +PC +NX +NX +NX +NX +fh +PC +PC +Rz +jQ +jQ +te +Sv +bB +CS +aM +Fs +Lv +pX +CS +CS +aM +Fs +Lv +pX +CS +CS +bB +Lh +Lh +"} +(118,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +Es +xQ +xQ +do +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +KB +Sv +rh +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +un +tJ +nT +nT +nT +nT +te +PC +PC +te +rc +te +te +Sv +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(119,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Pp +Mb +Mb +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +yS +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +zF +cL +JG +ev +xQ +xQ +do +mo +mo +mo +mo +ND +mo +mo +mo +mo +mo +mo +KB +Sv +Sv +Sv +bB +bB +bB +bB +by +by +by +by +by +by +by +by +by +by +dP +un +tJ +nT +nT +HM +te +te +PC +PC +qu +WJ +fJ +te +bB +bB +CS +aM +po +Lv +xn +CS +CS +aM +po +Lv +xn +CS +CS +bB +Lh +Lh +"} +(120,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +KB +KB +KB +KB +KB +Hl +Hl +ZO +ZO +Hl +Hl +KB +Lh +Lh +bB +bB +zI +xB +xB +xB +zI +xB +xB +xB +zI +xB +xB +xB +zI +Ql +un +tJ +nT +nT +te +te +Hx +Hx +Hx +Hx +VZ +DL +tq +HM +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(121,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +Sv +Sv +Sv +Sv +KB +cy +xQ +xQ +xQ +xQ +Xo +KB +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +te +DL +DL +DL +DL +DL +DL +QK +tq +Am +Ql +CS +aM +hf +Lv +Fx +CS +CS +aM +hf +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(122,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +Es +xQ +xQ +KB +Sv +Sv +Sv +Sv +KB +YA +xQ +xQ +xQ +xQ +Tk +KB +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +gA +DL +DL +DL +DL +DL +DL +DL +tq +LE +Ql +CS +aM +po +SX +zZ +CS +CS +aM +po +SX +zZ +CS +CS +bB +Lh +Lh +"} +(123,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +vb +BU +mN +KB +KB +KB +KB +KB +KB +KB +KB +KB +sJ +OK +VB +Lw +RY +Ww +KB +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +fL +DL +DL +DL +DL +DL +as +te +te +nT +Ql +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(124,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +Lh +Lh +bB +Ql +zI +xB +xB +UT +UT +UT +UT +UT +UT +UT +xB +xB +zI +Ql +un +tJ +nT +te +te +DL +QK +QK +QK +DL +te +te +nT +LE +Ql +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(125,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +Sm +Bi +Bi +PF +Bi +Bi +Sm +xB +xB +xB +Ql +un +tJ +nT +nT +te +tq +tq +tq +tq +tq +te +nT +LE +Am +Ql +CS +aM +XV +Bs +ig +CS +CS +aM +XV +Bs +ig +CS +CS +bB +Lh +Lh +"} +(126,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +wf +wf +wf +bb +EH +gT +wf +wf +wf +xB +xB +Ql +un +tJ +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +Ql +CS +Li +TT +Ap +SL +CS +CS +Li +TT +Ap +SL +CS +CS +bB +Lh +Lh +"} +(127,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +zF +cL +JG +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +wf +wF +gC +wf +Ph +wf +gC +GD +wf +xB +xB +Ql +un +tJ +PC +PC +PC +PC +PC +PC +PC +PC +PC +PC +PC +nT +mj +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(128,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +zI +xB +iu +wF +se +wf +PK +wf +se +Kl +wf +xB +zI +Ql +un +tJ +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +Ql +CS +aM +Fs +Lv +pX +CS +CS +aM +Fs +Lv +pX +CS +CS +bB +Lh +Lh +"} +(129,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +wf +wf +Ln +wf +BV +wf +Ln +wf +wf +xB +xB +Ql +un +tJ +nT +te +te +xu +xu +xu +te +te +te +LE +nT +LE +Ql +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(130,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +bB +bB +Ql +xB +xB +xB +wf +aK +se +BV +se +Jw +wf +xB +xB +xB +mj +un +tJ +nT +te +Sc +Of +QK +pm +tg +yj +te +nT +Am +nT +Ql +CS +aM +po +Lv +xn +CS +CS +aM +po +Lv +xn +CS +CS +bB +Lh +Lh +"} +(131,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +zF +cL +JG +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +bB +Sb +Ql +xB +xB +xB +wf +OP +BV +BV +BV +hL +wf +xB +xB +xB +Ql +un +tJ +nT +te +tJ +DL +DL +DL +un +Du +xu +LE +nT +HM +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(132,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +bB +bB +Ql +zI +xB +xB +Od +se +BV +Be +BV +BV +Od +xB +xB +zI +Ql +un +PC +vR +Ie +OW +vL +vL +vL +Tl +ct +xu +nT +nT +LE +bB +CS +aM +hf +Lv +Fx +CS +CS +aM +hf +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(133,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +eY +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +wf +OP +BV +BV +BV +hL +wf +xB +xB +xB +Ql +un +tJ +nT +te +AL +PC +QM +Xb +ps +sy +te +Am +nT +bB +bB +CS +aM +po +SX +zZ +CS +CS +aM +po +SX +zZ +CS +CS +bB +Lh +Lh +"} +(134,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +oF +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +wf +aK +se +BV +se +Jw +wf +xB +xB +xB +Ql +un +tJ +nT +te +PC +PC +pn +te +te +te +te +nT +bB +bB +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(135,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +rM +AR +hG +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +zF +cL +JG +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +wf +wf +pF +rB +mZ +wf +wf +xB +xB +xB +Ql +un +tJ +nT +te +PC +PC +Tm +te +Uq +qW +te +LE +bB +Sv +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(136,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +Py +Py +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +zI +xB +xB +xB +wf +Qo +yk +Qo +wf +yc +xB +xB +zI +Ql +un +tJ +dX +te +PC +PC +PC +Ie +tr +mc +te +nT +bB +Lh +bB +CS +aM +XV +Bs +ig +CS +CS +aM +XV +Bs +ig +CS +CS +bB +Lh +Lh +"} +(137,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +lh +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +AD +ay +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +PC +tQ +te +te +te +te +te +bB +bB +Lh +bB +CS +Li +TT +Ap +SL +CS +CS +Li +TT +Ap +SL +CS +CS +bB +Lh +Lh +"} +(138,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +hG +PA +Ws +Ij +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +HM +te +NX +sS +te +mu +Ac +uO +te +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(139,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +ue +DL +DL +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +zF +cL +JG +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +fL +un +te +Im +Ni +iC +te +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(140,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +zI +xB +xB +xB +zI +xB +xB +xB +zI +xB +xB +xB +zI +Ql +un +tJ +nT +te +nO +un +Ie +PC +xF +mt +te +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(141,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Jq +by +by +by +by +by +by +by +by +by +by +by +by +by +Jq +un +tJ +nT +te +te +te +te +te +te +te +te +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(142,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +xd +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +bB +bB +bB +bB +bB +bB +nT +Am +LE +nT +nT +LE +PC +Re +Re +NX +Ja +nT +nT +nT +nT +LE +nT +bB +bB +bB +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(143,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +zF +xd +JG +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +bB +bB +MT +nT +LE +nT +nT +LE +nT +nT +hc +nT +nT +nT +nT +nT +LE +nT +Am +nT +nT +bB +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(144,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +hG +ue +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +xd +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +bB +te +te +te +te +te +te +te +te +te +QI +te +te +te +Am +nT +nT +nT +nT +nT +bB +bB +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(145,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +xd +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +bB +te +UA +fL +un +PC +PC +PC +PC +lj +Ax +NX +bf +te +nT +nT +nT +LE +nT +LE +bB +Lh +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(146,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +wz +xd +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +bB +te +vL +vL +aP +Xc +PC +PC +PC +PC +tJ +DL +nM +xu +nT +nT +HM +nT +Am +nT +bB +Lh +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(147,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +vb +jq +mN +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +bB +te +QI +te +te +te +PC +Tm +zv +QM +tJ +DL +QK +xu +nT +nT +nT +LE +nT +nT +bB +Lh +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(148,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Yn +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Gg +wz +Pa +aw +Gg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +bB +te +PC +hu +mu +te +QI +te +te +VI +tJ +DL +rC +xu +nT +LE +nT +Am +nT +nT +bB +Lh +Lh +Lh +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(149,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +te +te +te +te +te +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +uz +uz +IB +uz +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +ay +wz +iZ +aw +ay +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +bB +te +uu +Zc +KS +te +wc +Ko +te +Du +OW +vL +Cz +te +nT +nT +nT +nT +nT +bB +bB +Lh +Lh +Lh +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(150,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Uc +te +te +PC +PC +te +te +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +uz +uz +fP +HH +DZ +US +uz +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +wz +xd +aw +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +bB +te +mt +lL +Em +te +kG +FT +te +sy +PC +yp +eK +te +LE +nT +nT +nT +LE +bB +Lh +Lh +Lh +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(151,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +wu +hV +PC +PC +PC +ru +te +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +mM +mM +mM +ah +gg +DZ +HH +yz +uz +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +te +te +te +te +te +te +te +te +te +xu +xu +te +te +nT +nT +LE +nT +bB +bB +Lh +Lh +Lh +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(152,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +wu +OR +PC +PC +PC +mm +te +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +mM +mM +mM +mM +mM +Mw +mM +Mw +mM +mM +HH +AK +Np +mM +uz +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +LE +nT +Am +nT +Am +HM +bB +bB +bB +Lh +Lh +Lh +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(153,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +bB +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +ue +PA +PA +PA +PA +wu +OR +PC +PC +PC +yp +te +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +HH +ko +HH +mM +Mw +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +bB +bB +bB +bB +bB +bB +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(154,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +bB +bB +Sv +bB +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PP +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +wu +OR +PC +PC +PC +te +te +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Ow +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Mw +HH +mM +mM +mM +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +wz +xd +aw +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(155,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +bB +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +wu +OR +PC +PC +PC +te +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +nT +nT +fZ +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +bB +bB +bB +Sv +Sv +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(156,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +wu +te +OR +OR +OR +te +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +Ow +nT +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Mw +mM +mM +mM +mM +mM +bB +bB +Sv +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(157,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PP +PA +Qf +oj +oj +oj +oj +CW +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +nT +FG +us +nT +Go +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +Mw +mM +mM +mM +mM +mM +mM +mM +mM +Cf +nT +bB +bB +Sv +Sv +KB +ay +ay +wz +xd +aw +JN +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Ci +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(158,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +ey +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +uT +uT +oo +oo +oo +oo +oo +oo +kI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +Ow +nT +na +nT +nT +FG +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +Go +nT +bB +Sv +Sv +KB +ay +rF +wz +xd +aw +pg +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(159,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +SY +hY +hY +hY +hY +xl +xl +xl +uV +xl +xl +xl +xl +hY +xl +xl +uV +xl +xl +xl +BY +xH +xH +ZP +iw +hY +hY +oo +oo +kI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +fZ +nT +Go +nT +nT +na +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mW +nT +fZ +bB +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(160,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +pB +hY +hY +hY +hY +xl +Kx +jG +vu +sq +Tp +Tp +xl +hY +xl +yE +IP +IP +kw +ZM +BY +hY +hY +ao +GR +hY +hY +hY +hY +hY +kI +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +EJ +JE +EJ +EJ +JE +EJ +EJ +JE +EJ +EJ +JE +pv +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +EF +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +FG +na +nT +nT +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +nT +nT +nT +bB +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(161,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EP +hY +hY +hY +xl +nL +vu +gi +vu +vu +pr +xl +md +xl +cs +IP +IP +Yy +KO +BY +hY +hY +Gh +Mj +hY +hY +hY +hY +hY +hY +nR +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +FG +na +nT +Ow +nT +nT +FG +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +nT +nT +FG +bB +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(162,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Hi +hY +hY +hY +hY +xl +Ew +jG +jG +dF +Tp +Tp +xl +hY +xl +fD +IP +IP +FF +Kk +BY +hY +hY +vI +Wz +hY +hY +hY +hY +hY +CC +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hq +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +fZ +nT +nT +na +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +pD +mM +mM +Cf +qn +qn +Xa +cp +bB +Sv +Sv +KB +ay +rF +wz +xd +aw +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(163,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +SY +hY +hY +hY +hY +xl +xl +xl +km +xl +xl +xl +xl +hY +xl +xl +km +xl +xl +xl +BY +xH +xH +ZP +iw +hY +hY +VQ +VQ +CC +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +nT +FG +nT +nT +nT +fZ +nT +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +nT +FG +nT +vw +bB +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(164,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +ar +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +tD +tD +VQ +VQ +VQ +VQ +VQ +VQ +CC +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +te +te +te +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +JI +na +nT +FG +nT +sC +nT +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +Cf +nT +nT +nT +fZ +AA +bB +bB +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +EA +Na +Na +Na +Iw +Na +Na +zR +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(165,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PP +PA +PA +PA +PA +cR +te +ES +PA +PA +hG +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +fZ +ne +nT +nT +nT +FG +us +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +Go +nT +nT +nT +nT +nT +QB +Rs +bB +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(166,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +nk +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +HA +te +xE +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +FG +Ow +nT +nT +FG +Go +nT +nT +Ow +nT +Cf +mM +mM +mM +mM +mM +mM +mM +Cf +Cf +nT +nT +nT +FG +us +nT +nT +FG +vw +bB +Sv +KB +ay +rF +mG +Mu +eH +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(167,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +cR +te +ES +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +nT +na +nT +nT +FG +na +Cf +mM +mM +mM +Cf +mM +mM +Cf +Cf +nT +nT +na +nT +nT +fZ +nT +nT +Rw +hS +bB +Sv +KB +ay +KB +jf +Mu +Xm +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +zR +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(168,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +bB +bB +bB +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +te +te +te +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +fZ +nT +NB +nT +fZ +EK +nT +nT +Cf +Cf +Cf +Cf +mM +Cf +Cf +nT +nT +nT +fZ +nT +nT +nT +nT +nT +nT +vw +fZ +bB +Sv +KB +ay +ay +Wy +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(169,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +bB +bB +Sv +bB +bB +bB +EJ +IJ +gK +HN +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +TI +PA +PA +nk +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +Oq +nT +nT +FG +nT +nT +nT +FG +us +nT +na +nT +Cf +mM +nT +nT +fZ +nT +nT +us +nT +nT +FG +nT +nT +vw +nT +bB +Sv +KB +ay +ay +vU +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(170,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +PA +ZH +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +Ji +zu +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +Mn +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +na +sL +EG +na +nT +nT +nT +nT +nT +nT +Ow +nT +nT +nT +nT +nT +nT +nT +FG +nT +fZ +nT +nT +fZ +nT +vw +FG +bB +bB +KB +ay +rF +wz +mR +aw +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(171,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +bB +bB +Sv +Sv +Sv +bB +bB +bB +bB +PA +PA +Fl +HN +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Ai +nT +nT +Go +nT +nT +nT +fZ +na +nT +FG +nT +nT +FG +na +nT +qq +nT +na +nT +nT +nT +nT +nT +na +nT +Ei +nT +nT +bB +nb +ay +KB +zF +xd +XZ +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(172,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +bB +bB +bB +bB +bB +PA +PA +hG +PA +PA +PA +ZH +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +FG +nT +nT +nT +nT +FG +nT +nT +nT +nT +nT +nT +nT +nT +nT +FG +nT +nT +nT +nT +nT +FG +Ow +nT +QB +Xa +qn +OM +nb +ay +ay +hi +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Iw +Na +Na +Na +EA +Na +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +zR +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +LE +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(173,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +Ug +Zg +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +fZ +nT +fZ +nT +us +nT +na +nT +nT +nT +fZ +nT +nT +FG +nT +nT +nT +nT +nT +fZ +nT +nT +us +nT +FG +nT +BM +Xq +nb +AD +ay +mG +Mu +eH +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(174,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Dx +dR +PA +PA +PA +ZH +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +nT +na +nT +nT +FG +nT +nT +nT +na +nT +nT +us +nT +nT +FG +nT +Ow +nT +Go +nT +nT +nT +nT +bB +bB +nb +ay +rF +mG +Mu +eH +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +bB +bB +bB +nT +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(175,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Dx +hk +hk +hk +Zg +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +ue +PA +PA +PA +PA +Mn +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +FG +QP +nT +FG +Ow +nT +nT +nT +FG +nT +nT +nT +fZ +nT +nT +nT +na +nT +nT +FG +nT +nT +nT +fZ +bB +Sv +KB +ay +KB +zF +xd +XZ +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +LE +bB +bB +bB +bB +nT +nT +FG +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(176,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +hG +PA +PA +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Ow +QP +na +nT +nT +nT +nT +fZ +nT +us +nT +nT +nT +nT +fZ +nT +nT +nT +fZ +nT +nT +nT +nT +nT +nT +FG +bB +bB +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Iw +Na +Na +Na +fY +Na +Na +Na +Iw +Na +Na +Na +EA +Na +Na +Na +Na +LE +nT +nT +Ql +nT +nT +Am +nT +LE +Am +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(177,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +us +nT +nT +nT +nT +nT +nT +FG +nT +Go +nT +nT +nT +na +nT +FG +nT +nT +nT +nT +nT +fZ +nT +nT +bB +bB +Sv +Sv +KB +ay +ay +hi +xd +wJ +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +nT +nT +LE +LE +Ql +nT +LE +nT +nT +nT +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(178,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PP +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +Go +nT +FG +nT +us +nT +nT +na +nT +nT +nT +FG +nT +nT +us +Go +nT +FG +nT +nT +nT +na +nT +bB +Sv +Sv +Sv +KB +ay +rF +wz +xd +rT +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +nT +nT +nT +nT +Ql +nT +Am +nT +nT +nT +LE +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(179,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +nT +nT +nT +na +nT +nT +nT +fZ +nT +nT +nT +nT +Ow +na +nT +nT +nT +nT +nT +FG +us +nT +bB +bB +bB +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +nT +nT +nT +nT +mj +nT +nT +nT +nT +nT +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(180,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +FG +nT +nT +nT +FG +nT +nT +nT +nT +FG +nT +fZ +nT +nT +nT +nT +fZ +nT +Go +bB +bB +bB +Sv +Sv +Sv +Sv +KB +ay +JN +mG +Mu +eH +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +EA +Na +Na +Na +nT +LE +nT +nT +Ql +nT +LE +nT +nT +nT +Am +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(181,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +fZ +nT +nT +nT +na +nT +nT +nT +nT +nT +nT +nT +FG +nT +na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +cb +Zf +Mu +Kn +JN +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +nT +nT +LE +Ql +nT +nT +Am +nT +LE +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(182,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +hG +PA +PA +PA +PA +hG +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +nT +nT +Ow +nT +us +nT +nT +FG +us +Ow +nT +nT +FG +nT +nT +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +jV +mR +aw +pg +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +LE +bB +bB +bB +nT +nT +nT +nT +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(183,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +na +nT +nT +nT +nT +nT +nT +nT +FG +us +nT +na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +zF +ha +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +bB +bB +Sv +bB +bB +bB +nT +Am +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(184,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +nT +Go +nT +nT +nT +nT +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +JN +wz +mR +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Iw +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +LE +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(185,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +cb +Wy +Zo +Sk +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +VR +VR +mn +VR +zQ +zQ +zQ +zQ +zQ +zQ +Na +Na +Na +Na +Na +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(186,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +hG +ue +PA +PA +PA +PA +PA +PA +PA +PA +PA +te +te +te +PA +PA +PA +PA +PA +PA +Mn +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +vU +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +vd +wM +wM +zQ +wb +zH +kr +Wk +zQ +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(187,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +cR +te +ES +PA +PA +PA +PA +PA +PA +Mn +PA +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +jf +Mu +IF +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +LS +uL +zQ +EY +kr +kr +kr +zQ +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(188,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +HA +te +xE +PA +PA +PA +PA +Sv +vu +iX +vu +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +Zf +Mu +Kn +JN +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +GM +zQ +kr +kr +kr +kr +zQ +Na +Na +Na +zR +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(189,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +cR +te +ES +PA +PA +PA +bB +Sv +vu +iX +vu +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +jY +gr +Ao +cb +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +zQ +NY +eM +kr +kr +ta +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(190,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +ue +PA +PA +PA +te +te +te +PA +PA +bB +bB +Sv +vu +iX +vu +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +jF +Mu +eH +TO +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +zQ +zQ +zQ +zQ +zQ +zQ +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(191,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +PA +PA +PA +PP +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +zc +kl +zc +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +Ex +Vz +pH +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(192,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +cQ +yZ +Av +yZ +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Cy +Cy +Mr +oe +Mg +Cy +Cy +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(193,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +Ec +mG +Mu +Ao +Zb +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(194,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +jF +gr +Kn +Te +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(195,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +jf +gr +IF +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(196,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +tP +RR +yA +eH +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(197,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +IX +Mu +Ao +Ec +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(198,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +hG +ue +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +jY +gr +eH +rF +ay +KB +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(199,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +Ex +gr +IF +KB +ay +KB +xl +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(200,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PP +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +mG +LC +Ao +gz +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(201,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +jF +Mu +eH +Ec +ay +KB +xl +wZ +MB +MB +MB +MB +MB +Qb +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(202,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +px +Zf +gr +Fi +Wc +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(203,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +ue +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +Ex +Mu +IF +KB +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(204,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +EJ +pv +PA +PA +hG +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +Ec +mG +Mu +je +ma +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(205,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +EJ +EJ +pv +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +nJ +tf +GV +Ec +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(206,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +mG +tf +GV +rF +ay +ay +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +FP +CS +FP +CS +FP +CS +FP +CS +FP +CS +FP +CS +bB +Lh +Lh +"} +(207,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +qI +YS +Xm +KB +wL +KH +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(208,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +nJ +tf +eH +ay +ay +ay +xl +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(209,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +mG +Mu +pw +ay +ay +KB +xl +xl +xl +sG +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(210,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +nJ +Mu +GV +ay +ay +KB +ay +ay +ay +MI +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(211,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +WK +tf +Mf +ay +ay +KB +ay +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(212,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Un +ay +ay +sx +ay +ay +ay +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(213,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +ay +sx +ay +rF +ay +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(214,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +Cy +uA +Cy +KB +Hp +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(215,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +ay +Cy +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(216,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(217,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +yZ +Av +yZ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(218,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(219,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(220,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(221,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Cy +uA +Cy +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(222,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +sx +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(223,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +VT +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Oi +AD +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(224,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +vo +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(225,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +ay +ST +ay +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(226,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ST +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(227,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zb +qt +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(228,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(229,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(230,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(231,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(232,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(233,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(234,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(235,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(236,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(237,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(238,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(239,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(240,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(241,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(242,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(243,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(244,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(245,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(246,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +pC +CS +CS +CS +SM +CS +CS +CS +bB +Lh +Lh +"} +(247,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +SM +CS +CS +CS +CS +CS +CS +CS +CS +lz +CS +bB +Lh +Lh +"} +(248,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +lz +CS +CS +CS +CS +lz +CS +pC +CS +CS +CS +bB +Lh +Lh +"} +(249,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +pC +CS +CS +pC +CS +SM +CS +CS +CS +lz +CS +CS +bB +Lh +Lh +"} +(250,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +lz +pC +CS +CS +pC +CS +CS +pC +CS +bB +Lh +Lh +"} +(251,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +FP +lz +FP +CS +FP +lz +FP +SM +FP +lz +FP +SM +bB +Lh +Lh +"} +(252,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +gu +gu +tm +gu +gu +gu +gu +gu +tm +gu +gu +tm +gu +bB +Lh +Lh +"} +(253,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Lh +Lh +"} +(254,1,1) = {" +Lh +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +"} +(255,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +"} diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm index bad2d094eb4c..7ec1338d0c0a 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/RandomZLevels/moonoutpost19.dmm @@ -1176,9 +1176,6 @@ /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) "il" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, /obj/item/chair{ pixel_x = 5; pixel_y = 5 @@ -1191,6 +1188,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, +/obj/machinery/newscaster/directional/west, /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) "io" = ( @@ -1212,10 +1210,7 @@ /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) "is" = ( -/obj/structure/fence/post{ - dir = 4 - }, -/obj/structure/sign/warning, +/obj/structure/sign/warning/directional/north, /turf/open/misc/asteroid/moon{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, @@ -1440,12 +1435,8 @@ /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) "ki" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD"; - pixel_x = -32 - }, /obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/sign/warning/vacuum/directional/west, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) "kj" = ( @@ -1943,14 +1934,9 @@ /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, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/directional/north, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) "mK" = ( /obj/machinery/door/airlock/titanium{ @@ -2885,12 +2871,10 @@ }, /area/awaymission/moonoutpost19/mines) "si" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, /obj/structure/alien/weeds, /obj/effect/turf_decal/tile/purple, /obj/structure/cable, +/obj/structure/sign/warning/biohazard/directional/east, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) "sn" = ( @@ -3860,14 +3844,6 @@ }, /turf/open/floor/carpet/red, /area/awaymission/moonoutpost19/arrivals) -"yT" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) "yV" = ( /turf/open/misc/asteroid/moon, /area/awaymission/moonoutpost19/main) @@ -3983,12 +3959,8 @@ }, /area/awaymission/moonoutpost19/research) "zK" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD"; - pixel_y = 32 - }, /obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/sign/warning/vacuum/directional/north, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) "zN" = ( @@ -4621,10 +4593,10 @@ }, /area/awaymission/moonoutpost19/main) "DS" = ( -/obj/structure/fence{ - dir = 4 +/obj/structure/flora/rock/style_random{ + pixel_y = -2 }, -/obj/structure/sign/warning, +/obj/structure/sign/warning/directional/north, /turf/open/misc/asteroid/moon{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, @@ -5162,13 +5134,11 @@ /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) "HY" = ( -/obj/structure/sign/departments/science{ - pixel_y = 32 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/purple/anticorner{ dir = 1 }, +/obj/structure/sign/departments/science/directional/north, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) "Ia" = ( @@ -33674,7 +33644,7 @@ My ld mc mt -mJ +mI mt mc ld @@ -35472,8 +35442,8 @@ hI My My My -yT -Ue +iM +mJ iM My My @@ -36460,7 +36430,7 @@ LG dA My My -DS +dA My My My @@ -39801,6 +39771,7 @@ My My My My +Jb is My My @@ -39814,7 +39785,6 @@ My My My My -My ea en en @@ -44688,8 +44658,8 @@ dA My My My +YX DS -Wg My My My diff --git a/_maps/RandomZLevels/museum.dmm b/_maps/RandomZLevels/museum.dmm index 4c7fe9782de3..ab6be28cdfb4 100644 --- a/_maps/RandomZLevels/museum.dmm +++ b/_maps/RandomZLevels/museum.dmm @@ -119,7 +119,7 @@ /turf/open/floor/wood/large, /area/awaymission/museum) "bg" = ( -/obj/structure/no_effect_signpost{ +/obj/structure/signpost{ name = "if youre reading this you stink and also made by jimmyl" }, /turf/open/floor/bluespace, @@ -735,7 +735,8 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/painting{ pixel_y = 32; - persistence_id = "museumgate" + persistence_id = "museumgate"; + dir = 1 }, /obj/machinery/light/floor, /obj/effect/decal/cleanable/dirt/dust, @@ -1047,16 +1048,14 @@ /obj/effect/turf_decal/stripes/asteroid/line{ dir = 1 }, -/obj/machinery/button{ - pixel_y = 32 - }, /turf/open/indestructible/plating, /area/awaymission/museum) "iI" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/painting{ pixel_y = 32; - persistence_id = "museumgate" + persistence_id = "museumgate"; + dir = 1 }, /obj/machinery/light/floor, /turf/open/floor/iron/dark, @@ -1760,7 +1759,7 @@ dir = 1 }, /obj/structure/table, -/obj/item/food/sandwich/cheese/grilled, +/obj/item/food/sandwich/grilled_cheese, /turf/open/floor/iron/dark, /area/awaymission/museum) "of" = ( @@ -2464,8 +2463,9 @@ }, /area/awaymission/museum) "tK" = ( -/obj/structure/sign/warning, -/turf/closed/indestructible/reinforced, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/warning/directional/south, +/turf/open/indestructible/plating, /area/awaymission/museum) "tM" = ( /obj/structure/table/wood, @@ -3250,6 +3250,7 @@ /obj/machinery/door/window/elevator/left/directional/south{ transport_linked_id = "museum_cargo" }, +/obj/structure/sign/warning/directional/east, /turf/open/chasm/true/no_smooth, /area/awaymission/museum) "Ak" = ( @@ -4648,6 +4649,7 @@ /obj/structure/broken_flooring/side/always_floorplane{ dir = 8 }, +/obj/structure/sign/warning/directional/east, /turf/open/indestructible/plating, /area/awaymission/museum) "Mv" = ( @@ -4756,6 +4758,7 @@ dir = 1 }, /obj/structure/closet/crate/bin, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/titanium/blue, /area/awaymission/museum) "NB" = ( @@ -5200,6 +5203,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/sign/warning/directional/west, +/obj/structure/sign/warning/directional/east, /turf/open/indestructible/plating, /area/awaymission/museum) "Rl" = ( @@ -5371,8 +5376,8 @@ /turf/open/floor/iron/white/small, /area/awaymission/museum) "Tr" = ( -/obj/structure/plaque/static_plaque/golden/commission/kilo, /obj/machinery/light/floor, +/obj/structure/plaque/static_plaque/golden/commission/kilo, /turf/open/floor/mineral/gold, /area/awaymission/museum) "Tt" = ( @@ -5443,6 +5448,7 @@ dir = 1 }, /obj/item/kirbyplants/random/fullysynthetic, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/titanium/blue, /area/awaymission/museum) "TO" = ( @@ -5478,6 +5484,7 @@ transport_linked_id = "museum_cargo" }, /obj/effect/spawner/random/maintenance/no_decals/seven, +/obj/structure/sign/warning/directional/west, /turf/open/chasm/true/no_smooth, /area/awaymission/museum) "Um" = ( @@ -5759,6 +5766,7 @@ "We" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/sign/warning/directional/south, /turf/open/indestructible/plating, /area/awaymission/museum) "Wf" = ( @@ -6026,10 +6034,6 @@ /obj/effect/mapping_helpers/airlock/access/all/away/generic3, /turf/open/indestructible/plating, /area/awaymission/museum) -"Ye" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/reinforced/titanium/nodiagonal, -/area/awaymission/museum) "Yg" = ( /obj/effect/mob_spawn/cockroach, /obj/effect/decal/cleanable/dirt/dust, @@ -29524,7 +29528,7 @@ iW go iW TN -Ye +fe FK FK FK @@ -30072,7 +30076,7 @@ Qk Ma Ma Ma -tK +FK FK FK Kh @@ -30295,7 +30299,7 @@ DU iW iW Ny -Ye +fe FK FK FK @@ -30323,7 +30327,7 @@ FK bF FK We -tK +FK Ma VE zr @@ -30586,7 +30590,7 @@ do Ma Ma Ma -tK +FK FK FK Kh @@ -32120,8 +32124,8 @@ DY FK TB ZZ -XK tK +FK Kh Kh FK @@ -32132,7 +32136,7 @@ FK lU lU lU -tK +FK FK FK Uq @@ -33406,7 +33410,7 @@ FK FK FK FK -tK +FK FK FK FK @@ -33417,7 +33421,7 @@ FK FK PB PB -tK +FK FK FK Uq diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm index 64f2a725a51f..c3513c00bfcc 100644 --- a/_maps/RandomZLevels/research.dmm +++ b/_maps/RandomZLevels/research.dmm @@ -1350,7 +1350,6 @@ /turf/open/floor/iron/white, /area/awaymission/research/interior/engineering) "gP" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, @@ -1474,7 +1473,6 @@ /area/awaymission/research/interior/security) "hr" = ( /obj/machinery/light/directional/east, -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, @@ -1543,7 +1541,6 @@ /area/awaymission/research/interior/security) "hH" = ( /obj/machinery/vending/security, -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, @@ -1604,18 +1601,11 @@ /turf/open/floor/iron/white, /area/awaymission/research/interior) "hP" = ( -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -32 - }, /obj/structure/sign/directions/evac{ - pixel_x = 32; - pixel_y = -24 + pixel_y = 10 }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, +/obj/structure/sign/directions/medical, +/turf/closed/wall/r_wall, /area/awaymission/research/interior) "hQ" = ( /turf/open/floor/iron/white/corner{ @@ -1624,7 +1614,6 @@ /area/awaymission/research/interior) "hR" = ( /obj/structure/table, -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, @@ -2836,11 +2825,13 @@ }, /obj/machinery/power/apc/auto_name/directional/west, /obj/effect/mapping_helpers/apc/cell_5k, +/obj/structure/cable, /turf/open/floor/iron, /area/awaymission/research/interior/dorm) "oT" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, /turf/open/floor/iron/white, /area/awaymission/research/interior/security) "pt" = ( @@ -2906,14 +2897,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/awaymission/research/interior/gateway) -"qY" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/white, -/area/awaymission/research/interior/security) "qZ" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -3049,7 +3032,6 @@ /obj/effect/turf_decal/siding/yellow{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/iron, /area/awaymission/research/interior/dorm) "vT" = ( @@ -3140,24 +3122,18 @@ /turf/open/floor/iron/white, /area/awaymission/research/interior/security) "yj" = ( -/obj/structure/sign/directions/security{ +/obj/structure/sign/directions/science{ dir = 1; - pixel_x = 32; - pixel_y = 40 + pixel_y = 10 }, /obj/structure/sign/directions/engineering{ dir = 1; - pixel_x = 32; - pixel_y = 33 + pixel_y = -10 }, -/obj/structure/sign/directions/science{ - dir = 1; - pixel_x = 32; - pixel_y = 26 +/obj/structure/sign/directions/security{ + dir = 1 }, -/mob/living/basic/trooper/syndicate/ranged/smg, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron/white, +/turf/closed/wall/r_wall, /area/awaymission/research/interior) "yn" = ( /obj/item/ammo_casing/c45, @@ -3196,14 +3172,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/white, /area/awaymission/research/interior/cryo) -"zU" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/awaymission/research/interior/medbay) "AY" = ( /obj/structure/rack, /obj/item/clothing/suit/armor/riot, @@ -3241,7 +3209,6 @@ /turf/open/floor/iron/white, /area/awaymission/research/interior) "By" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/light/directional/north, /turf/open/floor/iron/white, @@ -3255,6 +3222,7 @@ "BQ" = ( /mob/living/basic/trooper/nanotrasen/ranged/smg, /obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, /turf/open/floor/iron/white, /area/awaymission/research/interior/security) "BY" = ( @@ -3518,6 +3486,11 @@ }, /turf/open/floor/iron, /area/awaymission/research/interior/dorm) +"Jg" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/awaymission/research/interior/security) "Jl" = ( /obj/item/kirbyplants/organic/plant20{ pixel_y = 3 @@ -3753,6 +3726,13 @@ /obj/effect/turf_decal/tile/purple/fourcorners, /turf/open/floor/iron, /area/awaymission/research/interior/genetics) +"PM" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/white, +/area/awaymission/research/interior/security) "Qd" = ( /obj/machinery/door/airlock/medical{ name = "Medical" @@ -3844,6 +3824,7 @@ dir = 4 }, /obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, /turf/open/floor/iron/white, /area/awaymission/research/interior/medbay) "SJ" = ( @@ -42258,7 +42239,7 @@ Nf eJ eJ hB -hP +kv ia ia it @@ -42269,7 +42250,7 @@ ia ia ia ia -yj +sn ut HS kv @@ -42516,7 +42497,7 @@ eJ eJ hC hM -cp +hP cp eH cp @@ -42525,7 +42506,7 @@ cp cp cp cp -cp +yj js ry ke @@ -45851,9 +45832,9 @@ jp si hF fr -LX -LX -LX +Jg +Jg +Jg ho hF si @@ -46108,10 +46089,10 @@ do do do By -QQ -QQ -QQ -ho +LX +Jg +LX +hn do do do @@ -46881,7 +46862,7 @@ hF fr BQ QQ -LX +Jg ho hF si @@ -47135,11 +47116,11 @@ do do do do -fr -Or +fq +PM Or -QQ -ho +LX +hn do do do @@ -47160,7 +47141,7 @@ kL kZ Fl Th -zU +lD iW aO aH @@ -47653,10 +47634,10 @@ fq Kg yc oT -LX -LX -LX -LX +Jg +Jg +Jg +Jg CW do bD @@ -47908,7 +47889,7 @@ ok eS fq LX -qY +wN wN LX LX diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm index b656d7b4a943..7169a3cc75fa 100644 --- a/_maps/RandomZLevels/snowdin.dmm +++ b/_maps/RandomZLevels/snowdin.dmm @@ -1510,6 +1510,7 @@ /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "fS" = ( @@ -1517,10 +1518,13 @@ /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "fV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 4 @@ -1737,12 +1741,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) -"gL" = ( -/obj/structure/sink/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/awaymission/snowdin/post/hydro) "gM" = ( /obj/item/stack/cable_coil{ amount = 1 @@ -1938,10 +1936,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) -"hA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/awaymission/snowdin/post/hydro) "hB" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/weather/snow, @@ -2301,10 +2295,6 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/gateway) "iB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, /obj/effect/landmark/awaystart/snowdin, /obj/machinery/holopad, /obj/effect/decal/cleanable/dirt, @@ -2353,7 +2343,6 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "iL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 }, @@ -2372,7 +2361,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "iP" = ( @@ -2576,11 +2564,12 @@ "ju" = ( /obj/effect/landmark/awaystart/snowdin, /obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 10 + }, /turf/open/floor/iron, /area/awaymission/snowdin/post/gateway) "jv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/landmark/awaystart/snowdin, /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -2616,7 +2605,6 @@ /turf/open/floor/iron/cafeteria, /area/awaymission/snowdin/post/messhall) "jB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/sink/directional/west, /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 @@ -2647,7 +2635,6 @@ }, /obj/effect/landmark/awaystart/snowdin, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "jF" = ( @@ -2658,6 +2645,7 @@ "jG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "jH" = ( @@ -2750,11 +2738,10 @@ id = "snowdin_gate" }, /obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/iron, /area/awaymission/snowdin/post/gateway) "jZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/door/poddoor/shutters/preopen{ id = "snowdin_gate" }, @@ -2797,27 +2784,14 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "ki" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/awaymission/snowdin/post/garage) -"kj" = ( -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) -"kk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/snowdin/post/garage) "km" = ( /obj/structure/sign/poster/contraband/tools/directional/east, /obj/structure/closet/crate/preopen, @@ -2844,7 +2818,9 @@ /turf/closed/wall/ice, /area/awaymission/snowdin/cave/mountain) "kv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, /obj/machinery/shower/directional/south, /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) @@ -2883,7 +2859,9 @@ /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) "kB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) "kF" = ( @@ -2909,11 +2887,10 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/iron, /area/awaymission/snowdin/post) "kK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -2979,7 +2956,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "kV" = ( @@ -2988,6 +2964,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "kW" = ( @@ -3043,7 +3020,6 @@ /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) "lj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) "lk" = ( @@ -3238,14 +3214,12 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "lH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "lI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, @@ -3259,21 +3233,16 @@ /obj/item/paper/crumpled/ruins/snowdin/foreshadowing, /turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) -"lK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/awaymission/snowdin/post/hydro) "lM" = ( /obj/machinery/door/airlock/external/glass/ruin, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "lN" = ( /obj/machinery/door/airlock/external/glass/ruin, /obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "lO" = ( @@ -3428,6 +3397,9 @@ /area/awaymission/snowdin/post) "ml" = ( /obj/effect/turf_decal/snowdin_station_sign/seven, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, /turf/open/floor/iron, /area/awaymission/snowdin/post) "mm" = ( @@ -3537,12 +3509,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/awaymission/snowdin/post/custodials) -"mI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/awaymission/snowdin/post) "mJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, @@ -3655,7 +3621,7 @@ /area/awaymission/snowdin/outside) "nd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 + dir = 4 }, /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -3669,28 +3635,12 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/awaymission/snowdin/post) -"nf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/snowdin/post) "ng" = ( /obj/structure/flora/grass/both/style_random, /obj/structure/flora/tree/pine/style_random, /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/outside) -"nh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/snowdin/post) "ni" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 10 }, @@ -3905,6 +3855,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/secpost) "oh" = ( @@ -3912,6 +3863,7 @@ dir = 1 }, /obj/item/shard, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/secpost) "ol" = ( @@ -4017,29 +3969,18 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/secpost) "oE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/snowdin/post/secpost) -"oF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/snowdin/post/secpost) -"oG" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/snowdin/post/secpost) "oH" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/awaymission/snowdin/post/secpost) "oI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + welded = 1; + dir = 4 + }, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 }, @@ -4061,7 +4002,9 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post) "oL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ @@ -4173,6 +4116,14 @@ /obj/machinery/microwave, /turf/open/floor/iron/cafeteria, /area/awaymission/snowdin/post/cavern2) +"pi" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "snowdin_gate" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/snowdin/post/gateway) "pj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -4217,15 +4168,6 @@ }, /turf/open/floor/iron, /area/awaymission/snowdin/post/secpost) -"pp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/awaymission/snowdin/post) "pq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -4246,13 +4188,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/snowdin/post) -"pt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/snowdin/post) "pu" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -5370,9 +5305,7 @@ /area/awaymission/snowdin/post/mining_main/mechbay) "tQ" = ( /obj/machinery/light/small/directional/south, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/misc/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "tR" = ( @@ -5427,10 +5360,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "un" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/machinery/light/small/broken/directional/east, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/post/cavern2) "up" = ( @@ -5703,7 +5634,6 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/cavern1) "vy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 6 }, @@ -5769,6 +5699,9 @@ /obj/effect/baseturf_helper/asteroid/snow, /turf/open/floor/plating, /area/awaymission/snowdin/post/broken_shuttle) +"vO" = ( +/turf/closed/wall, +/area/awaymission/snowdin/outside) "vP" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -5778,15 +5711,17 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/mechbay) "vR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/awaymission/snowdin/post/broken_shuttle) +/obj/structure/flora/tree/stump, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow, +/area/awaymission/snowdin/outside) "vT" = ( /obj/structure/chair, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "vU" = ( /obj/item/chair, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "vW" = ( @@ -5805,6 +5740,7 @@ /obj/structure/chair{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "wc" = ( @@ -6983,6 +6919,11 @@ slowdown = 1 }, /area/awaymission/snowdin/outside) +"AV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/snowdin/post) "AW" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating/snowed/cavern, @@ -7503,7 +7444,7 @@ /area/awaymission/snowdin/cave) "De" = ( /obj/structure/table/reinforced, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/iron/dark, /area/awaymission/snowdin/cave) "Df" = ( @@ -7589,7 +7530,7 @@ /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) "Dx" = ( -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "DA" = ( @@ -7881,7 +7822,7 @@ /area/awaymission/snowdin/cave) "ES" = ( /obj/structure/table/reinforced, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /turf/open/floor/iron/dark, /area/awaymission/snowdin/cave) "ET" = ( @@ -7894,6 +7835,15 @@ /obj/item/stack/ore/iron, /turf/closed/mineral/iron/ice, /area/awaymission/snowdin/cave/cavern) +"EW" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow, +/area/awaymission/snowdin/outside) "EX" = ( /obj/item/pickaxe/drill{ pixel_x = 3; @@ -8156,6 +8106,7 @@ dir = 4 }, /obj/structure/table, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_main/mechbay) "GJ" = ( @@ -8391,6 +8342,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_main/mechbay) "HS" = ( @@ -8769,6 +8721,12 @@ "JV" = ( /turf/open/misc/ice, /area/awaymission/snowdin/outside) +"Ka" = ( +/obj/effect/landmark/awaystart/snowdin, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/snowdin/post/gateway) "Kc" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -9403,6 +9361,7 @@ /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "Nt" = ( @@ -9558,7 +9517,6 @@ /turf/open/floor/iron/white, /area/awaymission/snowdin/post) "Oh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/broken/directional/south, /turf/open/floor/iron/showroomfloor, @@ -9814,6 +9772,7 @@ "PL" = ( /obj/structure/chair, /obj/machinery/light/small/directional/west, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "PM" = ( @@ -10333,10 +10292,6 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/research) "Sr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post) @@ -10518,6 +10473,20 @@ /mob/living/basic/bear/snow, /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/outside) +"Th" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/showroomfloor, +/area/awaymission/snowdin/post/dorm) +"Tj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/snowdin/post) "Tk" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/misc/asteroid/snow{ @@ -10693,11 +10662,11 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/mechbay) "Us" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, /obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "Ut" = ( @@ -10783,10 +10752,8 @@ /turf/open/misc/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "Va" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, +/obj/structure/flora/grass/both/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/outside) "Vb" = ( @@ -10853,6 +10820,16 @@ /obj/machinery/light/broken/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) +"Vs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/snowdin/post) "Vt" = ( /obj/docking_port/stationary{ dir = 4; @@ -10867,6 +10844,7 @@ /area/awaymission/snowdin/post/mining_main) "Vu" = ( /obj/machinery/light/broken/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "Vw" = ( @@ -10879,16 +10857,17 @@ /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/cave) "Vy" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 +/obj/effect/turf_decal/weather/snow, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 }, -/turf/open/misc/asteroid/snow/ice, -/area/awaymission/snowdin/cave/cavern) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/dark/snowdin, +/area/awaymission/snowdin/outside) "Vz" = ( /obj/machinery/light/small/directional/east, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/post/cavern2) "VB" = ( @@ -10918,9 +10897,7 @@ /area/awaymission/snowdin/post/hydro) "VO" = ( /obj/machinery/light/small/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "VP" = ( @@ -11157,6 +11134,7 @@ dir = 1 }, /obj/machinery/light/small/directional/east, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "Xk" = ( @@ -11294,7 +11272,6 @@ "Yd" = ( /obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "Ye" = ( @@ -11311,6 +11288,10 @@ }, /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/outside) +"Yg" = ( +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow, +/area/awaymission/snowdin/outside) "Yh" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -11474,7 +11455,9 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/gateway) "Zj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 @@ -17291,7 +17274,7 @@ eQ je aS kw -lf +Th lV aK Zy @@ -20188,9 +20171,9 @@ Zy Zy Zy vL -vR +vL vX -vR +vL vL Zy Zy @@ -20249,8 +20232,8 @@ eo Zy Zy YE +vO Va -TI Zy Zy Zy @@ -20634,7 +20617,7 @@ jU js jU me -mI +jo nd nF Ob @@ -21149,7 +21132,7 @@ jU lp mg mK -nf +nL nH og oE @@ -21216,9 +21199,9 @@ Zy Zy Zy vL -vR +vL vX -vR +vL vL Zy Zy @@ -21406,10 +21389,10 @@ jU lq mh mL -nf +nL QZ oh -oF +oz pn pL qq @@ -21663,10 +21646,10 @@ kG lr mi mM -nf +nL nF Zj -oG +po po pM qq @@ -21761,8 +21744,8 @@ Zy Zy Zy Zy -Va -Tr +SS +Vy YT YT YT @@ -21791,8 +21774,8 @@ Qj Zy YE Zy -Va -Qj +vO +EW Zy Zy Zy @@ -21938,8 +21921,8 @@ dX dX Zy Zy -Va -Zy +SS +Yg Zy Zy Cu @@ -22177,11 +22160,11 @@ kI lt mk mL -nh +js nJ hM oI -pp +kF pN dK qM @@ -22433,7 +22416,7 @@ jY kJ lu ml -jU +Tj ni nK HU @@ -22620,8 +22603,8 @@ Zy Zy Zy Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -22691,7 +22674,7 @@ kK lv js jW -nM +jm nL dK js @@ -22942,12 +22925,12 @@ fG hn hT iC -ju -jY -kJ +Ka +pi +Vs lw -jo -js +AV +rm rm nM QN @@ -23209,7 +23192,7 @@ jX jm hM oL -pt +jX pR dK qM @@ -23303,8 +23286,8 @@ YE Zy Zy Zy -Va -Zy +SS +Yg Zy Zy Qj @@ -23480,8 +23463,8 @@ Cu Zy Zy dX -Va -Zy +SS +Yg Zy Zy Zy @@ -24162,8 +24145,8 @@ Zy Zy Wp Zy -Va -ZX +SS +vR Zy Zy Zy @@ -27314,7 +27297,7 @@ iJ gI hz gI -lK +iK ms hz nA @@ -27564,14 +27547,14 @@ bf bf bf fV -gL -hA -lK +mv +mt +iK iL jB iL iL -lK +iK mv iK nA @@ -29367,7 +29350,7 @@ gP hD id Us -iW +my ki kV lN @@ -29625,7 +29608,7 @@ Oe ie iP jF -kj +hE kW id ld @@ -29882,7 +29865,7 @@ Oe if iQ jG -kk +jJ kX ie mz @@ -35536,8 +35519,8 @@ ai ai ai Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -35807,8 +35790,8 @@ Zy dX dX Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -37335,8 +37318,8 @@ ai ai ai Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -37349,8 +37332,8 @@ Zy ZK Zy Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -59379,7 +59362,7 @@ WN WN WN WN -Vy +WN Gk GI Hc @@ -61435,7 +61418,7 @@ WN WN Nz WN -Vy +WN Gk HR Hi diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index 12aa7f7458b5..624f05678ace 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -112,12 +112,6 @@ /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 @@ -258,7 +252,6 @@ req_access = list("away_maintenance") }, /obj/item/clothing/under/suit/black/skirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) "ba" = ( @@ -474,7 +467,6 @@ "cw" = ( /obj/structure/table/wood, /obj/machinery/newscaster/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) "cA" = ( @@ -503,7 +495,7 @@ /area/awaymission/undergroundoutpost45/central) "cH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /obj/structure/chair/wood{ dir = 1 @@ -526,7 +518,7 @@ /area/awaymission/undergroundoutpost45/central) "cK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /obj/structure/bed, /obj/item/bedsheet, @@ -876,7 +868,6 @@ /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "ed" = ( @@ -917,6 +908,7 @@ 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/awaymission/undergroundoutpost45/central) "ek" = ( @@ -957,7 +949,7 @@ "eq" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) @@ -1122,6 +1114,7 @@ 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/awaymission/undergroundoutpost45/central) "fa" = ( @@ -1193,7 +1186,9 @@ /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "fp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -1206,7 +1201,9 @@ /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "fr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -1306,7 +1303,6 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "fI" = ( @@ -1917,7 +1913,7 @@ /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/gateway) "ig" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4; req_access = null }, @@ -2144,7 +2140,9 @@ /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/gateway) "iT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /obj/structure/chair{ dir = 8 }, @@ -2262,6 +2260,7 @@ 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/awaymission/undergroundoutpost45/gateway) "jz" = ( @@ -2497,7 +2496,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "kr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 2 }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, @@ -2554,7 +2553,7 @@ /area/awaymission/undergroundoutpost45/gateway) "kB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 2 }, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -2566,7 +2565,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/gateway) "kF" = ( @@ -2630,7 +2628,7 @@ /area/awaymission/undergroundoutpost45/research) "kU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 2 }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/purple{ @@ -2697,7 +2695,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "le" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) @@ -2748,6 +2746,7 @@ /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/awaymission/undergroundoutpost45/gateway) "lu" = ( @@ -2893,7 +2892,7 @@ /area/awaymission/undergroundoutpost45/research) "lL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2913,6 +2912,7 @@ }, /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) "lO" = ( @@ -3013,7 +3013,6 @@ /area/awaymission/undergroundoutpost45/gateway) "mc" = ( /obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron{ dir = 8 }, @@ -4411,14 +4410,13 @@ "qU" = ( /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/side{ dir = 4 }, /area/awaymission/undergroundoutpost45/research) "qV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 2 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, @@ -4662,8 +4660,8 @@ /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/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/side{ dir = 4 }, @@ -4774,7 +4772,6 @@ /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) "rW" = ( @@ -5840,11 +5837,8 @@ /turf/open/floor/iron/checker, /area/awaymission/undergroundoutpost45/engineering) "vQ" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, /obj/effect/decal/cleanable/dirt, +/obj/structure/noticeboard/directional/south, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) "vR" = ( @@ -6540,7 +6534,6 @@ /obj/structure/chair/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) "Bz" = ( @@ -6837,6 +6830,8 @@ /obj/machinery/airalarm/directional/west, /obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron{ dir = 8 }, @@ -6876,6 +6871,11 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) +"GS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) "Hp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6971,7 +6971,6 @@ /obj/effect/turf_decal/tile/purple{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) "Ji" = ( @@ -6983,6 +6982,7 @@ }, /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/awaymission/undergroundoutpost45/gateway) "Jm" = ( @@ -7121,25 +7121,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/gateway) -"LX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) "LZ" = ( /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, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Mg" = ( -/obj/effect/turf_decal/tile/purple{ - 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/awaymission/undergroundoutpost45/research) "Mo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -7286,6 +7275,7 @@ "ON" = ( /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) "OO" = ( @@ -7312,6 +7302,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) +"Px" = ( +/obj/structure/sign/warning/vacuum{ + desc = "A beacon used by a teleporter."; + icon = 'icons/obj/devices/tracker.dmi'; + icon_state = "beacon"; + name = "tracking beacon" + }, +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/central) "PB" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7362,7 +7361,6 @@ /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) "Qu" = ( @@ -7606,11 +7604,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/gateway) -"Vo" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) "VF" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 @@ -7734,6 +7727,7 @@ 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/awaymission/undergroundoutpost45/central) "Xd" = ( @@ -7751,6 +7745,11 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) +"XD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) "XF" = ( /obj/structure/ore_box, /turf/open/misc/asteroid/plasma, @@ -7773,10 +7772,6 @@ /obj/structure/glowshroom/single, /turf/open/misc/asteroid/plasma, /area/awaymission/undergroundoutpost45/caves) -"XU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) "Yb" = ( /obj/structure/alien/weeds, /obj/structure/bed/nest, @@ -28313,8 +28308,8 @@ gU gv gv kA -cA -XU +Qb +mb mF gv ad @@ -28566,12 +28561,12 @@ hw ib ib iT -LX +gJ gK Rx kB lt -XU +mb mG gw zq @@ -35251,7 +35246,7 @@ zq zq zq hH -Mg +mU lM hH mR @@ -35776,7 +35771,7 @@ lu gx Ap qV -YF +XD sw gz tR @@ -37787,7 +37782,7 @@ aK aC aP aP -aC +Px aC bv aC @@ -37800,7 +37795,7 @@ cH ae aF Gc -IV +GS ej LZ LZ @@ -38057,14 +38052,14 @@ fB cZ gf gf -zJ -zJ -zJ -zJ -zJ -zJ +aS +aS +aS +aS +aS Ai aS +aS aC fO gr @@ -38320,7 +38315,7 @@ ez eN fa fp -Ai +aS aS da gA @@ -38577,7 +38572,7 @@ el el el fq -Ai +aS aS da gs @@ -38591,8 +38586,8 @@ WD WD Ij HA -HA -Ug +zA +gs lQ gs nG @@ -38834,7 +38829,7 @@ eA eB el fq -Ai +aS fU ae fK @@ -38849,7 +38844,7 @@ gg gg jR Ro -Ug +gs gA mp fN @@ -39091,7 +39086,7 @@ eB eO el fq -Ai +aS fV ae zq @@ -39348,7 +39343,7 @@ el el el fq -Ai +aS aF aP zq @@ -39605,7 +39600,7 @@ eC eC aY fr -Ai +aS fW aP zq @@ -42446,7 +42441,7 @@ iH jc jz hK -Vo +hK lj lU fN diff --git a/_maps/_basemap.dm b/_maps/_basemap.dm index 7249d53f5cbf..b97729d306d6 100644 --- a/_maps/_basemap.dm +++ b/_maps/_basemap.dm @@ -1,11 +1,21 @@ //#define LOWMEMORYMODE //uncomment this to load centcom and runtime station and thats it. -//#define SHOW_INVENTORY_ICONS //uncomment this to make mapping software use inventory icons rather then world icons +//#define ABSOLUTE_MINIMUM //uncomment this to load a smaller centcomm and smaller runtime station, only works together with LOWMEMORYMODE +//#define SHOW_INVENTORY_ICONS //uncomment this to make mapping software use inventory icons rather then world icons // DARKPACK EDIT ADD +#ifdef ABSOLUTE_MINIMUM +#define LOWMEMORYMODE +#endif + +#ifndef ABSOLUTE_MINIMUM #include "map_files\generic\CentCom.dmm" +#else +#include "map_files\generic\CentCom_minimal.dmm" +#endif #ifndef LOWMEMORYMODE #ifdef ALL_MAPS // DARKPACK EDIT CHANGE START + #include "map_files\Vampire\westfield_mall.dmm" #include "map_files\Vampire\runtimetown.dmm" #include "map_files\debug\multiz.dmm" #include "map_files\debug\runtimestation.dmm" diff --git a/_maps/gateway_test.json b/_maps/gateway_test.json index df38ec4c5b86..4acdadf06445 100644 --- a/_maps/gateway_test.json +++ b/_maps/gateway_test.json @@ -8,8 +8,8 @@ "ignored_unit_tests": [ "/datum/unit_test/antag_moodlets", "/datum/unit_test/cargo_dep_order_locations", - "/datum/unit_test/job_roundstart_spawnpoints", - "/datum/unit_test/required_map_items", + "/datum/unit_test/maptest_job_roundstart_spawnpoints", + "/datum/unit_test/maptest_required_map_items", "/datum/unit_test/space_dragon_expiration", "/datum/unit_test/spy_bounty", "/datum/unit_test/traitor" diff --git a/_maps/map_files/CatwalkStation/CatwalkStation_2023.dmm b/_maps/map_files/CatwalkStation/CatwalkStation_2023.dmm index c95e81d965f5..078db1be7b9a 100644 --- a/_maps/map_files/CatwalkStation/CatwalkStation_2023.dmm +++ b/_maps/map_files/CatwalkStation/CatwalkStation_2023.dmm @@ -2,20 +2,21 @@ "aad" = ( /turf/closed/wall, /area/station/service/hydroponics) -"aah" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/science/server) -"aat" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"aaq" = ( /obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/catwalk_floor, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/firealarm_sanity, +/turf/open/floor/catwalk_floor/iron_smooth, /area/station/engineering/main) +"aas" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Laundromat" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured, +/area/station/commons/dorms/laundry) "aau" = ( /obj/structure/railing{ dir = 1 @@ -23,6 +24,13 @@ /obj/structure/showcase/machinery/implanter, /turf/open/floor/wood, /area/station/command/corporate_showroom) +"aaN" = ( +/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/engineering/main) "aaO" = ( /obj/structure/plaque/static_plaque/golden{ desc = "Come get your own gold plaque!"; @@ -31,56 +39,28 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"aaS" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/structure/fluff/paper/corner{ - dir = 8 - }, -/obj/item/paper/crumpled{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "aaV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/port/fore) -"abi" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 5 - }, -/obj/item/holosign_creator/atmos{ - pixel_x = -1; - pixel_y = -5 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "abm" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown/fourcorners, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/cargo/storage) "abp" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, @@ -89,20 +69,22 @@ /turf/open/floor/plating, /area/station/maintenance/space_hut) "abs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; + dir = 1; + id = "Rcommissaryshutter"; name = "Vacant Commissary Shutter" }, -/obj/effect/turf_decal/tile/dark_green/fourcorners, -/turf/open/floor/iron/dark, +/turf/open/floor/plating, /area/station/commons/vacant_room/office) "abE" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/maintenance/port/aft) +/area/station/medical/chem_storage) "abF" = ( /obj/structure/railing{ dir = 1 @@ -116,25 +98,17 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "abI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/shaft_miner, +/obj/machinery/autolathe, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "abM" = ( +/obj/structure/railing, /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/closet/crate, -/obj/item/storage/belt/fannypack/yellow, -/obj/structure/railing{ - dir = 1 + dir = 6 }, -/obj/structure/railing, /turf/open/floor/iron, /area/station/cargo/storage) "abT" = ( @@ -146,6 +120,28 @@ }, /turf/open/floor/iron, /area/station/science/robotics) +"acc" = ( +/obj/item/flashlight/lamp{ + pixel_y = 7 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) +"acd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "acl" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -156,22 +152,11 @@ /turf/open/floor/carpet/stellar, /area/station/maintenance/hallway/abandoned_recreation) "acx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 8 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 8; - pixel_y = 26 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 8; - pixel_y = 38 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) "acI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -184,7 +169,7 @@ "acL" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/ladder, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "acN" = ( /obj/structure/flora/rock/pile/style_2, @@ -199,12 +184,17 @@ }, /turf/open/misc/asteroid, /area/station/science/robotics) -"acU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 5 +"acS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/effect/turf_decal/siding/dark_blue, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "acV" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/table, @@ -214,18 +204,17 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron, /area/station/science/research) -"ade" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"adg" = ( +/obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/item/trash/tray, -/turf/open/water, -/area/station/maintenance/starboard/fore) -"ado" = ( -/obj/machinery/light/directional/west, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"adq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/security/detectives_office) "adv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, @@ -256,11 +245,6 @@ }, /turf/open/openspace, /area/station/science/xenobiology) -"aej" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "aep" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -268,20 +252,21 @@ /turf/open/floor/wood, /area/station/hallway/secondary/service) "aeq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/turf/open/floor/iron/white/textured_edge, -/area/station/medical/surgery) -"afg" = ( +/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/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery) +"afg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue/corner, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) @@ -296,29 +281,44 @@ /turf/open/misc/asteroid, /area/station/science/xenobiology/hallway) "afl" = ( -/obj/structure/sink/directional/west, -/obj/effect/turf_decal/tile/blue/opposingcorners{ +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/iron/dark/smooth_corner{ dir = 1 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/general/visible, -/turf/open/floor/iron/dark, /area/station/medical/cryo) "afn" = ( -/obj/structure/railing{ - dir = 4 - }, /obj/effect/turf_decal/siding/blue{ 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/command/bridge) -"afr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "aft" = ( /obj/structure/stairs/west, /obj/structure/railing, @@ -327,14 +327,23 @@ "afu" = ( /turf/open/openspace, /area/station/commons/dorms) -"afB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 15 +"afA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/sheet/iron, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"afI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "afK" = ( /obj/machinery/turretid{ name = "AI Chamber turret control"; @@ -357,21 +366,18 @@ }, /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "afL" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/science/lobby) -"afP" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +"afQ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "afR" = ( /turf/open/openspace, /area/station/hallway/primary/aft) @@ -386,15 +392,17 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison/mess) -"agh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera/autoname/directional/south, +"agq" = ( /obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) +"agu" = ( +/obj/structure/sign/departments/medbay/alt/directional/south, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) "agy" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ dir = 4 @@ -408,20 +416,62 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/engineering/lobby) +"agB" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) "agF" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"agO" = ( -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"agL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"agX" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/west, +/turf/open/space/openspace, +/area/space/nearstation) +"ahf" = ( +/turf/closed/wall/r_wall, +/area/station/medical/chemistry) "ahh" = ( /obj/effect/turf_decal/delivery, /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"ahl" = ( +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) +"ahx" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/item/clothing/head/utility/welding{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/toy/figure/lawyer{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/aft) "ahC" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix{ dir = 8 @@ -448,12 +498,6 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/hallway/primary/aft) -"ahT" = ( -/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/dark, -/area/station/engineering/engine_smes) "ahU" = ( /obj/effect/turf_decal/delivery, /obj/effect/spawner/random/vending/snackvend, @@ -474,22 +518,18 @@ /turf/open/floor/iron/dark, /area/station/science/cytology) "aia" = ( -/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/carpet, -/area/station/command/meeting_room/council) -"aii" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) +/obj/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/circuit, +/area/station/command/bridge) "aim" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "aiq" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/doppler_array{ @@ -505,18 +545,11 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"aiv" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/machinery/camera/autoname/directional/east, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "aiA" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/emcloset, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aiE" = ( /obj/structure/railing, /obj/structure/cable, @@ -535,7 +568,11 @@ /area/station/science/robotics/lab) "aiP" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, +/obj/structure/chair/sofa/middle/brown{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, /area/station/cargo/storage) "aiY" = ( /obj/structure/railing{ @@ -545,6 +582,13 @@ /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"ajw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/icecream_vat, +/obj/structure/light_construct/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) "ajB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -579,15 +623,16 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ajU" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/item/surgical_drapes, -/obj/machinery/airalarm/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white/textured_large, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) "ajV" = ( /obj/structure/lattice/catwalk, @@ -617,6 +662,13 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/grimy, /area/station/security/interrogation) +"akk" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "ako" = ( /obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -642,6 +694,16 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) +"akv" = ( +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/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/dark, +/area/station/security/checkpoint/supply) "akE" = ( /obj/structure/chair{ dir = 1 @@ -659,35 +721,13 @@ codes_txt = "patrol;next_patrol=8-Kitchen"; location = "7-Gateway" }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"akK" = ( -/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/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "akL" = ( /obj/machinery/telecomms/server/presets/engineering, /obj/effect/turf_decal/tile/yellow/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"akS" = ( -/obj/structure/rack, -/obj/item/storage/crayons{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 5 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "akU" = ( /obj/effect/landmark/start/hangover, /obj/structure/disposalpipe/segment{ @@ -696,7 +736,9 @@ /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/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "akW" = ( /obj/effect/turf_decal/trimline/dark_blue/line{ @@ -713,7 +755,16 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"alb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "alh" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -722,9 +773,11 @@ /obj/structure/railing/corner/end/flip{ dir = 8 }, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "ali" = ( /obj/structure/plaque/static_plaque/golden/commission/pubby{ pixel_y = 32 @@ -749,13 +802,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"alk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "als" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -767,16 +813,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/sorting/mail, /obj/effect/mapping_helpers/mail_sorting/medbay/virology, +/obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"alx" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) +"alA" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "alF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table_frame, @@ -787,21 +832,36 @@ /obj/effect/spawner/random/maintenance/no_decals, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"alG" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 +"alM" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/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 = 1 }, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmoslowersm" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/supermatter/room) "alT" = ( /obj/structure/disposalpipe/segment, /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"amd" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + anchored = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "ame" = ( /obj/machinery/newscaster/directional/west, /obj/machinery/light/directional/west, @@ -815,16 +875,24 @@ /turf/open/floor/iron/dark, /area/station/security/warden) "ams" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 +/obj/machinery/door/window/left/directional/west, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "Privacy Shutters" }, -/obj/effect/landmark/navigate_destination/hop, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/obj/machinery/door/window/brigdoor/right/directional/east{ + name = "Head of Personnel's Desk"; + req_access = list("hop") + }, +/obj/item/pen, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) "amt" = ( /obj/effect/decal/cleanable/dirt, /obj/item/reagent_containers/cup/bucket{ @@ -845,13 +913,12 @@ }, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "amJ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - 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, /area/station/cargo/miningoffice) "amU" = ( @@ -860,6 +927,22 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"amW" = ( +/obj/structure/table/optable, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery) +"amY" = ( +/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/opposingcorners{ + dir = 1 + }, +/obj/structure/sign/poster/official/work_for_a_future/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "anj" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -871,6 +954,11 @@ "anm" = ( /turf/closed/wall, /area/station/service/library/printer) +"ano" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "anp" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -888,65 +976,73 @@ }, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"anB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/vending/engivend, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "anG" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/openspace, /area/station/security/detectives_office) -"anJ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "anY" = ( /turf/open/floor/engine/hull/air, /area/station/maintenance/port/fore) +"aod" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/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/engineering/supermatter/room/upper) "aoh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/engineering/tank, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"aor" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/atmos/project) +"aoi" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/closet/crate, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "aoz" = ( /obj/effect/turf_decal/tile/red{ dir = 1 }, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, /area/station/medical/morgue) -"aoK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/athletic_mixed, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "aoQ" = ( +/obj/effect/turf_decal/arrows{ + 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, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) +"aoY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/closet/radiation, +/obj/structure/sign/warning/no_smoking/directional/west, +/turf/open/floor/iron, +/area/station/engineering/lobby) "apa" = ( /obj/structure/rack, /obj/machinery/door/window/left/directional/east{ - name = "Jetpack Storage" + name = "Magboot Storage"; + req_access = list("eva") }, /obj/item/clothing/shoes/magboots{ pixel_x = -4; @@ -957,8 +1053,8 @@ pixel_x = 4; pixel_y = -3 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "apf" = ( /obj/machinery/status_display/evac/directional/north, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -981,42 +1077,36 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) -"apA" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +"apv" = ( +/obj/effect/turf_decal/siding{ dir = 1 }, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "CO2 Multideck Adapter"; - dir = 4 - }, -/obj/machinery/meter{ - name = "C02 meter" +/obj/effect/turf_decal/trimline/white/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"apy" = ( +/obj/item/ammo_casing/spent{ + pixel_x = -8; + pixel_y = -4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"apE" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"apI" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Chief Engineers Privacy Shutters" +/obj/item/ammo_casing/spent{ + pixel_x = -3; + pixel_y = 3 }, -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "apK" = ( /turf/closed/wall/r_wall, /area/station/security/range) "apM" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/station/maintenance/port/aft) "apR" = ( /turf/closed/wall/r_wall, @@ -1064,18 +1154,19 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"aqj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"aqi" = ( +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/arrow_ccw, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "aqk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aqm" = ( /turf/closed/mineral/random/stationside/asteroid/porus, /area/space/nearstation) @@ -1084,33 +1175,33 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/holopad, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) -"aqy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"aqp" = ( +/obj/structure/railing/corner{ + dir = 8 }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/station/engineering/main) +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "aqD" = ( /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) -"aqG" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aqQ" = ( -/obj/item/kirbyplants/photosynthetic, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) +"aqE" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"aqP" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) "aqS" = ( /obj/item/cigbutt{ pixel_x = -15 @@ -1126,14 +1217,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"are" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +"arc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "ars" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1167,40 +1257,25 @@ dir = 8 }, /area/station/science/robotics) -"arw" = ( -/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/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "arz" = ( /obj/item/radio/intercom/directional/west, /turf/open/openspace, /area/station/science/xenobiology) +"arG" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "arK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/light/directional/east, /obj/machinery/light_switch/directional/east, /turf/open/floor/wood, /area/station/service/chapel) -"arL" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"arN" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = 6 - }, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/wood, -/area/station/security/courtroom) "arT" = ( /turf/closed/wall/r_wall, /area/station/science/xenobiology) @@ -1216,6 +1291,14 @@ /obj/effect/landmark/start/cook, /turf/open/floor/glass, /area/station/service/kitchen) +"asl" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/grass, +/area/station/commons/dorms) "asx" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -1231,22 +1314,20 @@ /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/command/bridge) -"asA" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "asI" = ( /obj/structure/railing/corner{ dir = 4 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "asK" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/airalarm/directional/south, @@ -1255,16 +1336,46 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/port) -"asY" = ( -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ +"asM" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Mix Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"asU" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ dir = 4 }, +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/upper) +"asV" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "!"; + pixel_x = 9; + pixel_y = -1 + }, +/turf/closed/wall, +/area/station/maintenance/starboard/aft/upper) +"asY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) +"asZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ata" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -1272,6 +1383,10 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"atf" = ( +/obj/machinery/holopad, +/turf/open/floor/glass, +/area/station/medical/patients_rooms/room_a) "ati" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "outerbrig"; @@ -1285,13 +1400,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"atj" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "atm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -1313,6 +1421,25 @@ dir = 8 }, /area/station/hallway/secondary/service) +"atE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"atJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "atV" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/tile/purple, @@ -1325,19 +1452,22 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"aud" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ +"atZ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/arrow_ccw{ dir = 4 }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"aug" = ( -/obj/machinery/vending/games, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/south, /turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/area/station/hallway/primary/aft) +"auf" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "aum" = ( /obj/structure/sign/poster/official/random/directional/south, /obj/effect/turf_decal/siding/wood, @@ -1359,21 +1489,19 @@ /obj/effect/turf_decal/tile/purple/full, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"aur" = ( +/obj/structure/chair{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "aut" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ dir = 6 }, /turf/open/space/openspace, /area/space/nearstation) -"auA" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "auF" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -1383,15 +1511,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/brig) -"auP" = ( -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) "auS" = ( /obj/item/toy/plush/moth{ name = "Goofy Greg"; @@ -1421,28 +1540,30 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/cargo/storage) -"avY" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/medkit/o2{ - pixel_x = 3; +"avj" = ( +/obj/structure/table, +/obj/item/gavelhammer{ pixel_y = 3 }, -/obj/item/storage/medkit/o2, -/obj/item/storage/medkit/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/station/security/courtroom) +"avw" = ( +/obj/machinery/vatgrower, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"avI" = ( /obj/structure/lattice/catwalk, -/obj/machinery/door/window/right/directional/west{ - name = "First Aid Supplies"; - req_access = list("medical") - }, /turf/open/openspace, -/area/station/medical/storage) +/area/station/maintenance/starboard/upper) +"avJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/hangover, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "avZ" = ( /obj/structure/railing{ dir = 4 @@ -1456,11 +1577,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/research) -"awv" = ( -/obj/structure/cable, -/obj/item/assembly/mousetrap/armed, -/turf/open/floor/plating, -/area/station/maintenance/port) +"awk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "aww" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1478,9 +1600,16 @@ /turf/open/floor/iron, /area/station/hallway/primary/aft) "awD" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/obj/structure/sign/directions/command/directional/north{ + dir = 2; + pixel_y = 0 + }, +/obj/structure/sign/directions/security/directional/north{ + dir = 2; + pixel_y = 7 + }, +/turf/closed/wall, +/area/station/maintenance/port/greater) "awG" = ( /turf/open/misc/asteroid/airless, /area/station/science/ordnance/bomb) @@ -1490,21 +1619,33 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"awK" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "awP" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"axn" = ( -/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/cmo) +"awR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"awV" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"awX" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"axj" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, +/area/station/commons/fitness/recreation) "axr" = ( /obj/structure/railing{ dir = 4 @@ -1521,15 +1662,21 @@ /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) "axN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/medical/abandoned) +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "axQ" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/dark, @@ -1538,21 +1685,14 @@ /obj/effect/turf_decal/bot/right, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"ayn" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 9 - }, -/obj/effect/turf_decal/siding/brown/corner, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) -"ayr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/skub{ - pixel_x = 7; - pixel_y = 18 +"ayi" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/door/firedoor, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "ayA" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -1567,16 +1707,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"ayD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/water, -/area/station/maintenance/port/fore) "ayF" = ( /obj/structure/closet/crate/trashcart/filled, /obj/item/poster/random_contraband{ @@ -1584,6 +1714,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"ayI" = ( +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "ayR" = ( /obj/structure/table, /obj/item/storage/crayons{ @@ -1593,6 +1730,18 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/wood, /area/station/service/library/printer) +"ayU" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/structure/hoop{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "ayZ" = ( /obj/docking_port/stationary/escape_pod{ dir = 2 @@ -1617,24 +1766,60 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"azj" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron, +/area/station/commons/locker) "azn" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/medical/abandoned) +"azo" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = 2 + }, +/obj/structure/sign/poster/official/periodic_table/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "azt" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/open/space/basic, /area/station/solars/port/aft) "azx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/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/command/meeting_room/council) +"azG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/flag/mars/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "azI" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -1671,18 +1856,21 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/research) -"aAk" = ( -/obj/structure/table/wood, -/obj/item/paper/crumpled{ - pixel_x = 2; - pixel_y = 7 +"aAg" = ( +/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 = 8 }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 1 +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"aAn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron, +/area/station/engineering/lobby) "aAr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -1700,6 +1888,24 @@ }, /turf/open/floor/iron, /area/station/science/robotics) +"aAM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small/directional/east, +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"aBc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/medical/break_room) "aBl" = ( /obj/structure/bookcase/random, /turf/open/floor/wood/large, @@ -1721,38 +1927,65 @@ /obj/structure/cable, /turf/open/openspace, /area/station/hallway/primary/port) -"aBv" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"aBy" = ( -/obj/structure/table/wood, -/obj/machinery/fax{ - fax_name = "Chief Medical Officer's Office"; - name = "Chief Medical Officer's Fax Machine" +"aBu" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 11 }, -/obj/machinery/keycard_auth/wall_mounted/directional/north, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) -"aBF" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/science/xenobiology/hallway) -"aBN" = ( -/obj/structure/railing{ - dir = 9 +/obj/machinery/cell_charger{ + pixel_x = -2 }, -/obj/effect/turf_decal/siding/yellow{ - dir = 9 +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = -5 }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 +/obj/item/multitool{ + pixel_x = 6; + pixel_y = 2 }, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"aBy" = ( +/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/window/reinforced/spawner/directional/south, +/obj/machinery/door/window/right/directional/west{ + name = "First Aid Supplies"; + req_access = list("medical") }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"aBz" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"aBF" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/science/xenobiology/hallway) +"aBN" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/landmark/navigate_destination/chemfactory, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "aBO" = ( @@ -1777,10 +2010,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) -"aBV" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/wood, -/area/station/commons/dorms) "aBW" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ dir = 4 @@ -1820,11 +2049,11 @@ }, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aCD" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aCE" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/trimline/blue/filled/line, @@ -1843,31 +2072,47 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"aDh" = ( -/obj/structure/rack, -/obj/item/cardboard_cutout{ - pixel_x = -5 +"aDb" = ( +/obj/machinery/button/elevator{ + id = "catwalk_engi"; + pixel_y = -24 }, -/obj/item/cardboard_cutout, -/obj/item/cardboard_cutout{ - pixel_x = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"aDd" = ( +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"aDk" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/obj/structure/sign/poster/official/no_erp/directional/east, /turf/open/floor/plating, -/area/station/maintenance/port) +/area/station/commons/dorms) "aDm" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/holopad, -/obj/structure/cable, /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, /area/station/medical/morgue) -"aDp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 +"aDw" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "aDF" = ( /obj/structure/reagent_dispensers/watertank, @@ -1908,24 +2153,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"aDY" = ( -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_interior"; - name = "Malpractice Tower Exterior Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-passthrough" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/virology) +"aEg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "aEm" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -1935,14 +2166,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/explab) -"aEr" = ( -/obj/machinery/atmospherics/components/binary/pump/off{ - dir = 8; - name = "O2 To Port" +"aEA" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 1; + initialize_directions = 1 }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "aEG" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/closet/emcloset, @@ -1963,25 +2195,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aEZ" = ( /turf/open/floor/iron, /area/station/science/breakroom) -"aFg" = ( -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"aFe" = ( +/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/engineering/atmos) "aFi" = ( /obj/structure/ladder, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"aFk" = ( -/obj/structure/sign/clock/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"aFm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"aFn" = ( +/obj/structure/table/wood/fancy/cyan, +/obj/item/book/manual/wiki/atmospherics{ + pixel_y = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "aFt" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -2007,28 +2242,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"aFP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/dark/arrow_ccw{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark/arrow_ccw{ - dir = 4 - }, -/turf/open/floor/iron/edge{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"aFQ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/computer/atmos_control/nitrous_tank{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "aFV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, @@ -2043,25 +2256,41 @@ dir = 4 }, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "aGb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/railing, /obj/structure/fake_stairs/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) +"aGe" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_y = 6 + }, +/obj/item/cigbutt{ + pixel_x = -11; + pixel_y = 15 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/aft/upper) "aGf" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/secondary/entry) -"aGp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"aGx" = ( +/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) "aGG" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -2073,41 +2302,22 @@ "aGR" = ( /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"aGX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/rnd/production/protolathe/department/engineering, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"aHc" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "SM_Outside_shutters"; - name = 4 +"aHb" = ( +/obj/structure/sign/poster/contraband/grey_tide/directional/north, +/obj/structure/rack, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = -13 }, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"aHe" = ( -/obj/machinery/button/door/directional/west{ - id = "Cabin5"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, -/obj/item/storage/box/lights/mixed, -/obj/item/kirbyplants/random/dead{ - name = "dead plant" +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical{ + pixel_y = -2 }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"aHo" = ( -/obj/structure/safe, -/obj/item/storage/fancy/pickles_jar, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron, +/area/station/commons/storage/primary) "aHp" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/trimline/dark/arrow_cw{ @@ -2121,19 +2331,22 @@ dir = 8 }, /area/station/hallway/primary/fore) -"aHD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Virology Maintenance" +"aHB" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/soda_cans/cola{ + pixel_x = -4; + pixel_y = 9 }, -/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 = 2 +/obj/item/cigbutt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"aHH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "aHO" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, @@ -2161,19 +2374,16 @@ codes_txt = "delivery;dir=2"; location = "Court" }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/security/courtroom) -"aIt" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/camera/autoname/directional/west, -/obj/structure/railing{ - dir = 4 +"aIh" = ( +/obj/machinery/camera/preset/ordnance{ + c_tag = "Cannon's exit" }, -/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/engineering/storage_shared) +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) "aIA" = ( /obj/structure/railing{ dir = 8 @@ -2199,6 +2409,13 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/security/brig) +"aIJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "aIL" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -2227,10 +2444,37 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/detectives_office/private_investigators_office) +"aIR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window{ + dir = 8; + name = "Cargo Bay Shutters"; + id = "qm_cargobay" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/cargo/storage) "aIU" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) +"aIY" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/modular_computer/preset/engineering{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) +"aIZ" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/engineering/atmos) "aJg" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/service/theatre, @@ -2251,12 +2495,28 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"aJn" = ( +/obj/structure/sign/poster/official/fruit_bowl, +/turf/closed/wall, +/area/station/maintenance/starboard/aft/upper) +"aJs" = ( +/obj/effect/turf_decal/trimline/dark_green, +/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_dark, +/area/station/engineering/atmos/upper) "aJu" = ( /obj/structure/sign/poster/official/random/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/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"aJA" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "aJD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -2281,26 +2541,34 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) +"aJR" = ( +/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 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "aJV" = ( /obj/effect/spawner/random/food_or_drink, /turf/open/floor/plating, /area/station/maintenance/port) "aKc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner{ + dir = 1 + }, /area/station/hallway/primary/central) "aKj" = ( -/obj/structure/closet/crate, -/obj/item/gps, -/obj/item/assembly/timer, -/obj/item/gps, -/obj/item/assembly/signaler, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "aKk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -2310,40 +2578,34 @@ }, /turf/open/floor/iron/airless, /area/station/maintenance/starboard/aft) -"aKq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 +"aKo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "aKz" = ( /obj/structure/railing{ dir = 8 }, -/obj/structure/closet, -/obj/effect/spawner/random/aimodule/harmful{ - pixel_y = 5 +/obj/structure/table/wood/fancy/blue, +/obj/effect/spawner/random/aimodule/neutral{ + pixel_y = 10 }, -/obj/item/ai_module/reset/purge{ - pixel_y = -2 +/obj/effect/spawner/random/aimodule/neutral{ + pixel_x = 3; + pixel_y = -3 }, -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aKA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, /area/station/service/chapel) -"aKB" = ( -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "aKE" = ( /obj/machinery/door/airlock/virology, /obj/effect/turf_decal/tile/dark_green/fourcorners, @@ -2351,6 +2613,24 @@ /obj/effect/mapping_helpers/airlock/access/all/science/general, /turf/open/floor/iron/dark, /area/station/science/cytology) +"aKG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"aKJ" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 4 + }, +/obj/item/cigbutt, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "aKR" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 @@ -2382,9 +2662,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"aLd" = ( -/turf/open/floor/glass/airless, -/area/station/maintenance/starboard/lesser) "aLl" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -2399,6 +2676,17 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"aLq" = ( +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/mail_sorting/supply/disposals, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "aLu" = ( /obj/item/paint/white{ pixel_x = 11; @@ -2406,6 +2694,25 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"aLA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"aLB" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"aLG" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing, +/obj/machinery/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "aLJ" = ( /turf/open/floor/carpet, /area/station/security/courtroom) @@ -2417,28 +2724,14 @@ /turf/open/space/openspace, /area/space/nearstation) "aLT" = ( -/obj/machinery/computer/records/medical{ - dir = 1 - }, /obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aLW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"aLX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/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/command/meeting_room/council) "aLY" = ( /obj/item/stack/cable_coil{ pixel_y = -12 @@ -2446,13 +2739,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"aMa" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "aMd" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -2476,38 +2762,26 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) -"aMq" = ( +"aMl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"aMs" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "aMw" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron/dark, /area/station/engineering/storage) -"aMz" = ( -/obj/item/restraints/legcuffs/beartrap/prearmed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aMD" = ( -/obj/item/flashlight/lantern{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "aMK" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "main_surgery" +/obj/effect/turf_decal/siding/dark_blue/inner_corner{ + dir = 8 }, -/obj/machinery/smartfridge/organ, -/obj/machinery/door/firedoor, /turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +/area/station/medical/medbay/central) "aMM" = ( /obj/effect/decal/cleanable/plasma, /obj/item/stack/rods/two, @@ -2524,27 +2798,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "aNc" = ( /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/zoo) -"aNf" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) -"aNg" = ( -/obj/structure/chair/sofa/corner/brown, -/obj/item/instrument/eguitar, -/obj/structure/sign/poster/contraband/space_cube/directional/north, -/obj/machinery/light/small/broken/directional/east, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "aNB" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -2565,6 +2827,19 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"aNE" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/horrific_experiment, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) +"aNI" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "aNL" = ( /obj/effect/turf_decal/tile/dark_blue{ dir = 1 @@ -2573,10 +2848,13 @@ /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"aNT" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"aNP" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/folder/yellow, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "aNU" = ( /obj/structure/chair/office{ dir = 4 @@ -2602,11 +2880,27 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"aOo" = ( +/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/plating, +/area/station/maintenance/aft/upper) "aOs" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/burgundy, /turf/open/space/openspace, /area/space/nearstation) +"aOE" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/science/lobby) +"aOI" = ( +/obj/effect/spawner/random/clothing/wardrobe_closet_colored, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "aOK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -2614,6 +2908,12 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"aOL" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "aOQ" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -2631,28 +2931,16 @@ /turf/open/floor/plating, /area/station/maintenance/port/greater) "aPg" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/table, -/obj/item/megaphone/cargo{ - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/railing, +/turf/open/floor/iron, +/area/station/cargo/storage) "aPq" = ( /obj/structure/table/wood, /obj/item/gavelblock, /obj/item/gavelhammer, /turf/open/floor/wood, /area/station/security/courtroom) -"aPr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "aPv" = ( /obj/structure/railing/corner{ dir = 8 @@ -2686,7 +2974,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/machinery/newscaster/directional/south, /obj/machinery/light/directional/south, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) @@ -2694,30 +2981,19 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"aQa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ladder, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "aQc" = ( /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/service/library/printer) -"aQj" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/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{ +"aQq" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ dir = 4 }, /turf/open/floor/iron, -/area/station/commons/dorms) +/area/station/commons/fitness/recreation) "aQu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -2738,20 +3014,11 @@ /obj/structure/table, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"aQL" = ( -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) -"aQM" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) +"aQO" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "aRa" = ( /obj/effect/turf_decal/trimline/red/corner{ dir = 1 @@ -2765,19 +3032,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"aRb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/science/server) -"aRg" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"aRc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos/upper) "aRy" = ( /obj/structure/railing/corner/end/flip{ dir = 4 @@ -2787,27 +3045,32 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aRW" = ( -/obj/machinery/requests_console/directional/west, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/mapping_helpers/requests_console/assistance, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"aSd" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/machinery/shower/directional/east, -/obj/item/razor, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) +/area/station/ai/satellite/interior) +"aSc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ + dir = 8 + }, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) +"aSg" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/cmo) +"aSk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "aSq" = ( /obj/structure/cable, /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"aSB" = ( -/turf/open/floor/engine/hull/air, -/area/station/engineering/break_room) "aSD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2821,7 +3084,9 @@ /obj/effect/turf_decal/trimline/red/filled/mid_joiner{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "aSF" = ( /obj/structure/lattice/catwalk, @@ -2831,6 +3096,37 @@ }, /turf/open/openspace, /area/station/command/gateway) +"aSH" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) +"aSL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) +"aSP" = ( +/obj/structure/rack, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/under/color/red, +/obj/item/clothing/neck/tie/red{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/soft/red, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"aSU" = ( +/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, +/turf/open/floor/catwalk_floor, +/area/station/cargo/storage) "aSW" = ( /turf/closed/wall, /area/station/service/hydroponics/garden/abandoned) @@ -2839,7 +3135,7 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aSY" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -2880,11 +3176,14 @@ /obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/open/floor/iron/dark, /area/station/science/lobby) -"aTH" = ( -/obj/effect/spawner/random/structure/crate, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"aTB" = ( +/obj/structure/lattice/catwalk, +/obj/item/toy/plush/lizard_plushie/green{ + name = "Hides-In-Rafters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "aTS" = ( /obj/structure/table, /obj/item/wrench{ @@ -2897,13 +3196,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"aTV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "aTW" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/effect/turf_decal/trimline/red/filled/warning{ @@ -2948,37 +3240,15 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"aUD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"aUF" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/rack, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "aUO" = ( /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/stripes{ dir = 4 }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/textured, +/area/station/command/eva) "aUU" = ( /obj/structure/closet/crate/freezer, /obj/item/food/grown/tomato, @@ -3042,21 +3312,17 @@ /area/station/maintenance/starboard/aft) "aVm" = ( /obj/structure/disposalpipe/segment{ - dir = 10 + dir = 9 }, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "aVy" = ( /obj/structure/sign/directions/security/directional/north{ dir = 2; - pixel_y = 38 + pixel_y = 0 }, -/turf/open/openspace, +/turf/closed/wall/r_wall, /area/station/maintenance/port) -"aVD" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/lobby) "aVG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -3073,35 +3339,28 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"aVL" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ +"aVN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/corner{ dir = 4 }, -/obj/machinery/wall_healer/directional/north, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay"); - c_tag = "Medbay - Lobby" - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aVN" = ( -/turf/closed/wall, -/area/station/command/teleporter) -"aVP" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/area/station/hallway/primary/central) +"aVQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "aVT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/fore) +"aVZ" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "aWa" = ( /obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, /obj/structure/chair/sofa/left/brown{ @@ -3113,19 +3372,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"aWc" = ( -/obj/structure/lattice, -/obj/machinery/power/tracker, -/turf/open/space/basic, -/area/station/solars/starboard/fore) "aWk" = ( /obj/machinery/light/directional/west, -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Medbay - Upper Chief Medical Office West"; - network = list("ss13","medbay") - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "aWm" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) @@ -3151,6 +3403,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"aWA" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"aWE" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "aWH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3160,29 +3433,32 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"aWN" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 +"aWM" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"aWN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/railing/corner{ dir = 8 }, /obj/structure/cable, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/storage) "aWP" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"aWT" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, +"aWU" = ( +/obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/area/station/engineering/supermatter/room/upper) "aWV" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/captain/private) @@ -3202,27 +3478,6 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) -"aXn" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/horrific_experiment, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"aXH" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - 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{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "aXN" = ( /obj/structure/rack, /obj/item/storage/box/lights/mixed, @@ -3238,8 +3493,16 @@ "aXW" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, +/obj/machinery/computer/security/telescreen/aiupload/directional/north, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, /turf/open/openspace, /area/station/security/checkpoint/customs) +"aXY" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) "aXZ" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -3247,36 +3510,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"aYk" = ( -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree{ - pixel_x = 3 - }, -/obj/item/canvas/twentythree_twentythree{ - pixel_x = 3 - }, -/obj/item/canvas/twentythree_twentythree{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) "aYm" = ( -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) -"aYq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/fluff/paper/corner, -/obj/structure/fluff/paper/stack{ - dir = 9 +/obj/structure/cable, +/obj/effect/spawner/random/trash/cigbutt, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/chem_storage) "aYt" = ( /obj/machinery/light/directional/north, /obj/structure/railing{ @@ -3300,6 +3541,13 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/plating, /area/station/security/execution/education) +"aYF" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "aYR" = ( /obj/item/kirbyplants/random, /obj/machinery/light/directional/south, @@ -3312,36 +3560,54 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) +"aYU" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"aZa" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "nay"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "aZd" = ( -/obj/effect/turf_decal/siding/green, /obj/effect/spawner/random/engineering/tracking_beacon, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, /mob/living/basic/bot/cleanbot/autopatrol, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=6-Courtroom"; location = "5-Litterbox" }, -/turf/open/floor/iron/dark/smooth_large, +/obj/effect/turf_decal/tile/dark_green, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, /area/station/hallway/primary/central) "aZf" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/maintenance/port/aft) "aZo" = ( -/obj/effect/turf_decal/siding/wood, /obj/machinery/firealarm/directional/south, -/obj/structure/tank_holder/extinguisher, /obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes, +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "aZs" = ( /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/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) +"aZy" = ( +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "aZA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3367,25 +3633,18 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"aZP" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-passthrough" +"aZG" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay-office"; + name = "Medbay Shutters"; + dir = 4 }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, -/area/station/maintenance/port) -"aZQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/air_sensor/incinerator_tank, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ - dir = 6 - }, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) +/area/station/medical/office) "aZT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, @@ -3397,17 +3656,34 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) -"bam" = ( -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"bab" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ban" = ( /obj/structure/closet/lasertag/red, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/under/color/red, /turf/open/floor/eighties/red, /area/station/maintenance/hallway/abandoned_recreation) +"bas" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/turf/open/openspace, +/area/station/medical/medbay/central) +"bau" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/engineering/main) +"bav" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/fire/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "baw" = ( /obj/structure/sink/directional/east, /obj/structure/mirror/directional/west, @@ -3416,26 +3692,32 @@ }, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) +"bax" = ( +/obj/effect/decal/cleanable/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + 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/line{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "baA" = ( /obj/machinery/light/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "baD" = ( /obj/structure/cable/layer3, /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/ai_monitored/turret_protected/aisat/foyer) -"baF" = ( -/obj/structure/reagent_dispensers/plumbed{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/foyer) "baI" = ( /obj/structure/sign/warning/cold_temp/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -3449,6 +3731,12 @@ /obj/structure/ladder, /turf/open/openspace, /area/station/maintenance/port/fore) +"baY" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "bba" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner{ @@ -3461,6 +3749,9 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/primary/central) +"bbn" = ( +/turf/closed/wall, +/area/station/commons/dorms/laundry) "bbx" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -3474,15 +3765,6 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/security/eva) -"bbO" = ( -/obj/item/flashlight/flashdark{ - name = "Envy Flashlight" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "bbV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc/auto_name/directional/west, @@ -3490,6 +3772,14 @@ /obj/effect/mapping_helpers/apc/unlocked, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"bbX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) "bbY" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /obj/machinery/navbeacon{ @@ -3521,12 +3811,35 @@ /turf/open/floor/wood/large, /area/station/service/kitchen) "bcg" = ( -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 1 +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast-2"; + name = "Bridge Blast Door" }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + id_tag = "innerbridge" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, /area/station/command/bridge) +"bch" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/obj/item/circuitboard/machine/cyborgrecharger, +/obj/structure/sign/poster/contraband/energy_swords/directional/north, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) +"bci" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "cargocatwalkmaint" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "bcl" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -3535,7 +3848,7 @@ dir = 8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bcH" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/table/reinforced, @@ -3562,10 +3875,6 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) -"bcW" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "bda" = ( /obj/effect/spawner/random/structure/grille, /obj/effect/decal/cleanable/dirt, @@ -3579,11 +3888,14 @@ dir = 1 }, /area/station/science/ordnance/storage) -"bdh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"bdf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/athletic_mixed, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "bdi" = ( /obj/machinery/light/directional/south, /obj/structure/rack, @@ -3591,7 +3903,16 @@ /obj/structure/cable, /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"bdn" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"bdq" = ( +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "bdw" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -3618,7 +3939,15 @@ }, /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"bdM" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "SM_shutters"; + name = "Supermatter Radiation Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter) "bdT" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -3635,28 +3964,55 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) +"bdW" = ( +/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/light/small/dim/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/central) +"bdX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "bea" = ( /obj/structure/railing{ dir = 5 }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"beb" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/commons/dorms) "bec" = ( /obj/machinery/door/airlock/command{ name = "Emergency Communication Console" }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/hallway/secondary/entry) "beg" = ( /turf/closed/wall/r_wall, /area/station/security/prison/safe) +"ber" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) +"bex" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "beF" = ( /obj/structure/table/wood/fancy, /obj/item/lead_pipe{ @@ -3672,25 +4028,33 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"bfc" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"beT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "bfh" = ( -/obj/structure/lattice/catwalk, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/suit_storage_unit/medical, -/turf/open/openspace, -/area/station/medical/storage) +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/shower/directional/east, +/obj/effect/turf_decal/siding/blue/end{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/chemistry) "bfj" = ( /obj/structure/broken_flooring/corner/directional/south, /obj/structure/sign/poster/official/safety_internals/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"bfl" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/commons/dorms) "bfo" = ( /obj/item/storage/backpack{ pixel_x = 5; @@ -3699,13 +4063,10 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "bfq" = ( +/obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 + dir = 1 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "bfw" = ( @@ -3718,34 +4079,76 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/security/interrogation) +"bfC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"bfH" = ( +/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/maintenance/starboard/upper) "bfN" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/structure/table, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = 3 - }, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = 3 - }, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = 3 - }, -/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, +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display/ai/directional/west, /turf/open/floor/iron, /area/station/cargo/storage) -"bgm" = ( -/obj/structure/stairs/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"bgA" = ( -/obj/machinery/suit_storage_unit{ - storage_type = /obj/item/clothing/shoes/magboots +"bfQ" = ( +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"bfY" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bge" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"bgs" = ( +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/stamp/granted{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/wood/large, +/area/station/service/library/private) +"bgx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "bgB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -3765,9 +4168,14 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 }, -/obj/machinery/vending/assist, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, +/obj/structure/table/reinforced, +/obj/machinery/button/door/directional/west{ + id = "Lcommissaryshutter"; + name = "Left Shutter Control"; + pixel_x = 0 + }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "bhc" = ( @@ -3784,22 +4192,41 @@ /obj/machinery/telecomms/hub/preset, /turf/open/floor/iron/dark, /area/station/tcommsat/server) +"bhn" = ( +/obj/machinery/air_sensor/carbon_tank, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos/upper) "bht" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"bhy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "bhJ" = ( /obj/structure/easel, /turf/open/floor/plating, /area/station/maintenance/disposal) -"bhN" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" +"bhM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 }, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"bhN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/cargo/storage) +"bhQ" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/station/solars/starboard/fore) "bhU" = ( /obj/machinery/igniter/incinerator_ordmix, /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ @@ -3808,19 +4235,17 @@ /turf/open/floor/engine/vacuum, /area/station/science/ordnance/burnchamber) "bic" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/command) +/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/edge, +/area/station/hallway/primary/central) "bie" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/service/chapel/office) -"bij" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "bio" = ( /obj/effect/turf_decal/arrows/white{ color = "#F7F707"; @@ -3828,11 +4253,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"bit" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/textured_large, -/area/station/medical/abandoned) "bix" = ( /obj/machinery/camera/autoname/directional/east, /turf/open/floor/engine, @@ -3851,6 +4271,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"biI" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"biO" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/office) "biP" = ( /obj/structure/railing{ dir = 8 @@ -3896,7 +4326,7 @@ name = "Armory Shutters" }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "biZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3911,15 +4341,30 @@ "bjq" = ( /turf/open/floor/plating, /area/station/maintenance/department/science/central) +"bjr" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "bjD" = ( /obj/effect/spawner/random/maintenance, /obj/structure/rack, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"bjH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/engineering/engine_smes) "bjK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bkc" = ( /obj/machinery/light/warm/directional/west, /obj/machinery/computer/mech_bay_power_console{ @@ -3946,7 +4391,24 @@ /obj/structure/rack, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"bkk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) +"bkr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "bkt" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner, @@ -3962,14 +4424,18 @@ /turf/open/floor/wood, /area/station/security/courtroom) "bkv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/railing{ + dir = 5 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/obj/structure/rack, +/obj/item/pipe_dispenser{ + pixel_y = 8 }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) +/obj/item/clothing/glasses/meson/engine{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "bkA" = ( /obj/effect/turf_decal/delivery, /obj/effect/spawner/random/entertainment/arcade{ @@ -3977,6 +4443,14 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"bkC" = ( +/obj/machinery/atmospherics/components/binary/pump/on/supply/hidden/layer4{ + dir = 1; + name = "Airlock Supply Pump"; + target_pressure = 300 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "bkD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -3984,8 +4458,9 @@ }, /obj/effect/landmark/blobstart, /obj/machinery/light/floor, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "bkO" = ( /obj/structure/sign/clock/directional/east, /obj/effect/decal/cleanable/dirt/dust, @@ -3995,13 +4470,13 @@ }, /turf/open/floor/iron/small, /area/station/security/mechbay) -"blh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +"blm" = ( +/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/catwalk_floor, +/area/station/cargo/storage) "bln" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -4015,13 +4490,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"blq" = ( -/obj/effect/decal/cleanable/glitter, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"bly" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/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) "blz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4063,7 +4540,6 @@ /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, -/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -4075,6 +4551,14 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron, /area/station/construction/storage_wing) +"blF" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/aft/upper) +"blI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "blJ" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/line{ @@ -4083,12 +4567,13 @@ /obj/effect/turf_decal/trimline/green/filled/corner, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"bmc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"blW" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "bmg" = ( /obj/effect/turf_decal/trimline/dark_blue/line{ dir = 4 @@ -4106,7 +4591,12 @@ pixel_y = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"bmw" = ( +/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) "bmx" = ( /obj/structure/transport/linear/public, /turf/open/openspace, @@ -4121,11 +4611,12 @@ /obj/effect/mapping_helpers/mail_sorting/service/bar, /obj/effect/mapping_helpers/mail_sorting/service/theater, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "bmH" = ( /obj/machinery/barsign{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -4141,10 +4632,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/courtroom) -"bmO" = ( -/obj/structure/closet/radiation, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +"bmK" = ( +/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/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) "bmP" = ( /obj/structure/railing{ dir = 8 @@ -4160,10 +4654,6 @@ }, /turf/open/floor/iron, /area/station/science/explab) -"bmQ" = ( -/obj/structure/musician/piano, -/turf/open/floor/plating, -/area/station/maintenance/port) "bmS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4173,6 +4663,13 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"bnh" = ( +/obj/effect/spawner/random/trash/graffiti{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "bnl" = ( /obj/effect/turf_decal/tile/dark/anticorner/contrasted{ dir = 8 @@ -4202,30 +4699,60 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bnW" = ( /obj/structure/cable, /obj/machinery/door/airlock/engineering, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"boh" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/lattice/catwalk, -/turf/open/floor/engine/hull/air, -/area/station/engineering/break_room) "boj" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/light_switch/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"bop" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1; + pixel_y = -2 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "boq" = ( /obj/item/toy/snappop, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"bor" = ( +/obj/structure/safe/floor{ + name = "Critical Supplies Safe" + }, +/obj/item/reagent_containers/cup/glass/bottle/wine_voltaic{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/vodka{ + pixel_y = 15; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/juice/orangejuice{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/reagent_containers/cup/glass/flask{ + pixel_x = -6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "bot" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, @@ -4237,10 +4764,34 @@ /obj/structure/grille, /turf/open/floor/engine/hull, /area/space/nearstation) +"boz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/chemistry/directional/south, +/turf/open/floor/engine/hull/air, +/area/station/medical/medbay/central) +"boF" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clothing/under/costume/seifuku/teal{ + pixel_x = -1; + pixel_y = -9 + }, +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_midori{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/instrument/piano_synth/headphones{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/sign/poster/contraband/syndicate_pistol/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "boP" = ( /obj/item/chair, +/obj/machinery/light/small/red/dim/directional/south, /turf/open/floor/iron/textured_large, -/area/space/nearstation) +/area/station/medical/abandoned) "boS" = ( /obj/structure/rack, /obj/item/gun/energy/laser/redtag, @@ -4258,6 +4809,25 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) +"boY" = ( +/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/engineering/atmos/office) +"bpf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper{ + dir = 8 + }, +/obj/item/paper/crumpled{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "bpl" = ( /obj/structure/railing{ dir = 8 @@ -4304,31 +4874,20 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"bpB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "bpK" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/hos) "bpU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/machinery/cloning_pod{ - desc = "An old prototype cloning pod, permanently decommissioned following the incident."; - name = "decommissioned cloner" +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"bqd" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"bpZ" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/light_switch/directional/east, -/obj/effect/mapping_helpers/turn_off_lights_with_lightswitch, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "bqk" = ( /obj/effect/turf_decal/siding/dark/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4336,7 +4895,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bqm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4353,26 +4912,15 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"bqv" = ( -/obj/effect/turf_decal/siding, -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 +"bqO" = ( +/obj/structure/chair/office{ + dir = 1 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"bqA" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/artistic, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/depsec/supply, +/obj/effect/landmark/event_spawn, +/turf/open/openspace, +/area/station/security/checkpoint/supply) "bqR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4382,14 +4930,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"bqS" = ( -/obj/machinery/light_switch/directional/east, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, +"bqU" = ( +/obj/machinery/computer/security/telescreen/minisat/directional/west, +/obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/area/station/engineering/transit_tube) "bqV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4408,6 +4953,23 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) +"brb" = ( +/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) +"brf" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"brh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) "brm" = ( /obj/effect/turf_decal/stripes/red/line, /obj/effect/turf_decal/stripes/red/line{ @@ -4422,6 +4984,11 @@ }, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) +"brz" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/clothing/mask/joy, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "brP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/north, @@ -4432,11 +4999,6 @@ /obj/machinery/vending/cigarette, /turf/open/openspace, /area/station/construction/storage_wing) -"bsa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "bsc" = ( /obj/effect/spawner/random/trash/graffiti, /obj/effect/spawner/random/trash/box, @@ -4459,17 +5021,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/smooth_edge, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bsx" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bsy" = ( /obj/effect/decal/cleanable/crayon/rune2, /turf/open/floor/plating, /area/station/maintenance/port) +"bsC" = ( +/obj/structure/chair/sofa/right/brown, +/obj/item/pillow, +/obj/item/toy/plush/moth{ + name = "Mender Moff" + }, +/obj/structure/sign/poster/official/get_your_legs/directional/north, +/turf/open/floor/carpet/black, +/area/station/medical/psychology) "bsE" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -4478,35 +5049,23 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/medical/abandoned) -"bsH" = ( -/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 = 2 - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "bsK" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 6 - }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 12 +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 }, -/obj/item/pen{ - pixel_x = 6; - pixel_y = 12 +/obj/structure/table, +/obj/item/stack/rods{ + amount = 25; + pixel_x = 2 }, -/obj/machinery/reagentgrinder{ - pixel_x = -8; - pixel_y = 8 +/obj/item/stack/rods{ + amount = 25; + pixel_y = 4 }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 5 }, +/obj/item/stack/sheet/iron/fifty, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "bsW" = ( @@ -4521,21 +5080,13 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) -"btb" = ( -/obj/machinery/roulette, -/turf/open/floor/engine, -/area/station/engineering/break_room) "btc" = ( /obj/item/paper_bin/carbon, /obj/structure/closet, /obj/item/hand_labeler, /obj/item/hand_labeler_refill, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/station/maintenance/port/aft) -"btj" = ( -/obj/machinery/vending/donksnack, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "btv" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -4576,47 +5127,82 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"btJ" = ( -/obj/structure/chair/sofa/corp, -/obj/item/clothing/head/soft/blue, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay"); - c_tag = "Medbay - Lower Break Room" +"btU" = ( +/obj/item/bouquet/sunflower{ + pixel_y = 4 }, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) +/obj/structure/table/reinforced, +/obj/structure/sign/poster/contraband/atmosia_independence/directional/north{ + desc = "Welcome."; + name = "Welcome." + }, +/obj/item/clothing/glasses/orange{ + pixel_y = 5 + }, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) +"btV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "Privacy Shutter" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/command/heads_quarters/cmo) +"buc" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) "buh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull/air, -/area/station/medical/chemistry) +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/cmo) "buk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white/textured, -/area/station/medical/surgery) -"buu" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"bun" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"bup" = ( /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 = 10 +/obj/effect/decal/cleanable/crayon{ + icon_state = "nay"; + pixel_y = 32 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"but" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/button/door/directional/east{ + id = "Cabin6"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "buA" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/megaphone/cargo{ + pixel_y = 3 }, -/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/miningoffice) -"buP" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light_switch/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "buZ" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "outerbrig"; @@ -4643,9 +5229,12 @@ /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) "bvv" = ( -/obj/structure/cable, /obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) "bvz" = ( /obj/effect/decal/cleanable/dirt, @@ -4654,6 +5243,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"bvE" = ( +/obj/effect/spawner/random/trash/botanical_waste, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "bvG" = ( /obj/item/toy/snappop, /obj/structure/cable, @@ -4663,18 +5256,16 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "bvH" = ( -/obj/item/airlock_painter/decal, -/obj/item/poster/random_official, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/table/reinforced, +/obj/item/surgery_tray/full/morgue{ + pixel_x = 7 }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"bvI" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"bvJ" = ( +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "bvN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4703,8 +5294,11 @@ /area/station/science/research) "bvY" = ( /obj/machinery/wall_healer/directional/north, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "bvZ" = ( /obj/structure/railing{ dir = 8 @@ -4712,25 +5306,34 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/wood, /area/station/commons/toilet/restrooms) -"bwd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "bwg" = ( -/obj/structure/bed, -/obj/item/bedsheet/hop, /obj/structure/secure_safe/directional/south, /obj/machinery/airalarm/directional/east, /obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/carpet, +/obj/structure/bed/double, +/obj/item/bedsheet/hop/double, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "bwi" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/primary/port) +"bwv" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass{ + name = "Security Post - Cargo" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red/opposingcorners{ + 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, +/area/station/security/checkpoint/supply) "bwx" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -4738,6 +5341,18 @@ }, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/exit/departure_lounge) +"bwB" = ( +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "Privacy Shutter" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/cmo) "bwH" = ( /turf/closed/wall/r_wall, /area/station/security/lockers) @@ -4753,18 +5368,42 @@ /turf/open/floor/circuit/telecomms, /area/station/science/xenobiology) "bxa" = ( -/obj/effect/turf_decal/siding/blue/corner{ +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay-office"; + name = "Medbay Shutters"; dir = 1 }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/right/directional/north{ + req_access = list("medical"); + name = "Medbay Reception" + }, +/obj/item/folder/white, +/obj/item/folder/blue{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/pen, /turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/area/station/medical/office) "bxd" = ( /turf/closed/wall/r_wall, /area/station/engineering/atmos/hfr_room) -"bxl" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +"bxg" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/medical) +"bxv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/aft) "bxx" = ( /turf/open/floor/engine/n2o, /area/station/engineering/atmos/upper) @@ -4830,8 +5469,17 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "bxZ" = ( -/turf/open/floor/glass, -/area/station/maintenance/port) +/obj/structure/cable, +/obj/effect/turf_decal/weather/snow, +/obj/structure/plasticflaps/kitchen, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) "byf" = ( /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) @@ -4845,14 +5493,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"byA" = ( -/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/engineering/atmos/hfr_room) "byC" = ( /obj/machinery/button/door/directional/east{ id = "Prison Gate"; @@ -4862,34 +5502,16 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) "byE" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Abandoned Hallway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"byJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small/directional/east, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/structure/lattice/catwalk, +/obj/machinery/vending/games, +/turf/open/openspace, +/area/station/cargo/storage) "byR" = ( -/obj/machinery/door/airlock/command{ - name = "Council Chamber" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + 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/general, -/obj/machinery/door/firedoor, -/turf/open/floor/carpet, -/area/station/command/bridge) +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) "byU" = ( /obj/structure/railing{ dir = 4 @@ -4902,9 +5524,29 @@ /obj/machinery/computer/mech_bay_power_console, /turf/open/floor/iron/smooth, /area/station/science/robotics) +"byW" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "byY" = ( /turf/open/floor/wood, /area/station/hallway/primary/central) +"bzd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) "bzk" = ( /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, @@ -4940,27 +5582,29 @@ /area/station/maintenance/central) "bzS" = ( /obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 4 }, -/obj/item/disk/nuclear{ - pixel_x = 1; - pixel_y = -2 +/obj/item/reagent_containers/cup/glass/flask/gold{ + pixel_x = 5 }, -/obj/item/pen/fourcolor{ - pixel_x = -15; - pixel_y = 1 +/obj/item/toy/figure/captain{ + pixel_x = 7; + pixel_y = 10 }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "bzV" = ( /obj/structure/lattice/catwalk, /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/hallway/primary/central) +"bAf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "bAh" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Foyer" @@ -4971,7 +5615,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"bAo" = ( +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "bAq" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/computer/shuttle/mining{ @@ -5010,6 +5661,16 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/openspace, /area/station/science/xenobiology) +"bAS" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/station_engineer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "bAW" = ( /turf/open/floor/iron, /area/station/engineering/lobby) @@ -5031,12 +5692,14 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"bBu" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/cable, -/obj/machinery/light_switch/directional/north, +"bBq" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow, /turf/open/floor/iron, -/area/station/engineering/main) +/area/station/engineering/atmos/upper) "bBv" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -5053,12 +5716,6 @@ dir = 1 }, /area/station/science/robotics) -"bBy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "bBB" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/shrink_ccw{ dir = 1 @@ -5068,26 +5725,45 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bBK" = ( -/obj/effect/landmark/observer_start, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"bBL" = ( +/obj/structure/table/wood, +/obj/item/clothing/under/misc/burial, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "bBV" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/openspace, /area/station/science/explab) -"bCa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +"bBZ" = ( +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = -24; + pixel_y = -4; + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "hop"; + name = "Lockdown Blast Doors"; + pixel_y = 6; + req_access = list("hop") + }, +/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/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/modular_computer/preset/id, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) "bCb" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; @@ -5121,21 +5797,31 @@ }, /turf/open/floor/iron/checker, /area/station/service/janitor) +"bCr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "bCv" = ( /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/red{ +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/structure/table, -/obj/item/radio/intercom/directional/west{ - pixel_x = -1 - }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/item/pen{ + pixel_y = 9; + pixel_x = -4 }, -/turf/open/floor/iron/dark, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "bCx" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -5146,51 +5832,33 @@ /turf/open/floor/iron, /area/station/hallway/secondary/construction) "bCC" = ( -/obj/machinery/suit_storage_unit/captain, /obj/machinery/status_display/evac/directional/north, -/turf/open/floor/wood, +/obj/structure/table/wood, +/obj/machinery/fax{ + fax_name = "Captain's Office"; + name = "Captain's Fax Machine" + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "bCD" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, /obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 38 - }, -/obj/structure/sign/directions/medical/directional/north{ - dir = 8 - }, -/obj/structure/sign/directions/evac/directional/north{ - dir = 8; - pixel_y = 26 + dir = 1; + pixel_y = 10 }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bCP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_y = 4 }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = -2 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"bDm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/welded, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/station/maintenance/port) -"bDn" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2 to Port" +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -8 }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/turf/closed/wall, +/area/station/science/lab) "bDq" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -5218,32 +5886,33 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron, /area/station/science/breakroom) -"bDQ" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/station/commons/dorms) +"bDz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "bDS" = ( /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"bDZ" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/area/station/ai/satellite/foyer) +"bEi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "bEp" = ( /obj/machinery/firealarm/directional/south, /turf/open/floor/plating, /area/station/engineering/storage_shared) "bEr" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/item/trash/can{ - pixel_x = -10; - pixel_y = -14 +/obj/structure/railing, +/obj/machinery/conveyor_switch/oneway{ + dir = 1; + id = "mining"; + pixel_y = 10 }, /turf/open/floor/iron/textured, /area/station/cargo/storage) @@ -5257,6 +5926,12 @@ }, /turf/open/floor/iron, /area/station/science/lab) +"bEA" = ( +/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) "bEB" = ( /obj/machinery/computer/mecha{ dir = 8 @@ -5264,6 +5939,13 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/checkpoint/science) +"bEH" = ( +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "bEI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5271,41 +5953,33 @@ /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) "bEJ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/item/cigbutt, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"bEP" = ( +/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, +/area/station/maintenance/starboard/central/upper) +"bEU" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/light_switch/directional/south, +/obj/machinery/computer/operating{ dir = 4 }, -/obj/machinery/wall_healer/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bEK" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"bES" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bEU" = ( -/obj/structure/closet/crate/trashcart/filled, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) +/area/station/medical/surgery) +"bEV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/station/commons/dorms) "bFb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -5318,15 +5992,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/large, /area/station/hallway/primary/central) -"bFc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "bFe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5336,6 +6001,18 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"bFl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"bFm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/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/iron, +/area/station/engineering/lobby) "bFn" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input, /turf/open/floor/engine/air, @@ -5346,6 +6023,31 @@ /obj/item/surgical_drapes, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) +"bFx" = ( +/obj/structure/table, +/obj/item/storage/toolbox/artistic{ + pixel_x = -1; + pixel_y = 12 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = -7 + }, +/obj/item/stamp/granted{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/station/service/library/printer) "bFI" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, @@ -5364,6 +6066,12 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/security/brig) +"bFW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "bGa" = ( /obj/structure/railing{ dir = 4 @@ -5371,6 +6079,10 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/science/xenobiology) +"bGe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "bGh" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/mid_joiner, @@ -5393,14 +6105,22 @@ /obj/structure/sign/poster/official/random/directional/east, /turf/open/floor/plating, /area/station/construction/storage_wing) -"bGs" = ( -/obj/item/biopsy_tool{ - pixel_x = -9; - pixel_y = 2 +"bGv" = ( +/obj/structure/closet/crate, +/obj/item/gps, +/obj/item/assembly/timer, +/obj/item/gps, +/obj/item/assembly/signaler, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "bGF" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -5421,16 +6141,6 @@ }, /turf/open/floor/iron/dark, /area/station/commons/storage/art) -"bGR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 6 - }, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) "bGX" = ( /obj/effect/turf_decal/arrows/white{ dir = 4 @@ -5461,31 +6171,18 @@ dir = 1 }, /area/station/service/chapel) -"bHa" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/landmark/navigate_destination/tools, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "bHb" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law{ pixel_y = 6 }, /obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/south{ + c_tag = "Cargo Bay - Security Post (High)"; + pixel_x = 14 + }, /turf/open/openspace, /area/station/security/checkpoint/supply) -"bHj" = ( -/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 - }, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "bHn" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 4 @@ -5503,7 +6200,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bHr" = ( /obj/machinery/atmospherics/pipe/smart/manifold/supply/visible, /obj/machinery/computer/security/telescreen/isolation/directional/west{ @@ -5516,46 +6213,43 @@ /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) "bHC" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/turf/open/floor/iron/stairs{ dir = 1 }, -/obj/machinery/computer/atmos_control/oxygen_tank, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/maintenance/starboard) "bHG" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"bHM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) +"bHJ" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"bHL" = ( +/obj/structure/sign/poster/contraband/communist_state/directional/south, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "bHN" = ( /obj/structure/railing{ dir = 4 }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"bHO" = ( -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "bHV" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ +/turf/closed/wall, +/area/station/medical/medbay/lobby) +"bIf" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 4 }, -/obj/item/stack/medical/mesh{ - pixel_y = 4 - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "bIi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood, @@ -5565,12 +6259,25 @@ /obj/machinery/light/floor, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"bIp" = ( -/obj/structure/dresser, +"bIm" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/computer/turbine_computer, +/obj/effect/mapping_helpers/airalarm/all_access, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) +"bIp" = ( /obj/machinery/status_display/ai/directional/north, /obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, +/obj/structure/dresser, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) +"bIq" = ( +/obj/machinery/suit_storage_unit{ + storage_type = /obj/item/clothing/shoes/magboots + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "bIF" = ( /obj/machinery/atmospherics/components/binary/pump/layer4, /obj/item/storage/box/matches{ @@ -5621,38 +6328,18 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/warden) -"bIP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -2 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"bIS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"bIX" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 5 }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/closed/wall, +/area/station/maintenance/aft) "bIZ" = ( -/obj/structure/closet/secure_closet/security/med, -/obj/item/book/manual/wiki/security_space_law, /obj/structure/reagent_dispensers/wall/peppertank/directional/east, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/effect/landmark/start/depsec/medical, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) "bJj" = ( @@ -5672,22 +6359,15 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"bJs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/commons/dorms) +"bJo" = ( +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) "bJt" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"bJB" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "bJJ" = ( /obj/machinery/vending/cigarette, /obj/structure/disposalpipe/segment{ @@ -5702,19 +6382,6 @@ /obj/structure/stairs/north, /turf/open/floor/wood, /area/station/security/courtroom) -"bKb" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) "bKd" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 @@ -5723,15 +6390,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bKh" = ( -/obj/structure/table/glass, -/obj/item/flashlight/flare/candle{ - pixel_x = 9; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "bKj" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -5747,11 +6406,11 @@ /obj/structure/chair/office{ dir = 8 }, -/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /obj/effect/landmark/start/depsec/supply, +/obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "bKt" = ( @@ -5769,13 +6428,26 @@ }, /obj/structure/plasticflaps/kitchen, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) -"bKC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, +/area/station/ai/satellite/maintenance/storage) +"bKw" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner{ + dir = 4 + }, /obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"bKI" = ( +/obj/machinery/vending/autodrobe, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "bKK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5800,44 +6472,38 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"bLf" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/mob/living/basic/pet/cat/space{ - name = "Tomas" - }, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) "bLh" = ( /obj/effect/landmark/start/scientist, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) +"bLm" = ( +/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/engineering/supermatter/room/upper) +"bLp" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "space-outpost" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "bLu" = ( /obj/machinery/light/directional/east, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"bLx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "bLE" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/aft) -"bLG" = ( -/obj/structure/table, -/obj/item/petri_dish{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/petri_dish, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"bLK" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) "bLL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, @@ -5848,13 +6514,19 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"bLP" = ( +/obj/effect/turf_decal/trimline/yellow/filled, +/obj/item/kirbyplants/random/fullysynthetic, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "bMa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/dim/directional/east, /obj/machinery/button/crematorium{ id = "crematoriumChapel"; - pixel_x = 26 + pixel_x = 26; + dir = 4 }, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, @@ -5867,15 +6539,12 @@ /turf/open/floor/plating, /area/station/security/prison/shower) "bMd" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/railing{ +/obj/structure/ladder, +/obj/effect/turf_decal/stripes{ dir = 4 }, -/obj/structure/ladder, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/textured, +/area/station/command/eva) "bMe" = ( /obj/machinery/door/airlock/external{ name = "Arrival Airlock" @@ -5892,11 +6561,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"bMh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) "bMi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -5908,25 +6572,32 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"bMq" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "bMw" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/security/office) -"bMD" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +"bMx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"bMR" = ( +/obj/machinery/power/emitter{ dir = 4 }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/catwalk_floor, -/area/station/engineering/lobby) +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"bNe" = ( +/obj/structure/chair/stool/directional/east, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "bNk" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 8 @@ -5936,49 +6607,59 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"bNl" = ( +/obj/vehicle/ridden/wheelchair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "bNt" = ( /turf/closed/wall, /area/station/maintenance/port/greater) -"bNu" = ( -/obj/structure/table, -/obj/item/hand_labeler{ - pixel_y = 7 - }, -/obj/item/camera_film{ - pixel_y = 3 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) -"bNC" = ( -/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/all/supply/general, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "bNH" = ( /obj/machinery/power/shieldwallgen, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/obj/structure/cable, /obj/machinery/firealarm/directional/east, /turf/open/floor/wood, /area/station/command/teleporter) +"bNO" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "bNX" = ( /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"bNY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"bOa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + filter_type = list(/datum/gas/nitrogen) + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bOb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/commons/vacant_room/office) +"bOf" = ( +/obj/structure/chair/sofa/middle/brown{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "bOi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -5994,6 +6675,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/tcommsat/server) +"bOt" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 6 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/wood, +/area/station/security/courtroom) "bOw" = ( /turf/closed/wall, /area/station/construction/mining/aux_base) @@ -6010,6 +6699,14 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/brig) +"bOK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + 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/engineering/supermatter/room/upper) "bOO" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, @@ -6025,26 +6722,33 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"bPq" = ( +/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/fitness/recreation) "bPr" = ( -/obj/structure/reagent_dispensers/plumbed/storage, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","medbay"); - c_tag = "Medbay - Upper Chemistry East" - }, -/obj/machinery/light_switch/directional/east, +/obj/structure/tank_holder/extinguisher, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "bPw" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/obj/machinery/disposal/delivery_chute{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) "bPC" = ( /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -6056,17 +6760,18 @@ /turf/open/floor/wood, /area/station/service/lawoffice) "bPH" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 8 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "bPN" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6077,6 +6782,23 @@ /obj/effect/mapping_helpers/mail_sorting/science/xenobiology, /turf/open/floor/iron/dark/smooth_large, /area/station/science/explab) +"bPO" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"bPS" = ( +/obj/machinery/duct, +/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/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"bPT" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "bPW" = ( /turf/closed/wall, /area/station/commons/fitness/recreation) @@ -6094,19 +6816,16 @@ /obj/item/clothing/mask/breath, /turf/open/floor/wood, /area/station/command/teleporter) -"bQt" = ( -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) -"bQz" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "bQC" = ( -/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; + dir = 8 + }, /turf/open/floor/plating, -/area/station/maintenance/disposal) +/area/station/security/checkpoint/supply) "bQF" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/structure/closet/secure_closet, @@ -6165,60 +6884,32 @@ }, /turf/open/openspace, /area/station/science/xenobiology) -"bRl" = ( -/obj/structure/table, -/obj/item/clothing/suit/utility/fire/firefighter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "bRm" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 1; - id = "chemshutters"; - name = "Chemistry Shutters" +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, -/turf/open/floor/plating, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"bRv" = ( -/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/wood, -/area/station/service/library/printer) "bRx" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"bRC" = ( -/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/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"bRD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/pai_card{ - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "bRQ" = ( -/obj/item/cigbutt, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/machinery/door/airlock/mining{ - name = "Quartermaster's Office" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/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/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "bRT" = ( /obj/machinery/conveyor_switch/oneway{ dir = 8; @@ -6229,26 +6920,14 @@ /turf/open/floor/plating, /area/station/maintenance/disposal) "bRW" = ( -/obj/effect/turf_decal/arrows{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 9 }, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/smooth_corner, /area/station/command/gateway) -"bSe" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"bSg" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "bSk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6272,6 +6951,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/eva) +"bSt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/construction) "bSu" = ( /obj/item/paint/red{ pixel_x = -7; @@ -6362,22 +7045,28 @@ /turf/open/floor/iron, /area/station/maintenance/hallway/abandoned_recreation) "bTl" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/airlock_painter, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/obj/structure/closet/firecloset, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/warning/electric_shock/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "bTo" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"bTp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"bTq" = ( +/obj/structure/chair/sofa/corp, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) "bTF" = ( /obj/structure/closet/crate/secure/trashcart/filled, /turf/open/floor/plating, @@ -6400,11 +7089,11 @@ /turf/open/floor/iron, /area/station/engineering/lobby) "bTU" = ( -/obj/effect/turf_decal/siding/green/corner, /obj/machinery/disposal/bin/tagger, -/obj/structure/disposalpipe/trunk{ +/obj/effect/turf_decal/siding/green{ dir = 4 }, +/obj/structure/disposalpipe/trunk, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "bTW" = ( @@ -6414,16 +7103,6 @@ /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/plating, /area/station/construction/storage_wing) -"bTZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=21-Central"; - location = "20-Genetics" - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "bUa" = ( /obj/machinery/computer/dna_console, /turf/open/floor/iron/dark/textured_large, @@ -6440,28 +7119,13 @@ dir = 8 }, /area/station/hallway/primary/fore) -"bUp" = ( -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/obj/structure/urinal/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) -"bUr" = ( -/obj/effect/turf_decal/siding{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "bUO" = ( -/obj/machinery/computer/records/security, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/carpet, +/obj/machinery/photocopier/prebuilt, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "bUQ" = ( /obj/effect/spawner/random/trash/graffiti, @@ -6476,34 +7140,37 @@ /obj/structure/table, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"bVq" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "bVs" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 10 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "bVB" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, -/area/station/medical/coldroom) +/area/station/maintenance/department/medical) "bVI" = ( -/obj/machinery/requests_console/directional/north{ - department = "Head of Security's Desk"; - name = "Head of Security Requests Console"; - pixel_y = -30 - }, /obj/effect/mapping_helpers/requests_console/information, /obj/effect/mapping_helpers/requests_console/announcement, /obj/effect/mapping_helpers/requests_console/assistance, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, +/obj/machinery/requests_console/directional/south{ + department = "Head Of Security's Desk"; + name = "Head Of Security Requests Console" + }, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) "bVK" = ( @@ -6520,11 +7187,11 @@ /turf/open/floor/engine/hull/air, /area/station/science/research) "bVS" = ( -/obj/structure/bookcase/random/reference, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) "bVV" = ( /obj/effect/turf_decal/siding/dark, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6532,7 +7199,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bVW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -6543,6 +7210,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/glass, /area/station/science/zoo) +"bWe" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/firealarm/directional/south, +/turf/open/openspace, +/area/station/engineering/atmos/office) +"bWm" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "bWo" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -6561,13 +7241,7 @@ }, /obj/effect/turf_decal/trimline/dark_blue/mid_joiner, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bWC" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/area/station/ai/satellite/interior) "bWE" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 5 @@ -6575,14 +7249,23 @@ /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) "bWI" = ( -/obj/structure/reagent_dispensers/plumbed/storage, -/turf/open/floor/wood, -/area/station/medical/medbay/central) -"bWQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/item/kirbyplants/random, +/obj/structure/window/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/area/station/medical/cryo) +"bWR" = ( +/obj/structure/fluff/paper/stack{ + dir = 10 + }, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "bWY" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, @@ -6594,20 +7277,23 @@ name = "Abandoned Arcade" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/maintenance/hallway/abandoned_recreation) -"bXg" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 6 - }, -/obj/effect/turf_decal/siding/brown/corner{ +"bXk" = ( +/obj/machinery/duct, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"bXl" = ( +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +/obj/effect/spawner/random/trash/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office/private_investigators_office) "bXn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6620,20 +7306,11 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) -"bXp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/open/openspace, -/area/station/engineering/lobby) "bXt" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/miningoffice) "bXy" = ( @@ -6647,13 +7324,6 @@ "bXA" = ( /turf/closed/wall/r_wall, /area/station/security/warden) -"bXH" = ( -/obj/machinery/camera/autoname/directional/west, -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "bXO" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -6666,6 +7336,12 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"bYd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "bYe" = ( /obj/structure/table, /obj/item/paper_bin/carbon{ @@ -6692,6 +7368,15 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/port/aft) +"bYt" = ( +/obj/effect/spawner/random/techstorage/ai_all, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/rack, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "bYz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/south, @@ -6737,6 +7422,11 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, /area/station/science/explab) +"bZf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/station/maintenance/starboard) "bZo" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/mid_joiner, @@ -6746,16 +7436,29 @@ /obj/machinery/door/window/right/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"bZq" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) "bZs" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 5 }, -/obj/structure/reagent_dispensers/fueltank, +/obj/structure/rack, +/obj/item/gps/mining{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/gps/mining, +/obj/item/gps/mining{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/structure/railing{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/miningoffice) "bZt" = ( @@ -6772,6 +7475,30 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) +"bZu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "N2O Multideck Adapter"; + dir = 4 + }, +/obj/machinery/meter{ + name = "N2O meter" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"bZw" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "bZx" = ( /obj/structure/table, /obj/item/stock_parts/subspace/transmitter, @@ -6785,54 +7512,63 @@ /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) "bZC" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/carpet, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/machinery/airalarm/directional/north, +/obj/item/kirbyplants/organic/plant19{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai/upload/chamber) "bZD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 1 +/obj/structure/disposalpipe/segment, +/obj/machinery/computer/crew{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ - dir = 4 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/openspace, -/area/station/medical/cryo) +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) +"bZI" = ( +/obj/structure/table/wood, +/obj/item/paper/crumpled{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "bZJ" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"bZK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/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, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/area/station/cargo/storage) "bZN" = ( /obj/machinery/light/directional/south, /turf/open/openspace, /area/station/science/xenobiology) -"bZQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"bZR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) -"cac" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) "cai" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 1 @@ -6854,6 +7590,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/science/central) +"cal" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/engineering_all, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "cam" = ( /obj/structure/table/wood, /obj/machinery/light_switch, @@ -6862,36 +7609,53 @@ dir = 8 }, /area/station/service/chapel) -"cay" = ( +"cav" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Medbay" + }, +/obj/effect/turf_decal/tile/blue/full, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"caB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "caE" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) +"caF" = ( +/obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"caF" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +"caK" = ( /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/port/fore) +/area/station/maintenance/starboard/fore/upper) "caO" = ( /obj/structure/table, /turf/open/floor/plating, /area/station/maintenance/disposal) "caQ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 +/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/autolathe, -/obj/structure/sign/poster/official/do_not_question/directional/north, -/obj/machinery/wall_healer/directional/west, -/turf/open/floor/iron, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/dark/textured_large, /area/station/cargo/storage) "caS" = ( /obj/structure/railing, @@ -6915,22 +7679,26 @@ /area/station/solars/starboard/fore) "cbm" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) +"cbn" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "cbo" = ( /obj/item/radio/intercom/directional/south, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/office) -"cbq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner/end, -/obj/structure/railing/corner/end{ - pixel_y = 2 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "cbt" = ( /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/telecomms, @@ -6939,29 +7707,31 @@ /obj/machinery/vending/cigarette, /turf/open/floor/plating, /area/station/maintenance/port) -"cbB" = ( -/obj/machinery/requests_console/directional/west{ - department = "Security"; - name = "Security Requests Console" - }, +"cbA" = ( /obj/structure/table, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/machinery/recharger{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/item/geiger_counter{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "cbC" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/box, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "cbI" = ( /obj/machinery/vatgrower{ dir = 4 @@ -6983,23 +7753,37 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"cbS" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/pale/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) "cbT" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/ce) "cbV" = ( +/obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/conveyor{ dir = 8; id = "HoPsToy" }, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/carpet, +/obj/machinery/door/window/brigdoor/right/directional/east{ + req_access = list("hop") + }, +/turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) +"cca" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 8 + }, +/obj/structure/sign/warning/no_smoking/directional/north, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "ccc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7020,11 +7804,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"cck" = ( -/obj/structure/broken_flooring/singular/directional/east, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) "ccm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7037,19 +7816,25 @@ /turf/open/floor/iron, /area/station/hallway/primary/aft) "ccr" = ( -/turf/open/floor/carpet/purple, -/area/station/ai_monitored/turret_protected/ai_upload) -"ccy" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/starboard/aft) -"ccH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/computer/upload/ai{ + dir = 4 + }, +/obj/machinery/door/window/left/directional/east{ + name = "AI Upload Console Window"; + req_access = list("ai_upload") }, +/turf/open/floor/circuit/green, +/area/station/ai/upload/chamber) +"ccH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/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/textured_large, /area/station/medical/medbay/central) "ccM" = ( @@ -7060,11 +7845,6 @@ "ccN" = ( /turf/closed/wall, /area/station/medical/surgery) -"ccV" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "ccY" = ( /obj/machinery/door/airlock/medical{ name = "Coroner's Office" @@ -7075,22 +7855,6 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/morgue, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"ccZ" = ( -/obj/effect/turf_decal/siding/brown{ - 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/junction{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=18-Bathroom"; - location = "17-Dorms" - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "cdc" = ( /turf/closed/wall, /area/station/service/kitchen/coldroom) @@ -7102,9 +7866,15 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"cdi" = ( -/turf/closed/wall, -/area/station/engineering/gravity_generator) +"cdo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/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/engineering/lobby) "cdq" = ( /obj/effect/turf_decal/weather/dirt{ dir = 8 @@ -7122,20 +7892,14 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, /area/station/service/library) -"cdP" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/crayon{ - icon_state = "revolution"; - name = "graffiti"; - paint_colour = "#FF0000"; - pixel_y = 32 +"cdJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cea" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "ceb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, @@ -7148,9 +7912,6 @@ "ceh" = ( /obj/structure/chair, /obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "cel" = ( @@ -7166,23 +7927,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/cytology) -"cep" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/fire/directional/east, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) -"cer" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "ces" = ( /obj/structure/toilet{ dir = 8; @@ -7198,63 +7942,47 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) -"cew" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/ai_module/reset, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/light/directional/east, +"cet" = ( +/obj/structure/lattice/catwalk, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ceB" = ( -/obj/structure/chair/comfy{ +/area/station/engineering/supermatter/room/upper) +"ceC" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +/area/station/cargo/storage) "ceG" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/customs) "ceQ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + name = "decommissioned sleeper" + }, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "ceR" = ( /obj/machinery/netpod, /obj/item/radio/intercom/directional/north, /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) -"ceV" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/effect/landmark/start/coroner, -/turf/open/floor/iron/dark/textured_edge, -/area/station/medical/morgue) "ceX" = ( /obj/machinery/telecomms/server/presets/supply, /obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"cfi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 8 - }, -/area/station/medical/pharmacy) -"cfn" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/port/aft) "cfp" = ( /obj/machinery/button/door/directional/east{ id = "commissarydoor"; @@ -7290,20 +8018,6 @@ /obj/machinery/light/dim/directional/south, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"cfs" = ( -/obj/machinery/button/elevator{ - id = "catwalk_engi"; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "cfx" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -7321,38 +8035,12 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"cfI" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"cfP" = ( +"cfS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"cfQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"cfT" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/light/warm/directional/east, /turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/cargo/storage) "cgg" = ( /obj/effect/decal/remains/human, /obj/item/clothing/head/utility/hardhat/welding/atmos{ @@ -7368,49 +8056,75 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/small, /area/station/security/mechbay) -"cgE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ +"cgG" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) +"cgI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ dir = 1 }, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Plasma Cell"; - name = "atmospherics camera" +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 }, -/turf/open/floor/engine/plasma, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/navigate_destination/incinerator, +/turf/open/floor/engine, /area/station/engineering/atmos/upper) "cgK" = ( /obj/structure/cable, /turf/closed/wall, /area/station/maintenance/solars/port/aft) "cgX" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/ladder, /obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/railing, +/obj/item/multitool{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/hand_labeler_refill{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "chb" = ( /obj/item/vending_refill/coffee, /turf/open/floor/plating, /area/station/maintenance/disposal) -"chc" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/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/dark, -/area/station/engineering/atmos/upper) "chd" = ( /obj/structure/ladder, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "chf" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/security/office) +"chg" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "chr" = ( /obj/machinery/holopad, /turf/open/floor/wood/tile, @@ -7420,23 +8134,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"chz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"chv" = ( +/turf/open/floor/iron/stairs{ + dir = 1 }, -/obj/effect/spawner/structure/window/reinforced/tinted, +/area/station/maintenance/aft) +"chz" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"chG" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"chI" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) "chO" = ( /obj/structure/table/glass, /obj/item/reagent_containers/cup/glass/coffee{ @@ -7452,36 +8159,18 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/turf_decal/arrows{ - dir = 1 - }, /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"chR" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Bypass" - }, -/obj/effect/turf_decal/trimline/blue, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"chU" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters Access" - }, -/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{ - dir = 2 +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 }, -/obj/effect/landmark/navigate_destination/dorms, -/turf/open/floor/iron/edge, -/area/station/commons/dorms) +/area/station/command/gateway) +"chV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/basketball, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "chX" = ( /obj/machinery/camera/directional/south{ c_tag = "Science - Xenobiology Big Pen Top"; @@ -7489,11 +8178,6 @@ }, /turf/open/openspace, /area/station/science/xenobiology) -"chZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "cib" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7501,33 +8185,37 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "cif" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"cik" = ( -/obj/structure/table/wood, -/obj/machinery/computer/records/medical/laptop, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) "cil" = ( /obj/item/radio/intercom/directional/south, /turf/closed/wall/r_wall, /area/station/engineering/main) -"ciS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"ciN" = ( +/obj/effect/turf_decal/siding{ + dir = 1 }, -/obj/effect/landmark/firealarm_sanity, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/virology) +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"ciT" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "cjb" = ( /obj/structure/frame/computer{ anchored = 1 @@ -7552,25 +8240,88 @@ /turf/open/floor/wood/large, /area/station/medical/psychology) "cjE" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) +"cjQ" = ( +/obj/item/clothing/under/color/grey, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = -13 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = -13 + }, +/obj/structure/rack, +/obj/machinery/camera/autoname/directional/west, +/obj/item/flashlight, +/obj/item/radio/intercom/directional/north, +/obj/item/wrench, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"cjW" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) +"cjY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"cjZ" = ( +/obj/machinery/computer/security/telescreen/cmo/directional/north, +/obj/effect/landmark/start/chief_medical_officer, +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "cmoprivacy"; + name = "CMO Office Privacy"; + req_access = list("cmo"); + pixel_y = -2 + }, +/obj/machinery/button/door/directional/west{ + id = "medbay-office"; + name = "Medbay Lockdown"; + req_access = list("medical"); + pixel_y = 8 + }, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) +"cka" = ( +/obj/structure/frame, +/obj/structure/sign/poster/contraband/shamblers_juice/directional/east, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "ckd" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 +/obj/effect/turf_decal/siding/dark{ + dir = 6 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "cke" = ( -/obj/machinery/disposal/bin, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ dir = 4 }, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, @@ -7585,6 +8336,14 @@ /obj/machinery/hydroponics/soil, /turf/open/misc/sandy_dirt, /area/station/service/hydroponics/garden/abandoned) +"ckF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/closet/firecloset, +/turf/open/floor/iron, +/area/station/engineering/lobby) "ckG" = ( /obj/structure/table, /obj/item/clothing/glasses/sunglasses/big{ @@ -7607,7 +8366,9 @@ /area/station/hallway/primary/port) "ckZ" = ( /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) "cla" = ( /obj/effect/turf_decal/trimline/red/filled/line{ @@ -7635,38 +8396,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"clh" = ( -/obj/effect/mapping_helpers/broken_floor, +"clk" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/fluff/paper/stack{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/yellow, -/obj/item/hand_labeler_refill{ - pixel_x = -1 - }, -/obj/structure/fluff/paper{ - dir = 1 - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"clq" = ( +/obj/structure/sign/warning/vacuum/directional/north, +/turf/open/floor/plating/airless, /area/station/maintenance/starboard/aft) "cly" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/plating, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/loading_area/red{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, /area/station/cargo/storage) "clB" = ( /obj/structure/lattice/catwalk, /obj/machinery/light/directional/west, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"clF" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/sign/poster/contraband/the_big_gas_giant_truth/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) +/area/station/ai/satellite/chamber) "clG" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -7682,20 +8435,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "clT" = ( /obj/item/geiger_counter, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"clX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "clZ" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"cme" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/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/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "cmf" = ( /obj/item/radio/intercom/directional/north, /turf/open/openspace, @@ -7707,11 +8466,20 @@ /turf/open/floor/iron, /area/station/science/robotics/lab) "cmp" = ( -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/chair/office/light{ + dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"cmt" = ( +/obj/structure/table, +/obj/structure/sign/poster/contraband/energy_swords/directional/north, +/obj/item/clothing/head/costume/tv_head{ + pixel_y = 8 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "cmK" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/pale/style_random, @@ -7731,15 +8499,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/service/chapel) -"cmO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) -"cmR" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "cmS" = ( /turf/closed/wall/r_wall, /area/station/security/mechbay) @@ -7751,22 +8510,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/courtroom) -"cmY" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, +"cmW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "cnw" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/open/openspace, /area/station/hallway/primary/starboard) +"cny" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "cnL" = ( -/obj/effect/turf_decal/siding/white{ - dir = 10 +/obj/effect/turf_decal/siding/blue{ + dir = 8 }, +/obj/effect/turf_decal/arrows, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "cnP" = ( @@ -7775,6 +8538,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) +"cnT" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/modular_computer/preset/cargochat/engineering{ + dir = 1 + }, +/obj/machinery/requests_console/directional/west{ + name = "Engineering Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) +"cnU" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "coc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/bounty, @@ -7793,13 +8572,6 @@ /obj/structure/railing/corner, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"cot" = ( -/obj/machinery/atmospherics/components/trinary/filter/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "cox" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -7809,15 +8581,17 @@ /turf/open/floor/wood/large, /area/station/hallway/primary/central) "coI" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /obj/machinery/airalarm/directional/north, -/obj/effect/mapping_helpers/airalarm/tlv_cold_room, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/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/maintenance/department/medical) "coP" = ( /obj/effect/turf_decal/weather/dirt, /obj/structure/flora/bush/large/style_2{ @@ -7837,36 +8611,43 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"cpl" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"cps" = ( +/obj/machinery/newscaster/directional/west, +/obj/structure/hedge, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/large, +/area/station/medical/break_room) "cpy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +/obj/structure/chair/comfy/black{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "cpA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"cpD" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/musical_instrument, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cpE" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"cpF" = ( +/obj/item/cigbutt, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "cpG" = ( -/obj/machinery/computer/records/medical, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/obj/machinery/airalarm/directional/west, +/obj/machinery/computer/records/security, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) "cpM" = ( @@ -7875,22 +8656,27 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/cytology) -"cpN" = ( -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "cpQ" = ( -/obj/structure/chair{ - dir = 1 +/obj/machinery/airalarm/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/sign/clock/directional/west, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 }, -/obj/machinery/light/directional/west, /turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/area/station/cargo/miningoffice) "cqe" = ( -/obj/structure/curtain, -/obj/machinery/shower/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/surgery) +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/light/floor, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "cqh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7915,10 +8701,6 @@ }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"cqp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "cqt" = ( /obj/docking_port/stationary/laborcamp_home{ dir = 8 @@ -7926,13 +8708,13 @@ /turf/open/space/openspace, /area/space) "cqw" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "cqG" = ( /obj/item/trash/boritos, @@ -7983,7 +8765,7 @@ /turf/open/floor/iron/white/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "crh" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/ferny/style_random, @@ -8006,16 +8788,10 @@ /area/station/service/library/private) "crk" = ( /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"crn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 +/turf/open/floor/iron/edge{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/hallway/primary/central) "crs" = ( /obj/structure/lattice/catwalk, /obj/structure/window/reinforced/spawner/directional/south, @@ -8029,18 +8805,10 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/herringbone, /area/station/commons/lounge) -"crE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"crG" = ( -/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/access/all/engineering/maintenance, +"crP" = ( +/obj/effect/spawner/random/engineering/tank, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/department/crew_quarters/dorms) "crS" = ( /obj/structure/sign/poster/contraband/atmosia_independence/directional/north{ desc = "The captain is expressely FORBIDDEN here. Only those who took from him are allowed."; @@ -8061,11 +8829,12 @@ /turf/open/floor/engine, /area/station/service/hydroponics) "csb" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_cargobay"; - name = "Cargo Bay Shutters" - }, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window{ + dir = 8; + name = "Cargo Bay Shutters"; + id = "qm_cargobay" + }, /turf/open/floor/plating, /area/station/cargo/storage) "csd" = ( @@ -8079,14 +8848,6 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"csf" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O to Port" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "csh" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -8114,6 +8875,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/hallway/secondary/service) +"csr" = ( +/obj/structure/stairs/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "cst" = ( /obj/effect/turf_decal/trimline/red/filled/mid_joiner{ dir = 1 @@ -8142,7 +8907,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "csC" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -8154,19 +8919,13 @@ /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "csE" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 4 }, -/obj/machinery/conveyor_switch/oneway{ - id = "cargounload"; - name = "Unloading Conveyor"; - pixel_x = -13; - pixel_y = -4 - }, /turf/open/floor/iron, /area/station/cargo/storage) "csF" = ( @@ -8187,21 +8946,30 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, /area/station/cargo/storage) -"csN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 10 +"csS" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "Outside Cargo" }, -/obj/structure/railing/corner{ +/obj/effect/turf_decal/delivery, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/departments/cargo/directional/east, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"csW" = ( +/obj/machinery/door/firedoor/border_only{ dir = 4 }, -/turf/open/openspace, -/area/station/engineering/lobby) -"csS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/effect/landmark/firealarm_sanity, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/medical/abandoned) "ctb" = ( /turf/open/floor/glass/reinforced, /area/station/command/heads_quarters/rd) @@ -8219,20 +8987,6 @@ dir = 8 }, /area/station/hallway/primary/fore) -"cth" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "ctl" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, @@ -8240,15 +8994,22 @@ /obj/item/book/codex_gigas, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"ctE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ +"ctm" = ( +/obj/machinery/light/directional/west, +/obj/structure/sign/departments/aiupload/directional/west, +/obj/effect/turf_decal/trimline/dark/arrow_cw{ dir = 8 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 8 +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"ctE" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rear_surgery"; + name = "Surgery Shutters"; + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/iron/white/textured_large, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, /area/station/medical/surgery) "ctK" = ( /obj/effect/turf_decal/trimline/red/filled/line{ @@ -8256,6 +9017,12 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"ctL" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "ctN" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -8273,31 +9040,29 @@ /area/station/maintenance/port/aft) "cud" = ( /obj/machinery/conveyor{ - dir = 4; + dir = 1; id = "cargoload" }, -/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/stripes/end, /turf/open/floor/iron, /area/station/cargo/storage) +"cuL" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "cuQ" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron/dark, /area/station/science/lobby) -"cuT" = ( -/obj/machinery/light/directional/east, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "cuY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "cvj" = ( /obj/machinery/door/airlock/external{ @@ -8306,6 +9071,15 @@ /obj/effect/landmark/navigate_destination/dockescpod, /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"cvq" = ( +/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 = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "cvH" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -8313,6 +9087,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"cvM" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "cvP" = ( /turf/closed/wall/r_wall, /area/station/command/meeting_room/council) @@ -8334,8 +9114,23 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar/backroom) +"cwe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/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, +/area/station/engineering/lobby) "cwf" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "chem_lockdown"; + name = "Chemistry Shutters" + }, /turf/open/floor/plating, /area/station/medical/chemistry) "cwl" = ( @@ -8346,20 +9141,11 @@ /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"cwo" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "CO2 Multideck Adapter"; - dir = 8 - }, -/obj/machinery/meter{ - name = "C02 meter" - }, -/obj/effect/turf_decal/tile/dark/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "cwq" = ( /obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "cwu" = ( /obj/structure/filingcabinet, @@ -8368,16 +9154,36 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) +"cwy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"cwA" = ( +/obj/structure/sign/directions/engineering/directional/east{ + dir = 1; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/maintenance/starboard/central) "cwL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall, /area/station/commons/toilet/auxiliary) "cwO" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Medbay - Upper Plumbing Area West" +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 }, -/turf/open/openspace, +/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/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark, /area/station/medical/chemistry) "cwP" = ( /turf/open/openspace, @@ -8401,6 +9207,13 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"cxi" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/item/kirbyplants, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "cxj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8412,35 +9225,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"cxD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Primary Surgical Theatre" +"cxs" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Storage Room" }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) -"cxE" = ( -/turf/open/floor/glass, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"cxD" = ( +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"cxE" = ( +/turf/open/floor/glass, /area/station/tcommsat/server) "cxK" = ( /obj/structure/sign/poster/contraband/missing_gloves, /turf/closed/wall, /area/station/maintenance/port) -"cxL" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/black, -/area/station/service/library/private) -"cxQ" = ( -/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/commons/dorms) "cxU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -8454,8 +9270,12 @@ }, /obj/structure/rack, /obj/effect/spawner/random/armory/disablers, +/obj/machinery/camera/motion{ + c_tag = "Armory - Internal"; + dir = 8 + }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cyd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bodycontainer/crematorium{ @@ -8465,40 +9285,25 @@ /turf/open/floor/iron/dark, /area/station/service/chapel/office) "cyx" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/screwdriver{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = 11; - pixel_y = 11 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = 3; - pixel_y = 11 - }, -/obj/item/grenade/chem_grenade{ - pixel_y = 11 - }, -/obj/item/clothing/glasses/science{ - pixel_x = -2; - pixel_y = 7 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 4 }, +/obj/structure/chair/office/light{ + dir = 4 + }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"cyD" = ( +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "cyG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8531,28 +9336,18 @@ /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2 - }, -/obj/effect/mapping_helpers/mail_sorting/medbay/virology, +/obj/structure/sign/eyechart/directional/east, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"cyN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, +"cyO" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/bot_white, /turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/area/station/engineering/supermatter/room/upper) "cyT" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -8565,6 +9360,7 @@ "czp" = ( /obj/machinery/light/floor, /obj/structure/cat_house, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "czs" = ( @@ -8604,6 +9400,10 @@ dir = 1 }, /area/station/hallway/secondary/entry) +"czx" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "czF" = ( /obj/structure/railing/corner{ dir = 1 @@ -8612,17 +9412,17 @@ dir = 1 }, /obj/structure/cable, -/obj/effect/turf_decal/tile/green/opposingcorners{ - 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/command/bridge) -"czJ" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"czG" = ( +/obj/machinery/duct, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "czK" = ( /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, @@ -8643,8 +9443,14 @@ name = "\improper APLU \"Cargostormer 3\"" }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, /turf/open/floor/iron/recharge_floor, /area/station/cargo/warehouse) +"cAh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth, +/turf/open/floor/plating, +/area/station/medical/patients_rooms/room_a) "cAk" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 6 @@ -8662,14 +9468,6 @@ /obj/machinery/light/directional, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"cAv" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "cAz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8683,18 +9481,23 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/brig) +"cAG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "cAH" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 }, -/obj/structure/table/reinforced, -/obj/machinery/microwave/engineering, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"cAI" = ( -/obj/structure/fireaxecabinet/directional/east, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "cAM" = ( /obj/structure/railing{ dir = 8 @@ -8714,18 +9517,13 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "cAW" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "HoPsToy" - }, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/right/directional/east{ - req_access = list("hop") +/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/wood{ + dir = 9 }, -/turf/open/floor/carpet, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "cBc" = ( /obj/effect/turf_decal/siding/wood, @@ -8764,10 +9562,36 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/wood, /area/station/service/library/printer) -"cBu" = ( -/obj/structure/sign/warning/vacuum/directional/north, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) +"cBl" = ( +/obj/effect/decal/cleanable/glitter, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"cBs" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"cBv" = ( +/obj/machinery/power/emitter/prototype{ + desc = "Hell yeah."; + dir = 4; + name = "Betsy" + }, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "cBA" = ( /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; @@ -8801,24 +9625,54 @@ }, /turf/open/floor/iron/dark, /area/station/commons/storage/art) +"cBF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "cBT" = ( -/obj/structure/lattice/catwalk, -/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/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ - dir = 6 +/obj/item/flashlight/pen{ + pixel_x = -3; + pixel_y = 3 }, -/turf/open/openspace, -/area/station/medical/cryo) -"cBY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 +/obj/item/stamp/head/cmo{ + pixel_x = 8; + pixel_y = 10 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) +"cBU" = ( +/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/all/supply/qm, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster's Office" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) +"cCb" = ( +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "cCj" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -8847,6 +9701,22 @@ }, /turf/open/floor/iron/dark/diagonal, /area/station/service/theater) +"cCo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) +"cCp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4; + initialize_directions = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/structure/sign/warning/hot_temp/directional/west, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "cCq" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 @@ -8857,31 +9727,21 @@ }, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) -"cCr" = ( -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "cCt" = ( /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 = 8 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/white/textured_edge{ - dir = 4 - }, -/area/station/medical/surgery) -"cCv" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/water, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "cCx" = ( /obj/structure/stairs/west, /obj/structure/railing, @@ -8890,29 +9750,15 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) -"cCA" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/station/service/library/printer) -"cCI" = ( -/obj/machinery/door/airlock/external, -/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/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "cCM" = ( /turf/open/openspace, /area/station/engineering/lobby) "cCN" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/chair/sofa/left/brown{ - dir = 1 - }, /obj/machinery/newscaster/directional/south, -/obj/effect/landmark/start/shaft_miner, +/obj/machinery/conveyor{ + dir = 8; + id = "mining" + }, /turf/open/floor/iron/textured, /area/station/cargo/storage) "cCX" = ( @@ -8931,11 +9777,22 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/science/robotics/lab) +"cDd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "cDq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine/hull/air, +/obj/machinery/chem_master, +/obj/structure/sign/warning/secure_area/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, /area/station/medical/chemistry) "cDs" = ( /obj/effect/spawner/structure/window/reinforced, @@ -8948,23 +9805,18 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"cDA" = ( -/obj/effect/spawner/random/trash/janitor_supplies, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "cDB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/white/textured_corner{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) -"cDI" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos/upper) +"cDF" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "cDY" = ( /obj/machinery/light/small/directional/west, /obj/structure/rack, @@ -8996,13 +9848,23 @@ }, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"cEf" = ( -/obj/structure/chair/pew/right{ - dir = 4 +"cEj" = ( +/obj/structure/table/reinforced, +/obj/item/stamp/denied{ + pixel_x = 7; + pixel_y = 8 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/obj/item/stamp/granted{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron, +/area/station/cargo/storage) "cEm" = ( /obj/structure/rack, /obj/item/storage/box/gloves{ @@ -9011,11 +9873,6 @@ /obj/item/storage/box/disks, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"cEn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) "cEH" = ( /obj/structure/table, /obj/item/stock_parts/power_store/cell/high{ @@ -9039,11 +9896,21 @@ /turf/open/floor/wood, /area/station/command/teleporter) "cER" = ( -/obj/effect/turf_decal/tile/brown{ +/obj/effect/turf_decal/siding/green{ dir = 1 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"cET" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "cFa" = ( /turf/open/openspace, /area/station/service/kitchen) @@ -9055,14 +9922,6 @@ /obj/effect/mapping_helpers/airlock/access/any/science/ordnance, /turf/open/floor/engine, /area/station/science/ordnance/burnchamber) -"cFc" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/horrific_experiment, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "cFp" = ( /obj/structure/urinal/directional/east, /obj/effect/decal/cleanable/dirt, @@ -9115,6 +9974,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"cFN" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "cFY" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -9140,17 +10006,25 @@ }, /area/station/hallway/secondary/exit/departure_lounge) "cGp" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/plating, -/area/station/cargo/storage) +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 8; + name = "Cargo Bay"; + shuttle_id = "cargo_home"; + width = 13 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) "cGB" = ( /obj/machinery/light/directional/east, /obj/machinery/camera/autoname/directional/east, -/obj/machinery/button/door/directional/south{ - id = "lawyer_shutters"; +/obj/machinery/button/door/directional/east{ name = "law office shutter control"; - pixel_x = 24; - pixel_y = 7 + id = "lawyer_shutters" }, /turf/open/floor/carpet, /area/station/service/lawoffice) @@ -9181,29 +10055,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"cGS" = ( -/obj/structure/sign/warning/radiation/rad_area, -/turf/closed/wall/r_wall, -/area/station/engineering/hallway) -"cHp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table, -/turf/open/openspace, -/area/station/hallway/secondary/exit/departure_lounge) -"cHq" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 3 +"cHt" = ( +/obj/effect/landmark/start/quartermaster, +/obj/structure/chair/office{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "cHv" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, /area/station/maintenance/solars/port/aft) +"cHx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "cHz" = ( /obj/structure/chair/sofa/left/brown, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -9213,14 +10079,6 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron, /area/station/science/breakroom) -"cHC" = ( -/obj/structure/railing, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/grass, -/area/station/hallway/primary/starboard) "cHD" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9233,39 +10091,40 @@ /obj/structure/closet/toolcloset, /turf/open/floor/wood, /area/station/commons/storage/tools) -"cHK" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 +"cHL" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "cHP" = ( -/obj/machinery/computer/atmos_alert{ +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 1 }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "cHS" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 8 +/obj/item/dest_tagger{ + pixel_x = 8; + pixel_y = 8 }, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/item/dest_tagger{ + pixel_x = -6; + pixel_y = 8 }, -/obj/structure/railing, -/turf/open/floor/iron, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/item/dest_tagger, +/obj/item/clothing/head/soft{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/cable, +/obj/structure/table, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "cHZ" = ( /obj/effect/turf_decal/tile/red/half/contrasted, @@ -9276,17 +10135,12 @@ /area/station/medical/morgue) "cIl" = ( /obj/machinery/disposal/bin, -/obj/machinery/camera/autoname/directional/south, /obj/machinery/light/directional/south, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) -"cIp" = ( -/obj/item/binoculars, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "cIq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -9338,57 +10192,12 @@ specific_transport_id = "catwalk_ai" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"cIH" = ( -/obj/machinery/light/directional/east, -/obj/structure/railing, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/storage) -"cIM" = ( -/obj/effect/turf_decal/trimline/yellow/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/dark, -/area/station/engineering/break_room) -"cIN" = ( -/obj/structure/table/reinforced, -/obj/item/stamp/denied{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, -/area/station/cargo/storage) +/area/station/ai/satellite/chamber) "cIT" = ( /obj/structure/lattice/catwalk, /obj/effect/spawner/random/trash/grille_or_waste, /turf/open/openspace, /area/station/maintenance/port/aft) -"cIX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"cJb" = ( -/obj/item/trash/can, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) "cJk" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/shrink_cw, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, @@ -9397,7 +10206,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/smooth_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "cJp" = ( /obj/item/kirbyplants/random, /obj/machinery/light/dim/directional/east, @@ -9434,11 +10243,6 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/wood, /area/station/security/detectives_office) -"cJE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "cJI" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -9449,25 +10253,28 @@ /turf/closed/wall/r_wall, /area/station/security/prison) "cJK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/warning{ - dir = 1 +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"cJZ" = ( +/obj/structure/chair/pew/right{ + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"cJU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper{ - dir = 8 +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"cKa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "Cabin7"; + name = "Cabin 7" }, -/obj/item/paper/crumpled{ - pixel_x = 2; - pixel_y = 6 +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) "cKc" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -9488,7 +10295,9 @@ /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) "cKs" = ( /obj/effect/decal/cleanable/dirt, @@ -9502,22 +10311,19 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) +"cKK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/commons/dorms) "cKO" = ( /obj/structure/chair, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/start/prisoner, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"cKR" = ( -/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/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/lobby) "cKX" = ( /obj/machinery/smartfridge, /obj/effect/turf_decal/tile/green/full, @@ -9545,10 +10351,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"cLq" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "cLF" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line, @@ -9560,17 +10362,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"cLP" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 8; - listening = 0; - name = "Station Intercom (Court)" - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/courtroom) "cLQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -9580,6 +10371,16 @@ /obj/structure/stairs/north, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"cMj" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "cMq" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment{ @@ -9595,6 +10396,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel) +"cME" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/modular_computer/preset/engineering{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "cMI" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -9604,24 +10415,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"cMW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 8; - name = "Waste Release" +"cMJ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"cMR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "cMY" = ( /obj/effect/turf_decal/box/white{ color = "#9FED58" }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"cNl" = ( -/obj/effect/spawner/random/structure/tank_holder, +"cNf" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/warning/vacuum/directional/north, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/aft) "cNq" = ( /obj/structure/table/wood, /obj/item/book/bible{ @@ -9630,11 +10447,12 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark, /area/station/service/chapel) -"cNt" = ( -/obj/structure/sign/warning/radiation/rad_area, -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/engineering/main) +"cNr" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "cNu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9649,20 +10467,13 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"cNH" = ( -/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/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cNO" = ( +"cNK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "cNS" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -9676,25 +10487,63 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"cOf" = ( -/obj/structure/table/wood/poker, -/obj/item/wrench, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "cOg" = ( /obj/structure/cable, /obj/structure/table, /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"cOj" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/plasma{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "cOm" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/freezer, /area/station/maintenance/port) +"cOr" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/smartfridge/chemistry, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "cOu" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/station/solars/starboard/fore) +"cOz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"cOE" = ( +/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/construction) +"cOJ" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/glitter, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"cOP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/glass, +/area/station/maintenance/port) +"cOR" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "cOS" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/camera/directional/north{ @@ -9709,6 +10558,7 @@ dir = 4 }, /obj/machinery/camera/autoname/directional/west, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) "cPk" = ( @@ -9725,8 +10575,18 @@ c_tag = "Medbay - Lower Virology East Hallway" }, /obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"cPr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "cPz" = ( /obj/structure/railing{ dir = 4 @@ -9742,20 +10602,27 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"cPW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +"cPB" = ( +/obj/structure/flora/tree/palm/style_random, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) +"cPD" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, /obj/structure/disposalpipe/segment{ - dir = 6 + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "cPX" = ( -/obj/machinery/status_display/ai/directional/east, +/obj/item/radio/intercom/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "cPY" = ( /obj/machinery/door/airlock/research{ name = "Research and Development Lab" @@ -9776,6 +10643,24 @@ /obj/structure/chair/comfy/black, /turf/open/floor/glass, /area/station/security/brig) +"cQd" = ( +/obj/structure/table/glass, +/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/button/door/directional/east{ + id = "officecommissarydoor"; + name = "Office Door Lock"; + normaldoorcontrol = 1; + pixel_x = 0; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) +"cQi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) "cQu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, @@ -9784,6 +10669,13 @@ /obj/effect/mapping_helpers/airlock/access/all/service/general, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"cQv" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "cQF" = ( /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /obj/machinery/door/firedoor, @@ -9801,26 +10693,25 @@ /turf/open/openspace, /area/station/maintenance/port/fore) "cRa" = ( -/obj/effect/turf_decal/siding/red, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/turf/open/floor/iron/dark, +/obj/item/kirbyplants/random, +/obj/structure/railing, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "cRb" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/emergency_bed{ - pixel_y = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/machinery/door/airlock/public/glass{ + name = "Medbay" }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/landmark/navigate_destination/med, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "cRc" = ( /obj/structure/ladder, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -9829,9 +10720,6 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"cRk" = ( -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) "cRn" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -9843,7 +10731,6 @@ /turf/open/floor/iron/dark, /area/station/security/brig) "cRL" = ( -/obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/stairs/medium{ dir = 8 }, @@ -9859,6 +10746,7 @@ /obj/structure/disposalpipe/sorting/mail{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) "cRX" = ( @@ -9871,16 +10759,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"cRZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "cSf" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/airalarm/directional/south, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" - }, -/obj/structure/railing{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/cargo/miningoffice) "cSg" = ( @@ -9894,6 +10781,11 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"cSs" = ( +/obj/effect/spawner/structure/window, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "cSt" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 1 @@ -9919,6 +10811,7 @@ /area/station/science/research) "cSy" = ( /obj/structure/ladder, +/obj/effect/turf_decal/stripes/white/box, /turf/open/floor/plating, /area/station/maintenance/port) "cSA" = ( @@ -9927,6 +10820,16 @@ }, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"cSD" = ( +/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 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/science/research) "cSF" = ( /obj/structure/chair/office{ dir = 8 @@ -9935,6 +10838,11 @@ /obj/effect/landmark/start/bitrunner, /turf/open/floor/iron/dark/textured_large, /area/station/cargo/bitrunning/den) +"cSH" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) "cSL" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -9947,11 +10855,6 @@ /turf/open/floor/iron, /area/station/science/lab) "cSN" = ( -/obj/structure/table, -/obj/item/clothing/head/utility/welding{ - pixel_x = -3; - pixel_y = 6 - }, /turf/open/floor/iron/checker, /area/station/maintenance/port/aft) "cSO" = ( @@ -9960,7 +10863,11 @@ /obj/structure/disposalpipe/junction/flip{ dir = 8 }, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "cSW" = ( /obj/structure/chair{ @@ -9988,18 +10895,20 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"cTv" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 +"cTk" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/library) +"cTo" = ( +/obj/machinery/computer/cargo{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 1 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron, +/area/station/cargo/storage) "cTJ" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/maintenance/two, @@ -10012,25 +10921,22 @@ }, /turf/open/floor/plating, /area/station/construction/storage_wing) -"cTL" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "N20 Multideck Adapter" - }, -/obj/machinery/meter{ - name = "N20 meter" - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "cTR" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 1 }, /turf/open/floor/engine/hull, /area/space/nearstation) -"cTS" = ( -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) +"cTU" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/machinery/pdapainter/medbay, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) "cTW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -10039,14 +10945,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"cTX" = ( -/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, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "cTZ" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/machinery/portable_atmospherics/canister/air, @@ -10055,30 +10953,21 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "cUf" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/station/maintenance/port) -"cUi" = ( -/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/command/heads_quarters/cmo) -"cUo" = ( -/obj/effect/turf_decal/siding{ - dir = 1 +"cUj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 9 }, -/obj/effect/turf_decal/trimline/white/corner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"cUl" = ( +/obj/structure/cable, +/turf/open/floor/iron/textured_edge, +/area/station/command/gateway) "cUp" = ( /obj/structure/table, /obj/item/clothing/suit/jacket/straight_jacket{ @@ -10135,8 +11024,8 @@ /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "cVi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -10150,6 +11039,11 @@ /obj/effect/decal/cleanable/confetti, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"cVq" = ( +/obj/effect/spawner/random/structure/crate, +/obj/structure/sign/poster/contraband/hacking_guide/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "cVr" = ( /obj/structure/chair/comfy/black{ dir = 1 @@ -10176,27 +11070,56 @@ /obj/structure/reagent_dispensers/wall/peppertank/directional/north, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"cVH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 +"cVQ" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 }, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/storage/art) +"cVW" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/hangover, /turf/open/openspace, -/area/station/maintenance/starboard/aft) -"cVN" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 8 +/area/station/maintenance/starboard/upper) +"cWb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage) +"cWc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" }, -/turf/open/floor/iron, -/area/station/commons/dorms) +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) "cWd" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = 7; + pixel_y = 11 }, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet, +/obj/item/pinpointer/nuke{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood/end, +/obj/item/disk/nuclear{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "cWg" = ( /obj/structure/railing{ @@ -10230,7 +11153,17 @@ /obj/effect/turf_decal/siding/dark, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"cWr" = ( +/obj/structure/lattice/catwalk, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/table, +/obj/machinery/airalarm/directional/south, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "cWt" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -10243,10 +11176,24 @@ dir = 8 }, /area/station/commons/lounge) -"cWG" = ( -/obj/machinery/vending/cola/pwr_game, -/turf/open/floor/wood, -/area/station/commons/dorms) +"cWu" = ( +/obj/structure/broken_flooring/singular/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cWF" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"cWL" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/ai/upload/chamber) "cWN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10255,9 +11202,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"cWU" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) "cWW" = ( /obj/effect/turf_decal/trimline/red/arrow_ccw{ dir = 1 @@ -10273,6 +11217,20 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"cXd" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/bed/double, +/obj/item/bedsheet/cmo/double, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/cmo) +"cXf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/engine/hull, +/area/station/maintenance/starboard/upper) "cXj" = ( /obj/structure/table/reinforced/rglass, /obj/machinery/fax{ @@ -10281,19 +11239,24 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"cXw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"cXk" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) +"cXm" = ( +/obj/effect/landmark/carpspawn, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cXF" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7-Gateway"; - location = "6-Courtroom" - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/washing_machine, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "cXM" = ( /obj/effect/mapping_helpers/airlock/access/all/service/general, /obj/machinery/door/airlock/maintenance{ @@ -10302,6 +11265,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"cXO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "cXV" = ( /obj/machinery/vending/cigarette, /obj/machinery/firealarm/directional/east, @@ -10315,6 +11286,10 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, /area/station/cargo/storage) +"cYn" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "cYo" = ( /obj/structure/table, /obj/item/reagent_containers/condiment/enzyme{ @@ -10338,21 +11313,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"cYq" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight{ - pixel_y = 14 - }, -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cYx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "cYB" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/lattice/catwalk, @@ -10371,7 +11331,7 @@ /obj/structure/ladder, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "cYT" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -10388,6 +11348,13 @@ dir = 1 }, /area/station/science/lab) +"cZg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Freezer to Loop" + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "cZh" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -10413,6 +11380,11 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/openspace, /area/station/command/heads_quarters/rd) +"cZn" = ( +/obj/structure/musician/piano, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) "cZo" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -10424,12 +11396,42 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/maintenance/port) +"cZr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"cZz" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"cZD" = ( +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "cZE" = ( /obj/effect/turf_decal/tile/dark/half/contrasted{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"cZI" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/station/maintenance/starboard/fore/upper) "cZN" = ( /obj/structure/railing{ dir = 4 @@ -10452,20 +11454,11 @@ dir = 8 }, /area/station/science/ordnance/storage) -"dak" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/engine/hull/air, -/area/station/medical/chemistry) -"daw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"dal" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "dax" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -10475,28 +11468,9 @@ /obj/structure/cable, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"daz" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "daC" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) -"daE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/area/station/ai/satellite/interior) "daW" = ( /obj/structure/ladder, /obj/structure/sign/poster/contraband/space_cola/directional/north, @@ -10557,34 +11531,28 @@ }, /turf/open/floor/wood, /area/station/service/lawoffice) -"dbT" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 +"dch" = ( +/obj/structure/chair/office{ + dir = 1 }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"dcv" = ( -/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/tile, -/area/station/security/detectives_office/private_investigators_office) +/obj/structure/sign/poster/contraband/pwr_game/directional/west, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "dcE" = ( /turf/open/space/basic, /area/space) +"dcO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/starboard) "dde" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) -"ddh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/atmos/project) "ddr" = ( /obj/machinery/airalarm/directional/west, /obj/structure/cable, @@ -10599,21 +11567,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/zoo) -"ddw" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +"ddu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ddx" = ( -/obj/structure/disposalpipe/segment, -/obj/item/banner/command/mundane, -/turf/open/floor/plating, -/area/station/maintenance/port) +/turf/open/openspace, +/area/station/engineering/lobby) "ddz" = ( /obj/effect/turf_decal/siding/white, /obj/item/kirbyplants/organic/plant21{ @@ -10623,45 +11583,42 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"ddM" = ( -/obj/structure/cable, +"ddI" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/bin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ddW" = ( -/obj/structure/railing, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore) "dea" = ( /obj/machinery/door/window/left/directional/west{ name = "Gateway Chamber" }, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "deg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "dej" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 }, -/obj/structure/closet/secure_closet/miner, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Mining" +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 10 }, -/obj/machinery/light/directional/north, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/hallway/primary/starboard) +"dep" = ( +/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/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "dex" = ( /obj/structure/railing/corner{ dir = 1 @@ -10674,6 +11631,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"dey" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "deC" = ( /obj/structure/ladder, /obj/effect/decal/cleanable/dirt, @@ -10691,9 +11652,8 @@ /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "deJ" = ( -/obj/effect/turf_decal/siding/green/corner{ - dir = 4 - }, +/obj/effect/turf_decal/siding/white, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "deR" = ( @@ -10729,11 +11689,18 @@ /turf/open/openspace, /area/station/hallway/primary/central) "dft" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/machinery/light_switch/directional/north, +/obj/structure/sign/clock/directional/east, +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) +"dfy" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "dfC" = ( /obj/item/paper_bin{ pixel_x = -6; @@ -10761,30 +11728,14 @@ /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, /area/station/hallway/secondary/entry) -"dfG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dfI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "dfK" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, -/area/station/medical/coldroom) +/area/station/maintenance/department/medical) "dfL" = ( /obj/machinery/atmospherics/components/unary/portables_connector/layer4, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -10792,11 +11743,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"dfO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/flag/nanotrasen/directional/north, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "dfR" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -10811,12 +11757,15 @@ /obj/effect/turf_decal/box/white, /turf/open/floor/iron/dark/textured_corner, /area/station/science/ordnance/storage) -"dgm" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 +"dgl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "dgy" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -10831,18 +11780,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/black, /area/station/medical/psychology) -"dgR" = ( -/obj/structure/table/reinforced, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/item/toy/crayon/spraycan, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"dhf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/surgicaldrill, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "dho" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -10861,6 +11805,10 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) +"dht" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "dhx" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/siding/wood{ @@ -10868,13 +11816,15 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"dhL" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/railing, -/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, +"dhy" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) +"dhZ" = ( +/obj/structure/lattice, +/turf/open/openspace, /area/station/commons/dorms) "dic" = ( /obj/effect/turf_decal/trimline/dark_blue/corner{ @@ -10882,7 +11832,7 @@ }, /obj/machinery/light/directional/west, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dig" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -10925,7 +11875,7 @@ }, /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dir" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -10974,14 +11924,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) -"diE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) "diJ" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/railing{ @@ -10998,28 +11940,34 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "diP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, /obj/item/cigbutt, -/mob/living/simple_animal/bot/mulebot{ - name = "Old Yeller" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - location = "Cargo Storage" +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/industrial/loader, +/obj/machinery/button/door/directional/south{ + id = "qm_warehouse"; + name = "Warehouse Shutters"; + pixel_x = -6 }, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) +"djc" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "dje" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/iron/smooth, /area/station/engineering/main) -"djf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/medbay/central) +"djn" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "djt" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -11042,13 +11990,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"djE" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "djG" = ( /obj/structure/lattice/catwalk, /obj/machinery/light_switch/directional/east, +/obj/machinery/firealarm/directional/south, /turf/open/openspace, /area/station/security/checkpoint/supply) "djL" = ( @@ -11058,6 +12003,20 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"djM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/upper) +"djX" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"dkb" = ( +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "dkd" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -11066,9 +12025,14 @@ /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "dkm" = ( +/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/command/meeting_room/council) +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/turf/open/floor/plating, +/area/station/command/bridge) "dko" = ( /obj/structure/disposalpipe/sorting/mail{ dir = 8 @@ -11091,7 +12055,7 @@ /obj/machinery/light/directional/west, /obj/effect/spawner/random/armory/barrier_grenades/six, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dkz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11110,14 +12074,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/security/courtroom) -"dkQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "dkY" = ( /obj/machinery/disposal/bin, /obj/machinery/light/directional/north, @@ -11143,14 +12099,6 @@ /obj/structure/disposalpipe/segment, /turf/open/openspace, /area/station/hallway/secondary/construction) -"dlk" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"dll" = ( -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "dlo" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -11158,6 +12106,28 @@ "dlt" = ( /turf/open/floor/plating/airless, /area/station/maintenance/starboard/aft) +"dlv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dlx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) +"dlK" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/stool/directional/east, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "dlW" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/caution/stand_clear, @@ -11171,16 +12141,48 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"dmn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ +"dmj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"dmk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"dmn" = ( +/obj/machinery/light/warm/dim/directional/east, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "dmp" = ( /turf/open/floor/wood, /area/station/command/corporate_showroom) +"dmC" = ( +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/station/commons/dorms) +"dmI" = ( +/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, +/area/station/engineering/lobby) "dmJ" = ( /obj/structure/table/wood, /obj/item/radio/intercom, @@ -11194,31 +12196,44 @@ /obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"dmM" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "dmV" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, /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, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"dnb" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Showers" - }, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 8 - }, -/area/station/engineering/main) "dnj" = ( /obj/effect/spawner/random/structure/grille, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"dno" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/light/very_dim/directional/south, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"dns" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "dnx" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/security/court, @@ -11241,29 +12256,36 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/station/command/corporate_showroom) +"dnJ" = ( +/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/duct, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) +"dnK" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) "dnM" = ( /obj/structure/lattice/catwalk, /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 = 8 + }, +/obj/structure/disposalpipe/segment, /turf/open/openspace, /area/station/medical/abandoned) -"dnO" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/obj/structure/chair{ - dir = 4; - pixel_y = -2 - }, -/obj/item/binoculars, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "dnW" = ( /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"dod" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/openspace, -/area/space/nearstation) "dol" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -11299,20 +12321,9 @@ /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) "dou" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table/reinforced, -/obj/item/defibrillator/loaded{ - pixel_y = 6 - }, -/obj/item/defibrillator/loaded{ - pixel_y = 6 - }, -/obj/item/defibrillator/loaded{ - pixel_y = 6 - }, /obj/machinery/status_display/evac/directional/west, -/turf/open/openspace, -/area/station/medical/storage) +/turf/closed/wall/r_wall, +/area/station/medical/chemistry) "doy" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -11321,17 +12332,17 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "doA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/turf/open/floor/iron/dark/smooth_edge, -/area/station/medical/pharmacy) -"doH" = ( -/obj/item/trash/can{ - pixel_x = 3 +/obj/effect/landmark/start/chemist, +/obj/structure/chair/office/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "doK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11341,11 +12352,13 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"doL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) +"doM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "doO" = ( /obj/machinery/light/directional/north, /obj/machinery/airalarm/directional/north, @@ -11353,19 +12366,16 @@ /obj/machinery/cell_charger{ pixel_y = 3 }, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_y = 8 - }, /obj/item/stock_parts/power_store/cell/high{ charge = 100; maxcharge = 15000; pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "dpo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -11389,10 +12399,9 @@ dir = 6 }, /obj/machinery/computer/shuttle/mining{ - dir = 1; - req_access = null + dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/station/cargo/miningoffice) "dpR" = ( @@ -11406,13 +12415,6 @@ /obj/item/binoculars, /turf/open/floor/engine/hull, /area/space/nearstation) -"dpT" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/lasertag/blue, -/obj/effect/landmark/start/hangover/closet, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "dpV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -11447,16 +12449,6 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, /area/station/science/lobby) -"dqo" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "dqB" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -11466,19 +12458,13 @@ dir = 1 }, /obj/machinery/light/small/directional/south, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "dqC" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/security/interrogation) -"dqF" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/table, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "dqH" = ( /obj/structure/table, /obj/item/gun/grenadelauncher{ @@ -11496,7 +12482,14 @@ /obj/machinery/light_switch/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"dqI" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "dqJ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -11509,10 +12502,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel) +"dqP" = ( +/obj/machinery/light/warm/dim/directional/north, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/hallway/primary/central) "dqY" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/primary/aft) +"dqZ" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"dra" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "drb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -11520,6 +12526,22 @@ /obj/machinery/vending/cigarette, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"drg" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/button/door/directional/south{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + req_access = list("command") + }, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"dri" = ( +/obj/structure/sign/poster/contraband/missing_gloves/directional/east, +/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) "drk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11530,24 +12552,19 @@ /turf/open/floor/plating, /area/station/construction/storage_wing) "drn" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/structure/chair/plastic{ dir = 1 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "drt" = ( /obj/structure/sign/poster/official/fruit_bowl/directional/north, /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) -"drA" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "drC" = ( /turf/open/floor/iron/stairs/medium{ dir = 8 @@ -11555,11 +12572,11 @@ /area/station/hallway/secondary/service) "drI" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/station/maintenance/port/aft) "drJ" = ( /obj/structure/cable, @@ -11580,19 +12597,9 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) -"drW" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 9 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "drX" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"dsg" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/area/station/command/eva) "dso" = ( /obj/structure/stairs/east, /obj/structure/railing, @@ -11605,17 +12612,13 @@ /turf/open/floor/engine/hull, /area/space/nearstation) "dsw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/openspace, -/area/station/medical/storage) +/obj/structure/chair, +/turf/open/floor/glass, +/area/station/medical/patients_rooms/room_a) "dsx" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dsD" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/trimline/dark_blue/warning{ @@ -11627,11 +12630,16 @@ /obj/machinery/telecomms/broadcaster/preset_left, /turf/open/floor/iron/dark/textured_large, /area/station/tcommsat/server) -"dsR" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"dsN" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "dsV" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -11643,21 +12651,11 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/hallway/primary/central) -"dsY" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"dtj" = ( -/obj/machinery/light/directional/south, -/obj/machinery/shower/directional/east, -/obj/structure/fluff/shower_drain, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 4 - }, -/area/station/engineering/main) +"dsZ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "dtn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11675,25 +12673,14 @@ dir = 1 }, /area/station/science/cytology) -"dto" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"dtu" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "holodeck" +"dtv" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Air Supply"; + name = "atmospherics camera" }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/air, +/area/station/engineering/atmos/upper) "dtx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -11701,12 +12688,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/central) -"dtC" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +"dtL" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/computer/security{ + dir = 4 }, -/turf/open/openspace, -/area/station/engineering/lobby) +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "dtO" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 4 @@ -11715,10 +12704,23 @@ /turf/open/floor/iron/dark, /area/station/science/cytology) "dtP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/structure/sign/directions/medical/directional/east{ + dir = 2; + pixel_y = 9; + pixel_x = 0 + }, +/obj/structure/sign/directions/science/directional/east{ + dir = 2; + pixel_y = 3; + pixel_x = 0 + }, +/obj/structure/sign/directions/security/directional/east{ + dir = 2; + pixel_y = -3; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/commons/vacant_room/office) "dtR" = ( /obj/effect/decal/cleanable/food/egg_smudge{ pixel_x = -7; @@ -11726,6 +12728,16 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"dtT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "dua" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -11735,32 +12747,20 @@ /obj/structure/table, /turf/open/openspace, /area/station/construction/storage_wing) -"dul" = ( -/obj/effect/turf_decal/bot_white, -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) -"duq" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) -"dux" = ( -/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/siding/brown/corner{ +"duf" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/floor/iron, -/area/station/commons/dorms) +/turf/open/floor/wood/large, +/area/station/engineering/lobby) +"duw" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/holodeck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "duz" = ( -/obj/structure/table, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 6 }, @@ -11783,55 +12783,73 @@ pixel_x = -7; pixel_y = -1 }, +/obj/structure/table, +/obj/machinery/button/door/directional/east{ + id = "chemshutters"; + name = "Chemistry Shutters"; + req_access = list("pharmacy") + }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"duC" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "duE" = ( -/obj/machinery/light_switch/directional/west{ - pixel_x = -24; - pixel_y = 27 +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"duQ" = ( -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/machinery/light/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +"duG" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "dvn" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron, /area/station/science/research) +"dvr" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "dvs" = ( /obj/structure/sign/poster/contraband/random/directional/north, -/obj/item/storage/bag/trash/filled, /turf/open/floor/plating, /area/station/maintenance/disposal) -"dvu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/pen/red{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"dvt" = ( +/obj/machinery/door/airlock{ + name = "Emergency Storage" }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft) "dvw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/iron/dark, /area/station/science/ordnance) "dvK" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/computer/security/mining{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/cargo/miningoffice) "dvL" = ( @@ -11846,6 +12864,18 @@ /obj/structure/flora/bush/pale/style_random, /turf/open/floor/grass, /area/station/hallway/primary/central) +"dwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/arrow_ccw{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "dwi" = ( /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -11863,14 +12893,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"dwq" = ( -/obj/structure/ladder, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "dwB" = ( /obj/structure/cable, /obj/structure/closet/syndicate{ @@ -11895,19 +12917,35 @@ }, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"dwP" = ( -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 +"dwQ" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) +"dwU" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "Chief Engineers Privacy Shutters" }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) +"dwY" = ( +/obj/structure/table, +/obj/item/clothing/under/costume/seifuku/tan{ + pixel_x = -14; + pixel_y = -2 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 4 +/obj/item/trash/boritos{ + pixel_x = 1; + pixel_y = 9 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/item/clothing/glasses/sunglasses/gar/orange{ + pixel_x = 4 + }, +/obj/structure/sign/poster/contraband/energy_swords/directional/north, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "dxf" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -11915,32 +12953,14 @@ }, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) -"dxh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"dxv" = ( -/obj/machinery/atmospherics/pipe/multiz/orange/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/structure/railing/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "dxx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) "dxA" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/wood, -/area/station/medical/medbay/central) +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "dxB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -11962,14 +12982,28 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"dxQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + 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/openspace, +/area/station/engineering/lobby) +"dxU" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "dyd" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/science/xenobiology) -"dyg" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/security/detectives_office) "dyi" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -11990,6 +13024,11 @@ /obj/machinery/suit_storage_unit/engine, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) +"dyu" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/spear, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "dyx" = ( /obj/machinery/door/airlock/public/glass{ name = "Farewell Room" @@ -12005,7 +13044,10 @@ "dyA" = ( /obj/machinery/light/directional/east, /obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark/textured_large, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "dyE" = ( /obj/effect/turf_decal/stripes/corner{ @@ -12013,44 +13055,21 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"dyG" = ( -/obj/item/pickaxe{ - pixel_x = -5; - pixel_y = -7 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) +"dyM" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "dyN" = ( /turf/open/openspace, /area/station/command/heads_quarters/rd) -"dyQ" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/landmark/firealarm_sanity, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) "dyS" = ( -/obj/structure/chair/office{ - dir = 1 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"dzg" = ( -/obj/structure/rack, -/obj/item/clothing/head/utility/welding, -/obj/item/wrench, -/obj/item/weldingtool, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "dzj" = ( /obj/machinery/door/window/brigdoor/security/cell/left/directional/east{ id = "Cell 1"; @@ -12062,6 +13081,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"dzn" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating/airless, +/area/station/maintenance/aft/upper) "dzo" = ( /mob/living/basic/spider/giant/tarantula{ name = "Mr Johnson" @@ -12070,15 +13094,20 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"dzt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/yjunction{ +"dzw" = ( +/turf/open/floor/wood/large, +/area/station/engineering/lobby) +"dzx" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ dir = 1 }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) -"dzx" = ( -/turf/open/floor/iron/dark, /area/station/command/gateway) "dzH" = ( /obj/machinery/camera/autoname/directional/north, @@ -12086,14 +13115,11 @@ /obj/machinery/light/directional/east, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"dzI" = ( -/turf/open/openspace, -/area/station/maintenance/starboard/fore) "dzK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dzP" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12123,33 +13149,30 @@ /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) "dAV" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/item/radio/intercom/directional/south, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" - }, -/obj/machinery/bouldertech/refinery/smelter, -/obj/structure/railing{ - dir = 1 +/obj/structure/sign/poster/random/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 }, /turf/open/floor/iron, -/area/station/cargo/miningoffice) -"dAW" = ( -/obj/structure/sink/directional/east, -/obj/structure/mirror/directional/west, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/area/station/cargo/storage) +"dAY" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/highsecurity{ + name = "Controlled Hazard Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) "dBd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/item/radio/intercom/directional/north, /obj/effect/spawner/random/structure/musician/piano/random_piano, /turf/open/floor/iron/dark/diagonal, /area/station/service/theater) -"dBe" = ( -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "dBk" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -12163,6 +13186,14 @@ "dBm" = ( /turf/closed/wall, /area/station/hallway/primary/central) +"dBo" = ( +/obj/effect/turf_decal/trimline/yellow/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/engineering/lobby) "dBp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -12183,10 +13214,17 @@ /obj/item/reagent_containers/cup/bottle/sodium{ pixel_x = 1 }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) +"dBz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/medical/virology) "dBB" = ( /obj/structure/lattice/catwalk, /obj/item/stack/rods, @@ -12197,10 +13235,15 @@ /obj/effect/spawner/random/structure/barricade, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"dBG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) +"dBE" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "dBM" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -12212,7 +13255,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dCg" = ( /obj/effect/turf_decal/arrows/red{ dir = 4; @@ -12236,12 +13279,16 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/library) -"dCE" = ( -/obj/effect/turf_decal/siding/brown/end{ +"dCs" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/effect/turf_decal/siding/yellow{ dir = 4 }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "dCY" = ( /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, @@ -12252,37 +13299,36 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"dDq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"dDg" = ( /obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard) +"dDx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"dDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 15 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "dDL" = ( /obj/structure/lattice, /turf/open/space/openspace, /area/space/nearstation) -"dDO" = ( -/obj/structure/ladder, -/turf/open/floor/glass/reinforced, -/area/station/solars/starboard/fore) "dDS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/brig) -"dDV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"dEg" = ( -/obj/structure/chair/sofa/left/brown, -/obj/item/flashlight, -/obj/structure/sign/poster/contraband/grey_tide/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "dEk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -12318,6 +13364,10 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"dEr" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "dEu" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -12357,11 +13407,6 @@ }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"dEX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "dEY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12375,15 +13420,15 @@ /obj/structure/railing/corner{ dir = 8 }, -/obj/machinery/door/airlock/medical{ - name = "Medbay Storage" - }, /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/medical/general, /obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured_large, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/door/airlock/multi_tile/public/glass, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "dFm" = ( /obj/structure/lattice/catwalk, @@ -12395,11 +13440,6 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"dFo" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "dFt" = ( /obj/structure/stairs/north, /turf/open/floor/iron, @@ -12414,20 +13454,6 @@ }, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"dFT" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/lasertag/red, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"dFY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/cigbutt, -/obj/machinery/suit_storage_unit/atmos, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) "dFZ" = ( /obj/effect/turf_decal/siding/red, /turf/open/floor/wood, @@ -12438,24 +13464,11 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "dGi" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Abandoned Hallway" - }, -/obj/machinery/door/firedoor, /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 }, /turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"dGm" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/morgue) +/area/station/hallway/primary/starboard) "dGu" = ( /obj/structure/frame/computer{ anchored = 1 @@ -12470,49 +13483,40 @@ /obj/effect/turf_decal/siding/blue{ dir = 1 }, +/obj/machinery/camera/autoname/directional/north, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "dGy" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) -"dGM" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) -"dGS" = ( /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/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Shared Storage" +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/blue/arrow_ccw{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"dHb" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/encryptionkey/headset_service{ - pixel_y = 5 +/obj/effect/turf_decal/trimline/blue/arrow_cw{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dHh" = ( -/obj/machinery/door/airlock{ - name = "Emergency Storage" +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"dGQ" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/tools, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"dGX" = ( +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + name = "decommissioned sleeper" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) +"dGY" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "dHm" = ( /obj/machinery/door/airlock/virology{ name = "Abandoned Bathroom" @@ -12521,39 +13525,32 @@ /turf/open/floor/iron/freezer, /area/station/maintenance/port) "dHq" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter" - }, -/obj/effect/turf_decal/tile/dark_green/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/office) -"dHC" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight, -/obj/item/pipe_dispenser, -/obj/item/analyzer, -/obj/item/storage/toolbox/mechanical, -/obj/item/pipe_dispenser, /obj/effect/turf_decal/stripes/line{ - dir = 9 + dir = 4 }, -/obj/item/pipe_dispenser{ - pixel_y = 8 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dHK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/structure/sign/poster/contraband/singletank_bomb/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/area/station/command/gateway) +"dHx" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"dHD" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "dHL" = ( /turf/closed/wall, /area/station/maintenance/central) @@ -12564,11 +13561,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"dHS" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/commons/dorms) "dIt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12578,15 +13570,6 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"dIB" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) "dIM" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor/auto{ @@ -12599,9 +13582,8 @@ /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) "dIT" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/station/command/heads_quarters/cmo) +/turf/open/floor/glass, +/area/station/medical/medbay/central) "dIU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/shipping_container, @@ -12623,12 +13605,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/service/cafeteria) -"dJn" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 +"dJp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft/upper) "dJt" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12641,23 +13625,20 @@ /turf/open/floor/iron, /area/station/engineering/storage_shared) "dJC" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/loading_area/red{ + dir = 4 }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Cargo Bay Shutters"; - id = "qm_cargobay"; +/turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, -/turf/open/floor/plating, /area/station/cargo/storage) "dJE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ +/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry, +/obj/structure/disposalpipe/sorting/mail{ dir = 4 }, /turf/open/floor/iron/white/textured_large, @@ -12665,19 +13646,26 @@ "dJF" = ( /obj/structure/railing/corner, /obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) +"dJH" = ( +/obj/machinery/door/airlock/command{ + name = "Auxiliary E.V.A. Storage" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "dJJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, /turf/open/floor/engine, /area/station/service/hydroponics) -"dJR" = ( -/obj/effect/spawner/random/structure/girder, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "dJV" = ( /obj/machinery/camera/autoname/directional/east, /obj/machinery/vending/cigarette, @@ -12690,15 +13678,6 @@ "dJW" = ( /turf/open/floor/glass/reinforced/airless, /area/station/solars/starboard/aft) -"dKa" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/cup/soda_cans/cola{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/cigbutt, -/turf/open/floor/wood, -/area/station/commons/dorms) "dKq" = ( /obj/structure/mirror/directional/north, /obj/structure/sink/directional/south, @@ -12734,15 +13713,13 @@ /area/station/service/hydroponics) "dKu" = ( /obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, /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/blue{ dir = 1 }, +/obj/machinery/holopad, /turf/open/openspace, /area/station/medical/medbay/central) "dKv" = ( @@ -12759,10 +13736,11 @@ /area/station/commons/storage/art) "dKD" = ( /obj/structure/filingcabinet, -/obj/item/radio/intercom/directional/south, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "dKG" = ( @@ -12772,22 +13750,38 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"dKH" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "dKL" = ( -/obj/structure/window/reinforced/spawner/directional/south, /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, /obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"dKM" = ( +/obj/machinery/holopad, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) "dKN" = ( /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dKT" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 +/obj/machinery/conveyor{ + id = "mining" }, -/obj/structure/chair/sofa/middle/brown{ +/obj/structure/railing{ dir = 8 }, /turf/open/floor/iron/textured, @@ -12825,13 +13819,11 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"dLO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "CE's Maintenance Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/turf/open/floor/plating, -/area/station/engineering/lobby) +"dLS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "dLU" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Maintenance" @@ -12860,20 +13852,26 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/wood/tile, /area/station/service/abandoned_gambling_den) -"dMp" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) -"dMJ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 10 +"dMh" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"dMG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "dMK" = ( /obj/structure/table/wood, /obj/item/instrument/guitar{ @@ -12913,10 +13911,10 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "dNc" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/camera/autoname/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "dNj" = ( /obj/structure/cable, @@ -12938,16 +13936,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/service) -"dNu" = ( -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"dNw" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/three, -/obj/item/circuitboard/machine/cyborgrecharger, -/obj/structure/sign/poster/contraband/energy_swords/directional/north, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) +"dNx" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "dNA" = ( /obj/machinery/door/airlock{ id_tag = "courtlockdown"; @@ -12958,20 +13952,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/security/courtroom) -"dNL" = ( -/obj/item/bouquet/sunflower{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/structure/sign/poster/contraband/atmosia_independence/directional/north{ - desc = "Welcome."; - name = "Welcome." - }, -/obj/item/clothing/glasses/orange{ - pixel_y = 5 - }, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) "dNP" = ( /turf/open/floor/wood, /area/station/command/heads_quarters/rd) @@ -12997,7 +13977,9 @@ dir = 8 }, /obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "dNW" = ( /obj/machinery/modular_computer/preset/civilian, @@ -13035,11 +14017,6 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"dOl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/openspace, -/area/station/engineering/break_room) "dOm" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -13050,31 +14027,36 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"dOq" = ( -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"dOr" = ( -/obj/machinery/smartfridge/organ, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +"dOC" = ( +/obj/item/toy/cards/deck{ + pixel_y = 4 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"dOG" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/medical/medbay/central) +/obj/structure/table, +/obj/item/food/hotcrossbun{ + pixel_x = 10; + pixel_y = 12 + }, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"dOE" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/machinery/wall_healer/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "dOH" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 4 }, -/obj/item/pushbroom, -/obj/structure/rack, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/supply{ - pixel_x = 32 +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, /turf/open/floor/iron, /area/station/cargo/storage) @@ -13090,15 +14072,51 @@ /obj/machinery/light/directional/south, /turf/open/openspace, /area/station/cargo/storage) -"dPu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +"dPj" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/computer/atmos_alert, /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) +"dPl" = ( +/turf/open/floor/glass/airless, +/area/station/maintenance/aft) +"dPq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"dPv" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"dPC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/area/station/engineering/supermatter/room/upper) +"dPM" = ( +/obj/item/kirbyplants/random, +/obj/machinery/button/door/directional/east{ + id = "Cabin3"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "dPP" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/disposalpipe/trunk{ @@ -13109,14 +14127,17 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"dPQ" = ( -/obj/structure/railing, -/turf/open/openspace, -/area/station/engineering/storage_shared) "dPR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"dQk" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "dQx" = ( /obj/structure/railing{ dir = 4 @@ -13127,9 +14148,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"dQz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"dQM" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "dQP" = ( /obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) "dQQ" = ( /obj/effect/turf_decal/siding/dark/corner{ @@ -13144,7 +14179,7 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dQV" = ( /obj/machinery/holopad, /turf/open/floor/iron, @@ -13170,18 +14205,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) -"dRk" = ( -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/area/station/ai/satellite/teleporter) "dRl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/smooth, /area/station/science/robotics) +"dRx" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "dRU" = ( /obj/structure/table/wood, /obj/effect/spawner/random/maintenance, @@ -13201,6 +14239,12 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"dSq" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) "dSs" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/stripes/line{ @@ -13210,22 +14254,14 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance) -"dSy" = ( +"dSu" = ( /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/glass/reinforced, -/area/station/solars/starboard/fore) +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "dSA" = ( /obj/structure/railing{ dir = 1 @@ -13233,11 +14269,6 @@ /obj/structure/ladder, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"dSG" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/oil/slippery, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) "dSJ" = ( /obj/structure/sign/poster/official/cleanliness/directional/west, /obj/structure/disposalpipe/segment{ @@ -13253,27 +14284,25 @@ /obj/structure/ladder, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"dSX" = ( -/obj/effect/decal/cleanable/dirt, +"dSY" = ( +/obj/structure/railing{ + dir = 8 + }, /obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"dTb" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/booze, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/aft/upper) +"dTa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/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/upper) "dTc" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, /turf/open/floor/iron, /area/station/science/research) -"dTi" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "dTo" = ( /obj/structure/chair/pew{ dir = 8 @@ -13290,6 +14319,12 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/station/science/robotics/lab) +"dTs" = ( +/obj/machinery/duct, +/obj/effect/spawner/random/structure/grille, +/obj/effect/spawner/random/structure/barricade, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "dTv" = ( /obj/structure/table/reinforced, /obj/machinery/newscaster/directional/east, @@ -13302,8 +14337,16 @@ "dTL" = ( /turf/closed/wall, /area/station/commons/locker) -"dTT" = ( -/obj/structure/railing{ +"dTQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"dTT" = ( +/obj/structure/railing{ dir = 4 }, /obj/structure/lattice/catwalk, @@ -13313,16 +14356,25 @@ }, /turf/open/openspace, /area/station/science/xenobiology) +"dTX" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "dUb" = ( /turf/open/openspace, /area/station/hallway/primary/central) "dUe" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/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, +/area/station/cargo/storage) "dUo" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 @@ -13331,35 +14383,20 @@ /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dUw" = ( -/obj/structure/closet/l3closet, -/obj/structure/railing, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) -"dUG" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ - pixel_x = 8; - pixel_y = 16 - }, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_y = 6 +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 }, -/obj/item/cigbutt{ - pixel_x = -11; - pixel_y = 15 +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"dUH" = ( -/obj/machinery/vending/cola/pwr_game, -/turf/open/floor/eighties, -/area/station/engineering/lobby) +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"dUK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "dUN" = ( /obj/machinery/door/poddoor/shutters/window{ dir = 4; @@ -13369,7 +14406,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dUP" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/ferny/style_random, @@ -13404,14 +14441,13 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"dVe" = ( -/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/electric_shock/directional/west, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"dVd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/commons/dorms) "dVh" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 8 @@ -13450,6 +14486,18 @@ }, /turf/open/floor/wood/large, /area/station/service/library) +"dVq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/warning/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "dVs" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 @@ -13469,14 +14517,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, /area/station/engineering/lobby) +"dVx" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/sepia, +/area/station/hallway/secondary/construction) "dVL" = ( /turf/open/floor/iron/textured_large, /area/station/security/prison) -"dVM" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/custom_shuttle, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "dVO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -13497,32 +14545,25 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"dWg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ +"dWe" = ( +/obj/structure/railing{ dir = 4 }, -/turf/open/floor/iron/smooth, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, /area/station/engineering/atmos/upper) "dWi" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/effect/mapping_helpers/airlock/abandoned, /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/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, -/area/station/medical/coldroom) -"dWj" = ( -/obj/effect/spawner/random/decoration/showcase, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) +/area/station/maintenance/department/medical) "dWp" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -13555,20 +14596,17 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"dWM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/cup/beaker, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "dXh" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "Lcommissaryshutter"; + name = "Vacant Commissary Shutter" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) "dXi" = ( /obj/machinery/vending/cigarette, /turf/open/floor/engine/hull, @@ -13594,37 +14632,32 @@ /obj/structure/railing/corner{ 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/openspace, -/area/station/command/bridge) -"dXx" = ( -/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, +/area/station/command/meeting_room/council) +"dXq" = ( /obj/structure/lattice/catwalk, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/machinery/door/window/right/directional/west{ - name = "First Aid Supplies"; - req_access = list("medical") - }, +/obj/machinery/light/directional/north, /turf/open/openspace, -/area/station/medical/storage) +/area/station/engineering/supermatter/room/upper) +"dXu" = ( +/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 = 10 + }, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "dXy" = ( /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "dXA" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -13633,11 +14666,9 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"dXD" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/graffiti, -/turf/open/floor/plating, -/area/station/maintenance/port) +"dXE" = ( +/turf/open/floor/wood, +/area/station/maintenance/aft) "dXM" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -13647,12 +14678,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) -"dXN" = ( -/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) "dXP" = ( /obj/structure/chair/stool/bar/directional/west, /obj/effect/landmark/start/hangover, @@ -13673,12 +14698,6 @@ }, /turf/open/floor/iron, /area/station/science/research) -"dXY" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "dYa" = ( /obj/machinery/requests_console/directional/north{ department = "Chapel"; @@ -13700,11 +14719,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"dYl" = ( -/obj/structure/weightmachine/weightlifter, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "dYq" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner, @@ -13738,21 +14752,18 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"dZd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +"dZn" = ( +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_y = 24 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dZs" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/fluff/paper/stack{ - dir = 4 +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_y = 40 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/obj/machinery/button/ignition/incinerator/atmos{ + pixel_y = 9 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) "dZv" = ( /obj/structure/railing{ dir = 6 @@ -13773,7 +14784,7 @@ name = "AI Satellite Teleporter room" }, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dZA" = ( /obj/machinery/light/floor, /turf/open/floor/carpet/black, @@ -13793,11 +14804,28 @@ /obj/structure/closet/crate/wooden/toy, /turf/open/floor/wood/large, /area/station/service/theater_dressing) +"dZI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"dZJ" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/south, +/turf/open/space/basic, +/area/space/nearstation) "dZM" = ( /obj/structure/girder/reinforced, /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"dZS" = ( +/obj/structure/sign/warning/radiation/rad_area/directional/east, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) "dZZ" = ( /obj/machinery/atmospherics/components/unary/passive_vent{ dir = 1; @@ -13820,6 +14848,10 @@ "eaj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, /turf/open/floor/plating, /area/station/hallway/secondary/command) "eak" = ( @@ -13830,36 +14862,15 @@ dir = 8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eao" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/east{ - name = "Cargo Desk"; - req_access = list("shipping") - }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/arrows, +/turf/open/floor/iron/dark/textured_large, /area/station/cargo/sorting) "eap" = ( /turf/closed/wall, /area/station/hallway/secondary/entry) -"eas" = ( -/obj/machinery/wall_healer/directional/east, -/obj/machinery/camera/autoname/directional/east, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"eaw" = ( -/obj/effect/turf_decal/siding/brown, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "eaL" = ( /obj/structure/table/reinforced, /obj/structure/displaycase/forsale{ @@ -13883,8 +14894,22 @@ /area/station/science/lobby) "eaM" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, /turf/open/floor/plating, /area/station/commons/vacant_room/office) +"eaN" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "eaO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -13894,68 +14919,42 @@ /obj/item/hemostat, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) -"eaT" = ( -/obj/effect/turf_decal/siding/wood{ +"eaU" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/item/cigbutt, -/obj/effect/landmark/start/hangover, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "eaV" = ( /turf/closed/wall/r_wall, /area/station/engineering/supermatter/room) -"eaX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "ebj" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, /turf/open/floor/plating, /area/station/security/detectives_office/private_investigators_office) -"ebA" = ( -/obj/structure/chair/sofa/left/brown{ - dir = 8 +"ebK" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/assembly/flash/handheld{ + pixel_x = 7; + pixel_y = 2 }, -/obj/item/cigbutt{ - pixel_x = -8; - pixel_y = 4 +/obj/machinery/recharger{ + pixel_y = 3 }, -/obj/structure/sign/poster/contraband/kudzu/directional/east, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) -"ebC" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ebD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/item/cigarette/cigar{ + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "ebL" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark/textured_corner, /area/station/science/ordnance/storage) -"ebM" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/holodeck, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "ebO" = ( /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 4 @@ -13966,10 +14965,6 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"ebS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) "ebY" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -13994,10 +14989,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"ech" = ( -/obj/machinery/camera/autoname/directional/west, -/turf/open/openspace, -/area/station/commons/dorms) "ecu" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -14020,6 +15011,19 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"ecz" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/firealarm/directional/west{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west{ + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "ecB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -14037,7 +15041,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/smooth_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ecJ" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 @@ -14055,10 +15059,6 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"ecP" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "ecS" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -14091,51 +15091,28 @@ /area/station/science/lobby) "edf" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"edl" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/water, -/area/station/maintenance/port/fore) -"eds" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ - dir = 6 - }, -/turf/open/floor/iron/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"edu" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"edm" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "edz" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L12" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"edC" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "edJ" = ( /obj/effect/landmark/start/assistant, /obj/structure/disposalpipe/segment{ @@ -14148,41 +15125,52 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"edY" = ( -/obj/effect/turf_decal/stripes/line{ +"edR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ dir = 1 }, -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "eeb" = ( /obj/structure/chair/greyscale, /obj/effect/landmark/start/hangover, /turf/open/floor/glass/reinforced, /area/station/hallway/secondary/construction) -"eed" = ( -/obj/machinery/computer/atmos_control/carbon_tank, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 +"eeg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"eeh" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/stripes/box, +/obj/structure/ladder, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"eej" = ( +/obj/structure/secure_safe/directional/south, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"eel" = ( +/obj/machinery/shower/directional/south, +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/item/mail/junkmail{ + pixel_y = -6; + pixel_x = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "een" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured_large, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "eeq" = ( /obj/structure/chair/office{ @@ -14199,23 +15187,26 @@ /obj/machinery/wall_healer/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"eeA" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ +"eeE" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ dir = 1 }, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured_edge, -/area/station/medical/morgue) +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "eeH" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, -/area/station/medical/coldroom) +/area/station/maintenance/department/medical) "eeN" = ( /obj/machinery/ntnet_relay, /obj/effect/turf_decal/siding/dark{ @@ -14223,11 +15214,38 @@ }, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) +"eeO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "eeW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/hallway/secondary/service) +"efc" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) +"efg" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/table, +/obj/machinery/status_display/evac/directional/north, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "efh" = ( /obj/item/cigbutt{ pixel_x = -9; @@ -14254,10 +15272,13 @@ /turf/open/floor/wood, /area/station/command/heads_quarters/hos) "efC" = ( -/obj/effect/turf_decal/siding/red{ - dir = 8 +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/iron/dark, +/obj/item/paper_bin/bundlenatural, +/obj/item/pen, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "efD" = ( /obj/structure/extinguisher_cabinet/directional/east, @@ -14287,27 +15308,40 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"efM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/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/storage) "efN" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, -/obj/machinery/button/elevator{ - id = "catwalk_sec"; - pixel_y = 25 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/machinery/button/elevator/directional/north{ + id = "catwalk_sec" + }, /turf/open/floor/iron/dark, /area/station/security/brig) -"efZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/project) +"efQ" = ( +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "ega" = ( /obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/space/nearstation) +"egg" = ( +/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/plating, +/area/station/maintenance/starboard/fore/upper) "egi" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -14317,7 +15351,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "egk" = ( /obj/item/trash/candy, /obj/structure/cable, @@ -14326,23 +15360,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) -"egp" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"ego" = ( +/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/trunk/multiz{ dir = 4 }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"egp" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"egr" = ( -/obj/structure/lattice/catwalk, -/obj/item/clothing/shoes/wheelys/rollerskates{ - pixel_x = 3; - pixel_y = -5 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) "egw" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/railing/corner{ @@ -14353,12 +15385,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/hallway/primary/central) -"egC" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +"egA" = ( +/obj/structure/table, +/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/supermatter/room/upper) "egD" = ( /obj/structure/table/reinforced, /turf/open/floor/engine/vacuum, @@ -14373,6 +15405,17 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"egH" = ( +/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/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/science/lobby) "egK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14409,7 +15452,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ehi" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -14417,12 +15460,14 @@ }, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/aft) -"ehO" = ( -/obj/item/trash/can{ - pixel_x = -8 +"ehu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "ehX" = ( /obj/effect/spawner/random/trash/garbage{ spawn_scatter_radius = 1 @@ -14435,10 +15480,13 @@ /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) "ehZ" = ( -/obj/effect/turf_decal/siding/blue{ +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, -/obj/machinery/light/directional/south, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "eia" = ( @@ -14456,22 +15504,18 @@ dir = 4 }, /area/station/hallway/primary/fore) -"eij" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "eis" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"eiu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/explab) "eiW" = ( /obj/item/beacon, /turf/open/floor/engine/vacuum, @@ -14482,7 +15526,18 @@ /obj/item/paper_bin, /obj/item/pen, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"ejc" = ( +/obj/structure/cable, +/obj/structure/sign/nanotrasen{ + pixel_y = 32; + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "ejh" = ( /obj/effect/turf_decal/stripes/asteroid/corner, /obj/effect/spawner/random/engineering/atmospherics_portable, @@ -14491,13 +15546,25 @@ "ejo" = ( /turf/closed/wall, /area/station/science/xenobiology/hallway) -"ejA" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"ejz" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ejB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper{ + dir = 4 + }, +/obj/structure/fluff/paper/stack{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/wood, +/area/station/maintenance/aft) "ejP" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 @@ -14506,7 +15573,7 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ejQ" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -14562,22 +15629,20 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"eku" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron{ - amount = 30 +"ekw" = ( +/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/wood{ + dir = 8 }, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ekB" = ( -/obj/structure/bed, -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/effect/spawner/random/bedsheet, -/turf/open/floor/wood, +/turf/open/floor/iron/dark/smooth_large, /area/station/commons/dorms) +"ekH" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/toilet, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "ekL" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -14619,16 +15684,11 @@ name = "Inner Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, /area/station/construction/storage_wing) -"els" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "elw" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -14668,20 +15728,25 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"elH" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Catwalk Access" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "elO" = ( /obj/structure/chair/sofa/corp/corner{ dir = 4 }, /obj/item/radio/intercom/directional/north, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "elP" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2, -/turf/open/floor/iron/dark, +/obj/machinery/cryo_cell, +/turf/open/floor/iron/dark/textured, /area/station/medical/cryo) "elS" = ( /obj/structure/closet/crate/trashcart/filled, @@ -14698,35 +15763,55 @@ /obj/structure/table, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) +"emb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"emd" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "emh" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 10 }, -/obj/structure/table/reinforced, -/obj/item/storage/photo_album/qm, -/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/textured, /area/station/cargo/storage) "emj" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 8; - name = "Cargo Bay"; - shuttle_id = "cargo_home"; - width = 13 +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/arrows/red{ + dir = 4 }, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/obj/effect/turf_decal/arrows/red{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "emn" = ( +/obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 + dir = 6 + }, +/obj/item/book/manual/wiki/medicine{ + pixel_x = 1; + pixel_y = 5 }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 4 }, /turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +/area/station/medical/medbay/central) "emE" = ( /obj/effect/turf_decal/siding/brown/corner{ dir = 8 @@ -14754,19 +15839,14 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "emH" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ dir = 8 }, -/obj/effect/turf_decal/tile/bar, -/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"emL" = ( -/obj/effect/turf_decal/siding/brown/end{ - dir = 1 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "emM" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -14776,39 +15856,37 @@ /turf/open/floor/iron, /area/station/science/robotics/lab) "emR" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/effect/turf_decal/bot_white, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"emS" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"enh" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/table, -/obj/item/paper_bin/carbon{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/book/manual/wiki/tcomms{ - pixel_x = 14; - pixel_y = 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/dark/textured_large, +/area/station/cargo/storage) +"ene" = ( +/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/opposingcorners{ + dir = 1 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"enk" = ( +/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/yellow/opposingcorners{ dir = 1 }, -/obj/machinery/computer/security/telescreen/tcomms/directional/south{ - name = "Telecomms Camera Monitor" +/obj/structure/railing/corner/end{ + pixel_y = 2 }, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/area/station/engineering/storage/tech) "eny" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty{ @@ -14817,17 +15895,17 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/wood, /area/station/commons/storage/tools) +"enA" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "enE" = ( /obj/effect/turf_decal/siding/green/corner{ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"enK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "enN" = ( /obj/structure/urinal/directional/east, /obj/effect/decal/cleanable/dirt/dust, @@ -14841,6 +15919,11 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"enY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "eoe" = ( /obj/vehicle/ridden/atv{ dir = 4; @@ -14848,6 +15931,17 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/greater) +"eoj" = ( +/obj/structure/window/spawner/directional/north, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay-office"; + name = "Medbay Shutters"; + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/computer/records/medical, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/office) "eoq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -14860,6 +15954,11 @@ }, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) +"eot" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "eoF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/decoration/paint, @@ -14879,6 +15978,15 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) +"eoN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table, +/obj/item/stack/rods{ + pixel_y = 3 + }, +/obj/structure/sign/poster/contraband/lizard/directional/south, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "epi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -14904,14 +16012,25 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/teleporter) -"epE" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/effect/landmark/event_spawn, -/turf/open/floor/grass, -/area/station/commons/dorms) +/area/station/ai/satellite/teleporter) +"epn" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"epv" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/hot_temp/directional/south, +/turf/open/space/basic, +/area/space/nearstation) +"epH" = ( +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "epR" = ( /obj/effect/turf_decal/trimline/dark_blue/line{ dir = 4 @@ -14926,7 +16045,7 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "epY" = ( /obj/structure/plaque/static_plaque/golden/commission/efficiency{ pixel_y = 32 @@ -14947,6 +16066,7 @@ pixel_x = 3; pixel_y = 9 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "eqi" = ( @@ -14969,11 +16089,6 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"eqp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "eqt" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, @@ -14985,13 +16100,21 @@ /obj/effect/turf_decal/siding/dark/corner, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eqx" = ( /obj/structure/railing{ dir = 6 }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) +"eqR" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "eqU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -15013,32 +16136,17 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"erj" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/maintenance/starboard/lesser) "erp" = ( -/obj/structure/lattice, -/obj/machinery/camera/directional/west, -/turf/open/openspace, -/area/station/hallway/primary/central) -"err" = ( -/obj/structure/sign/poster/official/no_erp/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"ers" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/status_display/evac/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/dark_blue/opposingcorners, /obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/courtroom) +/turf/open/floor/iron/dark, +/area/station/command/bridge) "eru" = ( /obj/structure/stairs/east, /obj/structure/railing, +/obj/machinery/newscaster/directional/east, /turf/open/floor/iron/stairs/medium{ dir = 8 }, @@ -15060,7 +16168,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -15073,11 +16181,6 @@ /obj/structure/fake_stairs/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"erI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bookcase/random/religion, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "erM" = ( /obj/machinery/vending/autodrobe, /obj/item/clothing/head/cone{ @@ -15098,25 +16201,36 @@ }, /turf/open/floor/wood/large, /area/station/service/theater_dressing) +"erV" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmoslowersm" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/supermatter/room) "esb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/security/medical) -"esk" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 +"esr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/skub{ + pixel_x = 7; + pixel_y = 18 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "esu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -15132,27 +16246,39 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/construction) +"esD" = ( +/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/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "esH" = ( /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/medical) -"eta" = ( -/obj/machinery/vending/coffee, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark/textured_large, +"esR" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/sign/warning/cold_temp/directional/east{ + name = "Cryogenics"; + pixel_x = 26 + }, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) -"etf" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin7"; - name = "Cabin 1" +"eta" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay Storage" }, -/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/wood, -/area/station/commons/dorms) +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/white, +/area/station/medical/storage) "etl" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -15170,28 +16296,26 @@ pixel_y = 3 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "etp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) -"etu" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "abandoned_kitchen"; - name = "Kitchen Shudders" +/obj/effect/turf_decal/stripes{ + dir = 1 }, -/obj/item/rag, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "etN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer4, /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) +"etQ" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Malpractice Tower" + }, +/obj/effect/turf_decal/tile/green/full, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/virology) "etU" = ( /obj/structure/lattice/catwalk, /obj/structure/closet/crate/cardboard, @@ -15211,6 +16335,24 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/detectives_office/private_investigators_office) +"euu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"eux" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - co2 Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos/upper) "euD" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -15218,19 +16360,17 @@ "euG" = ( /turf/closed/wall, /area/station/cargo/bitrunning/den) +"euH" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/stairs/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "euI" = ( /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"euN" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/spawner/random/trash/cigbutt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/tile, -/area/station/security/detectives_office/private_investigators_office) "eva" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/official/random/directional/west, @@ -15252,19 +16392,6 @@ /obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) -"evj" = ( -/obj/structure/chair/stool/directional/east, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"evv" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped/layer5{ - dir = 8; - name = "air mixer" - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "evC" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 8 @@ -15276,25 +16403,13 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) -"evH" = ( -/obj/structure/broken_flooring/singular/directional/east, -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"evO" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/lesser) -"ewf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +"ewg" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ewi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15310,7 +16425,7 @@ pixel_x = 6 }, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ewl" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -15324,26 +16439,16 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"ewm" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored{ - cable_layer = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"ewx" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/item/weldingtool/empty{ - pixel_x = -5; - pixel_y = -6 +"ewt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"ewu" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "ewA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15353,7 +16458,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "ewD" = ( /turf/closed/wall, /area/station/service/cafeteria) @@ -15361,21 +16466,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"ewK" = ( -/obj/machinery/power/turbine/inlet_compressor{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"ewY" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/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/fore) "exb" = ( /obj/structure/lattice/catwalk, /obj/machinery/door/firedoor, @@ -15393,6 +16483,23 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"exk" = ( +/obj/effect/turf_decal/trimline/yellow/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, +/area/station/engineering/lobby) +"exn" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "exo" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -15403,30 +16510,27 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/lab) -"exM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/item/stack/rods/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"exS" = ( -/obj/structure/railing{ +"exr" = ( +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "N2 Multideck Adapter"; dir = 8 }, -/obj/structure/table/glass, -/obj/machinery/digital_clock/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 +/obj/machinery/meter{ + name = "N2 meter" }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"exV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"exS" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/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/command/meeting_room/council) "exY" = ( /obj/item/storage/box/evidence{ pixel_x = 7; @@ -15443,42 +16547,75 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"eyg" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "eys" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/office) +"eyC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "eyD" = ( /obj/structure/toilet/greyscale{ pixel_y = 17 }, /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) -"eza" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ladder, -/obj/structure/railing{ - dir = 6 +"eyP" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/turf/open/openspace, -/area/station/commons/dorms) -"ezm" = ( +/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/machinery/holopad, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"eyQ" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/urinal/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) +"ezh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"ezm" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "ezq" = ( /obj/structure/reflector/single/anchored{ dir = 5 }, /turf/open/floor/iron/dark/textured, /area/station/engineering/supermatter/room) +"ezt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + 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, +/area/station/engineering/lobby) +"ezz" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "ezE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15489,12 +16626,6 @@ /obj/effect/turf_decal/trimline/yellow/filled/line, /turf/open/floor/iron, /area/station/engineering/lobby) -"ezL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "ezP" = ( /obj/structure/training_machine, /obj/machinery/airalarm/directional/east, @@ -15503,16 +16634,11 @@ }, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) -"ezT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "ezW" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) "ezX" = ( @@ -15523,33 +16649,35 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"eAd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, +"ezY" = ( +/obj/structure/sign/warning/fire/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eAg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"eAh" = ( /obj/structure/railing{ - dir = 5 + dir = 1 }, -/obj/structure/railing/corner{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/engineering/lobby) -"eAg" = ( -/obj/structure/table/wood, -/obj/item/clipboard{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/machinery/recharger{ - pixel_x = -6; - pixel_y = 4 +"eAl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 }, -/obj/item/toy/figure/captain{ - pixel_x = 7; - pixel_y = 10 +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) +/turf/open/floor/iron, +/area/station/engineering/lobby) "eAH" = ( /obj/effect/spawner/random/trash/garbage, /turf/open/floor/plating, @@ -15569,20 +16697,15 @@ /obj/effect/turf_decal/siding/blue/corner{ dir = 4 }, +/obj/structure/lattice/catwalk, +/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/openspace, /area/station/medical/medbay/central) -"eAP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/item/surgicaldrill, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) -"eAT" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/engineering/tank, -/turf/open/water, -/area/station/maintenance/port/fore) "eAV" = ( /obj/structure/railing/corner/end{ dir = 4 @@ -15601,27 +16724,29 @@ "eBc" = ( /obj/structure/table/reinforced/rglass, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eBd" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"eBf" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) +"eBi" = ( +/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/catwalk_floor, +/area/station/maintenance/starboard/fore) +"eBo" = ( +/turf/open/floor/iron, +/area/station/commons/locker) "eBt" = ( /obj/structure/tank_dispenser/oxygen{ pixel_x = -1; pixel_y = 2 }, /obj/structure/window/reinforced/spawner/directional/west, -/turf/open/floor/carpet, +/turf/open/floor/carpet/purple, /area/station/command/gateway) "eBu" = ( /obj/structure/flora/bush/flowers_br/style_random, @@ -15643,6 +16768,22 @@ /obj/effect/mapping_helpers/requests_console/assistance, /turf/open/floor/wood, /area/station/security/detectives_office) +"eBD" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"eBF" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/engine/hull/air, +/area/station/commons/fitness/recreation) "eBP" = ( /obj/structure/cable, /obj/structure/mirror/broken/directional/west, @@ -15651,34 +16792,38 @@ /turf/open/floor/iron/cafeteria, /area/station/maintenance/port) "eBQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/camera/autoname/directional/east, /obj/structure/cable, -/turf/open/floor/iron/dark/textured_corner{ - dir = 1 - }, +/turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"eBX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/oven, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "eBZ" = ( /obj/effect/spawner/random/structure/closet_empty/crate, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) -"eCu" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +"eCa" = ( +/obj/structure/frame/machine/secured, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) "eCy" = ( /obj/structure/lattice, /turf/open/floor/engine/hull, /area/space/nearstation) +"eCA" = ( +/obj/effect/turf_decal/siding/brown/corner, +/obj/structure/railing/corner, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) "eCD" = ( /obj/item/kirbyplants/random, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -15689,33 +16834,27 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"eCF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/station/commons/dorms) "eCM" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/exotic/technology, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"eCO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "eCV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/construction/storage_wing) "eDj" = ( -/obj/machinery/camera/directional/north{ - c_tag = "AI Upload Chamber - Upper"; - network = list("aiupload") - }, +/obj/machinery/camera/autoname/motion/directional/north, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "eDl" = ( /obj/item/clothing/head/cone{ pixel_x = -7; @@ -15724,6 +16863,12 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"eDq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "eDr" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -15731,6 +16876,13 @@ /obj/effect/landmark/start/detective, /turf/open/floor/carpet, /area/station/security/detectives_office) +"eDI" = ( +/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/dorms) "eDO" = ( /obj/machinery/telecomms/bus/preset_four, /obj/effect/turf_decal/tile/yellow/fourcorners, @@ -15738,13 +16890,43 @@ /obj/effect/mapping_helpers/airalarm/tlv_no_checks, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) +"eDP" = ( +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"eEf" = ( +/obj/structure/railing, +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/folder/blue{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/folder{ + pixel_x = 2 + }, +/obj/item/taperecorder{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/private) "eEi" = ( /obj/structure/ladder, /obj/machinery/light_switch/directional/south, /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eEv" = ( /turf/open/floor/plating, /area/station/maintenance/starboard/aft) @@ -15766,10 +16948,14 @@ }, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"eEN" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, +"eER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/athletic_mixed, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard) "eES" = ( /obj/item/food/pie/cream, /obj/structure/closet/crate/coffin, @@ -15786,24 +16972,23 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"eEW" = ( -/obj/machinery/light/directional/north, -/obj/structure/lattice/catwalk, +"eFk" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, /obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"eFm" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/directional/west, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) +/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/central) "eFq" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "eFs" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, @@ -15815,6 +17000,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) +"eFE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "eFJ" = ( /obj/item/kirbyplants/photosynthetic, /obj/effect/turf_decal/trimline/dark_blue/filled/line{ @@ -15825,7 +17015,7 @@ }, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eGc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15845,21 +17035,11 @@ /area/station/security/checkpoint/customs) "eGk" = ( /obj/structure/sign/plaques/kiddie/perfect_drone{ - pixel_y = 32 - }, -/turf/open/openspace, -/area/station/command/corporate_showroom) -"eGp" = ( -/obj/machinery/computer/station_alert{ + pixel_y = 32; dir = 1 }, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) -"eGq" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/east, /turf/open/openspace, -/area/station/engineering/break_room) +/area/station/command/corporate_showroom) "eGs" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15885,21 +17065,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"eGE" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/yellow/filled/end{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "eGM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/effect/landmark/start/paramedic, -/turf/open/openspace, -/area/station/medical/cryo) +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) "eGP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -15917,6 +17092,11 @@ /obj/item/reagent_containers/cup/bottle/morphine, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) +"eHa" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/chair/sofa/corp/corner, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) "eHg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15938,27 +17118,11 @@ }, /turf/open/openspace, /area/station/hallway/primary/central) -"eHz" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/item/clothing/under/costume/seifuku/teal{ - pixel_x = -1; - pixel_y = -9 - }, -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/cigpack_midori{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/instrument/piano_synth/headphones{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/sign/poster/contraband/syndicate_pistol/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "eHF" = ( -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/fore) +/obj/structure/ladder, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "eHO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/broken_flooring/pile/always_floorplane/directional/west, @@ -15974,7 +17138,17 @@ pixel_y = 6 }, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"eHZ" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage" + }, +/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/dark/textured_large, +/area/station/engineering/storage) "eIh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16008,6 +17182,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"eIq" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "eIs" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -16052,15 +17231,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"eIN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "eIO" = ( /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) -"eIR" = ( -/obj/machinery/airalarm/directional/north, +"eIQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/structure/chair/sofa/left/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"eJa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "eJb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16075,19 +17266,31 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) -"eJw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +"eJp" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 1 }, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "N2 Multideck Adapter"; - dir = 8 +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"eJx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 }, -/obj/machinery/meter{ - name = "N2 meter" +/obj/structure/railing/corner{ + dir = 1 }, -/turf/open/floor/iron/smooth, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, /area/station/engineering/atmos/upper) +"eJS" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "eJX" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -16098,97 +17301,46 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"eJZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"eKc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/trash/moisture_trap, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "eKh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall, +/area/station/medical/cryo) +"eKq" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Port to Engine" }, +/obj/effect/turf_decal/trimline/brown, /turf/open/floor/iron/dark, -/area/station/medical/cryo) +/area/station/engineering/supermatter/room/upper) "eKz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"eKF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clothing/shoes/magboots{ - desc = "Magnetic boots, for the solar enthusiasts. Idential to a regular magboot in everything but soul."; - name = "Solars' Magboots"; - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/crowbar, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/gloves/color/yellow{ - pixel_x = 0; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/machinery/camera/autoname/directional/west, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"eKH" = ( +"eKA" = ( /obj/structure/lattice/catwalk, -/obj/structure/table/reinforced, -/obj/item/storage/fancy/candle_box{ - pixel_x = 12; - pixel_y = 11 - }, -/obj/item/gun/syringe{ - desc = "The Holy Syringe Gun. Identical to the regular syringe gun. You have a feeling that you shouldn't touch this."; - name = "Holy Syringe Gun"; - pixel_x = -3; - pixel_y = 3 +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing{ + dir = 1 }, /turf/open/openspace, -/area/station/medical/storage) +/area/station/engineering/supermatter/room/upper) "eKL" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/east, +/obj/structure/bed/maint, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "eKW" = ( /obj/structure/railing, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "eLc" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -16203,17 +17355,6 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) -"eLh" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/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, -/area/station/engineering/atmos/project) "eLl" = ( /obj/machinery/door/airlock/command{ name = "Captain's Office" @@ -16223,7 +17364,8 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/command/captain, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "eLp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16239,6 +17381,16 @@ "eLU" = ( /turf/closed/wall/r_wall, /area/station/command/gateway) +"eLV" = ( +/obj/item/storage/toolbox/artistic, +/obj/item/storage/toolbox/artistic, +/obj/structure/rack, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "eMa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -16247,25 +17399,18 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) "eMd" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ +/obj/structure/chair/office/light{ dir = 1 }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"eMh" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/glass/reinforced, -/area/station/maintenance/solars/port/aft) +"eMf" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "eMi" = ( /obj/machinery/door/airlock/public/glass{ name = "Arrivals Lounge" @@ -16286,22 +17431,25 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"eMo" = ( -/obj/structure/table, -/obj/machinery/camera/autoname/directional/west, -/obj/structure/sign/departments/aisat/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "eME" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/table, +/obj/item/book/manual/wiki/medicine{ + pixel_x = -7; + pixel_y = 7 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 +/obj/item/reagent_containers/dropper{ + pixel_y = 7 }, -/turf/open/floor/iron/dark/smooth_large, +/obj/item/clothing/neck/stethoscope{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/textured, /area/station/medical/cryo) "eMI" = ( /obj/effect/spawner/structure/window/reinforced, @@ -16309,10 +17457,30 @@ /obj/effect/landmark/navigate_destination/sec, /turf/open/floor/plating, /area/station/security/brig) +"eMN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/crayon{ + icon_state = "revolution"; + name = "graffiti"; + paint_colour = "#FF0000"; + pixel_y = 32 + }, +/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, +/area/station/maintenance/starboard/central/upper) "eNb" = ( /obj/effect/spawner/random/trash, /turf/open/floor/plating, /area/station/maintenance/port) +"eNg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/commons/dorms) "eNz" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -16326,14 +17494,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) -"eND" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/sofa/right/brown{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "eNE" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 @@ -16344,6 +17504,26 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/port) +"eNH" = ( +/obj/item/bedsheet/qm/double, +/obj/structure/bed/double, +/obj/effect/landmark/start/quartermaster, +/obj/item/stack/spacecash/c10{ + pixel_x = -5 + }, +/obj/item/toy/plush/lizard_plushie/greyscale{ + name = "Steals-The-Crates"; + pixel_y = 7 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) "eNO" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -16378,13 +17558,6 @@ /mob/living/basic/pet/dog/pug/mcgriff, /turf/open/floor/iron/dark, /area/station/security/warden) -"eNY" = ( -/obj/structure/table/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "eOa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16392,17 +17565,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) -"eOh" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) -"eOn" = ( -/obj/item/cigbutt{ - pixel_x = -11; - pixel_y = -5 +"eOf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/fore/upper) +"eOh" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/white, +/area/station/hallway/secondary/entry) "eOo" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -16417,29 +17595,14 @@ /turf/open/floor/plating, /area/station/engineering/supermatter/room) "eOx" = ( -/obj/structure/table, /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, -/obj/item/assembly/timer{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/radio/headset/headset_med{ - pixel_x = 15; - pixel_y = 4 - }, /obj/machinery/camera/autoname/directional/south{ network = list("ss13","medbay"); c_tag = "Medbay - Lower Pharmacy" }, -/obj/machinery/button/door/directional/south{ - id = "chemshutters"; - name = "Chemistry Shutters" - }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/chem_master, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "eOA" = ( @@ -16455,31 +17618,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, /area/station/medical/virology) -"eOB" = ( -/obj/structure/flora/bush/jungle{ - pixel_y = -7 - }, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/ladder, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) -"eOD" = ( -/obj/structure/rack, -/obj/machinery/firealarm/directional/south, -/obj/effect/spawner/random/techstorage/rnd_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "eOG" = ( /obj/effect/mapping_helpers/damaged_window, /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/security/detectives_office/private_investigators_office) -"eOM" = ( -/obj/structure/broken_flooring/corner/directional/west, -/obj/effect/decal/cleanable/dirt, +"eOH" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, /turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/area/station/maintenance/starboard) "eOS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/official/random/directional/south, @@ -16492,19 +17646,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) -"ePm" = ( -/obj/structure/rack, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/radio, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "ePn" = ( /obj/structure/mop_bucket/janitorialcart{ dir = 4 @@ -16512,32 +17653,38 @@ /obj/effect/turf_decal/tile/purple/full, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"ePM" = ( -/obj/structure/railing, -/obj/effect/decal/cleanable/dirt, +"ePz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/transit_tube/station/dispenser/flipped{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"ePT" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" +/area/station/engineering/transit_tube) +"ePI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ePX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"ePT" = ( /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/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"eQg" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "eQj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -16573,24 +17720,21 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"eQC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "eQF" = ( /turf/open/floor/iron, /area/station/commons/storage/primary) -"eQO" = ( -/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 = 2 - }, -/obj/machinery/light/directional/west, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +"eQZ" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/backpack, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "eRb" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" @@ -16601,37 +17745,29 @@ /obj/effect/mapping_helpers/airlock/access/all/security/brig, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"eRd" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 +"eRc" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"eRg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/area/station/commons/fitness/recreation) +"eRd" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"eRm" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/effect/turf_decal/plaque{ + icon_state = "L7" }, -/turf/open/floor/plating, -/area/station/commons/dorms) +/obj/effect/landmark/observer_start, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) "eRs" = ( -/obj/effect/turf_decal/siding/green, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L5" }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) @@ -16657,17 +17793,16 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) "eRC" = ( -/obj/structure/table, -/obj/item/rag{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/reagent_containers/cup/bucket{ - pixel_x = -7; - pixel_y = 12 +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "HoPsToy"; + name = "Loading Conveyor"; + pixel_y = 8 }, -/obj/structure/window/reinforced/spawner/directional/east, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "eRE" = ( /obj/structure/displaycase/labcage, @@ -16691,21 +17826,19 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) -"eRR" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/security_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"eRT" = ( -/obj/effect/turf_decal/stripes/line{ +"eRO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Engine"; 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/disposalpipe/segment{ +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"eRT" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 }, +/obj/machinery/iv_drip, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "eRX" = ( @@ -16727,13 +17860,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/construction/storage_wing) -"eSh" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/closet/radiation, -/turf/open/floor/iron, -/area/station/engineering/lobby) +"eSk" = ( +/obj/structure/railing/corner, +/obj/structure/railing, +/obj/structure/lattice/catwalk, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "eSm" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -16757,20 +17889,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"eSK" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1 +"eSG" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + pixel_x = 8 }, -/obj/effect/mapping_helpers/mail_sorting/supply/disposals, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"eSO" = ( -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"eSI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"eSK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "eSV" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/brown/corner, @@ -16781,18 +17927,29 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"eSW" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, +"eSY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/lattice/catwalk, /obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "eTe" = ( /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/hos) +"eTi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"eTm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/wall_healer/directional/south, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "eTr" = ( /obj/machinery/door/airlock/grunge{ name = "Under The Stairs" @@ -16800,25 +17957,18 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, /area/station/maintenance/department/medical) -"eTt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) "eTD" = ( -/obj/structure/closet/secure_closet/chief_medical, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/obj/machinery/vending/medical, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "eTG" = ( /obj/structure/table, /obj/machinery/coffeemaker/impressa{ @@ -16843,14 +17993,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/service/cafeteria) +"eTP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/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/openspace, +/area/station/engineering/lobby) "eTY" = ( /turf/open/floor/iron/freezer, /area/station/maintenance/port) -"eTZ" = ( -/obj/machinery/light_switch/directional/east, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "eUa" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -16861,22 +18017,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"eUh" = ( -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"eUl" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "eUr" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16902,6 +18042,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/service/cafeteria) +"eUQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/modular_computer/preset/cargochat/medical{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"eUT" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "eUV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -16964,12 +18120,16 @@ }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"eVu" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 +"eVr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "chemshutters"; + name = "Pharmacy Shutters" }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/turf/open/floor/plating, +/area/station/medical/pharmacy) "eVx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood/corner{ @@ -16978,12 +18138,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"eVy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "eVF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17006,22 +18160,53 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/wood/tile, /area/station/maintenance/port/aft) -"eWb" = ( -/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) -"eWq" = ( +"eVY" = ( /obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/project) -"eWt" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/box/white, -/turf/open/floor/iron/dark/textured_corner{ - dir = 1 +/obj/item/stack/sticky_tape{ + pixel_x = 12; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "!"; + pixel_x = 2; + pixel_y = 29 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "!"; + pixel_x = -5; + pixel_y = 27 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"eWb" = ( +/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) +"eWc" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"eWn" = ( +/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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage/tech) +"eWt" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 }, /area/station/science/ordnance/storage) "eWA" = ( @@ -17032,6 +18217,13 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) +"eWD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/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, +/area/station/engineering/lobby) "eWJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17042,34 +18234,56 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/science/genetics) +"eWS" = ( +/obj/effect/spawner/random/structure/chair_flipped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/detectives_office/private_investigators_office) +"eWU" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "eWW" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/yellow/warning, /turf/open/floor/engine/hull, /area/space/nearstation) +"eWZ" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/camera/autoname/directional/west, +/obj/structure/railing{ + 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/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "eXe" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/science/lobby) -"eXf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/layer1, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "eXp" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) +"eXq" = ( +/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/port/aft) "eXw" = ( /obj/structure/table/optable, /obj/effect/turf_decal/tile/purple/half{ @@ -17089,6 +18303,17 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/glass/reinforced, /area/station/service/library) +"eXz" = ( +/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/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "eXF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -17111,16 +18336,38 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) +"eXJ" = ( +/obj/machinery/computer/apc_control{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "eXS" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"eYe" = ( -/obj/structure/displaycase/captain{ - pixel_y = 5 +"eXT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/carpet, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Quartermaster's Office"; + name = "Quartermaster's Fax Machine" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) +"eYe" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "eYm" = ( /obj/effect/turf_decal/stripes/line{ @@ -17146,21 +18393,16 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"eYH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) +"eYN" = ( +/obj/structure/chair/office{ + dir = 3 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) "eYP" = ( /obj/structure/showcase/machinery/tv/broken, /turf/open/floor/plating, /area/station/maintenance/port) -"eYS" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "eZd" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/machinery/vending/coffee{ @@ -17169,11 +18411,12 @@ fair_market_price = 0; name = "\improper Jim Norton's Quebecois Coffee" }, -/obj/structure/disposalpipe/broken{ - dir = 8 - }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"eZk" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "eZt" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -17199,16 +18442,18 @@ dir = 1 }, /obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/structure/sign/departments/chemistry/pharmacy/directional/east, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "eZF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "eZL" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -17223,10 +18468,70 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"eZV" = ( -/obj/structure/cable, +"eZT" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/structure/closet/crate/science, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = -2; + pixel_y = -7 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = 2; + pixel_y = -11 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"eZU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clothing/shoes/magboots{ + desc = "Magnetic boots, for the solar enthusiasts. Idential to a regular magboot in everything but soul."; + name = "Solars' Magboots"; + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/crowbar, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/gloves/color/yellow{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/machinery/camera/autoname/directional/west, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tank/jetpack{ + pixel_y = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, /turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/area/station/engineering/engine_smes) "fai" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -17247,15 +18552,14 @@ }, /turf/open/floor/plating, /area/station/engineering/supermatter/room) -"faw" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ +"fbe" = ( +/obj/structure/bed, +/obj/item/bedsheet/ce, +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Air to Distro" - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) "fbk" = ( /turf/open/floor/plating, /area/station/engineering/transit_tube) @@ -17277,6 +18581,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"fbq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central) "fbu" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input, /turf/open/floor/engine/o2, @@ -17304,40 +18612,21 @@ dir = 8 }, /area/station/command/corporate_showroom) -"fbK" = ( -/obj/structure/sign/poster/contraband/donk_co, -/turf/closed/wall, -/area/station/maintenance/port) "fch" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 4 }, -/turf/open/floor/iron/white/textured, -/area/station/medical/surgery) +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "fcn" = ( /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/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"fct" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - 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/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "fcw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -17359,21 +18648,13 @@ "fcK" = ( /turf/closed/wall/r_wall, /area/station/security/detectives_office/private_investigators_office) -"fcT" = ( -/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/green/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "fdb" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/medical/office) "fdd" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/eva) @@ -17388,23 +18669,27 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"fdz" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/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/science/lab) "fdE" = ( /obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, /turf/open/floor/engine, /area/station/science/xenobiology) -"fdI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper{ - dir = 4 - }, -/obj/structure/fluff/paper/stack{ - dir = 5 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/camera_film, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "fdJ" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/railing{ @@ -17421,6 +18706,12 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"fdN" = ( +/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/textured, +/area/station/commons/dorms) "fdT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17430,11 +18721,24 @@ }, /turf/open/floor/glass, /area/station/science/zoo) +"fdV" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"fef" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/urinal/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "fei" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/door/airlock/research/glass{ - name = "Slime Euthanization Chamber" +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/plasticflaps/kitchen, /turf/open/floor/engine, /area/station/science/xenobiology) "feA" = ( @@ -17446,12 +18750,7 @@ /area/station/maintenance/port/aft) "feE" = ( /obj/structure/lattice/catwalk, -/obj/structure/railing{ - 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/sign/departments/medbay/alt/directional/south, /turf/open/openspace, /area/station/medical/medbay/central) "feJ" = ( @@ -17459,23 +18758,21 @@ /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/ai_monitored/turret_protected/ai) -"feR" = ( -/obj/effect/spawner/random/trash/grime, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ffj" = ( -/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 = 1 +/area/station/ai/satellite/chamber) +"feM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"ffg" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/structure/chair/office{ + dir = 3 }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "ffp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -17483,9 +18780,19 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/customs) -"ffr" = ( -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) +"ffs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "ffC" = ( /obj/machinery/atmospherics/components/trinary/mixer/flipped{ dir = 8 @@ -17493,11 +18800,13 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance/storage) -"ffI" = ( -/obj/item/statuebust, -/obj/machinery/light/cold/no_nightlight/directional/west, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +"ffE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "ffN" = ( /obj/structure/stairs/north, /turf/open/floor/wood, @@ -17512,10 +18821,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/science/lab) -"ffR" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) "ffT" = ( /obj/structure/railing/corner/end/flip, /obj/effect/turf_decal/stripes/corner, @@ -17537,19 +18842,9 @@ "fgd" = ( /obj/structure/table/glass, /obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/west{ - id = "commissaryshutter"; - name = "Office Shutter Control"; - pixel_x = 0 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"fgg" = ( -/obj/structure/lattice, -/obj/effect/spawner/random/maintenance, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "fgq" = ( /obj/machinery/vending/cigarette, /turf/open/floor/iron, @@ -17559,10 +18854,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"fgx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "fgz" = ( /obj/machinery/door/airlock{ name = "Law Office" @@ -17582,11 +18873,15 @@ "fgH" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"fgK" = ( +/obj/effect/landmark/firealarm_sanity, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) "fgT" = ( /obj/structure/railing{ dir = 1 @@ -17598,17 +18893,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"fha" = ( -/obj/structure/chair/sofa/middle/brown{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"fhd" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/engine, -/area/station/engineering/break_room) "fhf" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -17635,6 +18919,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) +"fht" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "fhw" = ( /obj/structure/table/reinforced/rglass, /obj/item/reagent_containers/cup/glass/mug/nanotrasen{ @@ -17642,15 +18930,7 @@ pixel_y = 4 }, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fhA" = ( -/obj/machinery/door/airlock/maintenance, -/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/lesser) +/area/station/ai/satellite/interior) "fhF" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 @@ -17662,7 +18942,7 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fhJ" = ( /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/entry) @@ -17687,31 +18967,23 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron/dark, /area/station/science/cytology) -"fii" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "fik" = ( -/obj/structure/rack, -/obj/item/cardboard_cutout{ - pixel_x = -5 - }, -/obj/item/cardboard_cutout, -/obj/item/cardboard_cutout{ - pixel_x = 8 +/obj/structure/cable, +/obj/structure/bodycontainer/morgue{ + dir = 2 }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "fin" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/medical/virology) +"fir" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/space/openspace, +/area/space/nearstation) "fiC" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -17729,6 +19001,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"fiZ" = ( +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + name = "decommissioned sleeper" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/light_construct/directional/east{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "fjc" = ( /obj/effect/turf_decal/trimline/dark_blue/corner{ dir = 8 @@ -17747,15 +19030,49 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fji" = ( /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"fjl" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/closet/crate/medical, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp/granted{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/effect/spawner/random/maintenance, +/obj/item/pen/red{ + pixel_y = 10 + }, +/obj/structure/curtain/cloth/fancy/mechanical{ + name = "Psychologist's Office Curtains"; + id = "psychpriv" + }, +/turf/open/floor/wood/large, +/area/station/medical/psychology) "fjn" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"fjo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "fjp" = ( /obj/item/survivalcapsule, /obj/item/pickaxe/mini, @@ -17769,7 +19086,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "fjv" = ( /obj/effect/turf_decal/trimline/red/warning{ @@ -17777,12 +19094,19 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"fjy" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ +"fjz" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/turf/closed/wall, +/area/station/maintenance/starboard/central) +"fjO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "fjP" = ( /obj/structure/lattice/catwalk, /obj/item/clothing/accessory/clown_enjoyer_pin{ @@ -17804,12 +19128,11 @@ /obj/machinery/door/airlock/medical{ name = "Abandoned Room" }, -/obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) "fjY" = ( @@ -17820,11 +19143,16 @@ }, /turf/open/floor/iron/textured, /area/station/security/brig) -"fkh" = ( -/obj/structure/ladder, +"fkd" = ( +/obj/structure/sign/warning/directional/west, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"fki" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central) "fko" = ( /obj/structure/table, /obj/item/storage/medkit/brute{ @@ -17834,9 +19162,9 @@ /turf/open/floor/iron/kitchen, /area/station/maintenance/port/aft) "fkp" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/station/hallway/primary/central) "fkr" = ( /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, @@ -17885,25 +19213,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/primary/central) -"fkP" = ( -/obj/item/kirbyplants/synthetic/plant26{ - pixel_x = 10; - pixel_y = 18 - }, -/obj/item/kirbyplants/synthetic/plant27{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/morgue) -"fkR" = ( -/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, -/area/station/engineering/lobby) "fkX" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, @@ -17938,7 +19247,7 @@ dir = 1 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "flH" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 8 @@ -17951,6 +19260,16 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) +"flK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "flS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -17959,6 +19278,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"flU" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/structure/sign/poster/contraband/the_big_gas_giant_truth/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "flY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17993,26 +19318,35 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"fmq" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"fms" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "fmw" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ dir = 4 }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"fmx" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/tcomms_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"fmN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/openspace, -/area/station/commons/dorms) "fmO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/engineering/storage_shared) +"fmS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "fmV" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -18024,15 +19358,14 @@ /obj/structure/cable, /turf/closed/wall, /area/station/security/interrogation) -"fnp" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "space-outpost" +"fno" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "fnv" = ( /obj/machinery/porta_turret/ai{ dir = 4 @@ -18041,17 +19374,23 @@ dir = 10 }, /turf/open/floor/engine/hull/reinforced/air, -/area/station/ai_monitored/turret_protected/ai) -"fnD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "CE's Maintenance 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/any/engineering/construction, -/turf/open/floor/plating, +/area/station/ai/satellite/chamber) +"fnF" = ( +/obj/machinery/duct, +/turf/open/floor/iron/large, /area/station/engineering/lobby) +"fnH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "fnT" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/random/directional/east, @@ -18066,18 +19405,6 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) -"fnW" = ( -/obj/item/stack/sheet/iron{ - amount = 34 - }, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fnY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -18096,6 +19423,12 @@ }, /turf/open/floor/wood/large, /area/station/service/kitchen) +"foi" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) "foj" = ( /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, @@ -18110,8 +19443,28 @@ /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/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) +"fop" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) +"for" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/graffiti, +/turf/open/floor/plating, +/area/station/maintenance/port) "fou" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -18125,19 +19478,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/science/research) -"foH" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/disposal/incinerator) -"foJ" = ( -/obj/machinery/meter/monitored/distro_loop, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible/layer2{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) "foN" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, @@ -18148,13 +19488,6 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) -"foZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/openspace, -/area/station/engineering/break_room) "fpe" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -18167,6 +19500,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"fpf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "fpj" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/plating, @@ -18206,13 +19543,12 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"fpz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/chair{ - dir = 1 +"fpw" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/edge{ + dir = 4 }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/area/station/hallway/primary/central) "fpB" = ( /obj/structure/table, /obj/item/storage/photo_album/prison, @@ -18241,12 +19577,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/space_hut) -"fpM" = ( -/obj/structure/table, -/obj/machinery/firealarm/directional/west, -/obj/effect/spawner/random/clothing/gloves, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "fpN" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 1 @@ -18265,34 +19595,17 @@ }, /turf/open/floor/wood, /area/station/service/library/printer) -"fqj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fqn" = ( /obj/structure/stairs/east, /turf/open/floor/iron/stairs/medium{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fqr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/cola/shamblers, /turf/open/floor/plating, /area/station/construction/storage_wing) -"fqz" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "fqC" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -18347,34 +19660,60 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) -"fro" = ( -/obj/machinery/computer/records/security{ - dir = 4 +"frc" = ( +/obj/structure/chair/sofa/middle/brown, +/obj/item/clothing/under/costume/seifuku/red{ + pixel_y = -7 + }, +/obj/item/clothing/head/costume/crown{ + pixel_x = 10; + pixel_y = 8 }, +/obj/structure/sign/poster/official/pda_ad/directional/north, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) +"fro" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/bookcase/random/reference, +/obj/item/book/manual/wiki/surgery{ + pixel_x = -14; + pixel_y = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "fry" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/railing, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 2 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "frB" = ( /obj/structure/railing/corner{ dir = 1 }, -/obj/structure/bodycontainer/morgue, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) "frE" = ( @@ -18386,12 +19725,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"frJ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "frK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18411,6 +19744,12 @@ /obj/structure/sign/poster/random/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"frN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "frP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18425,6 +19764,18 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"frT" = ( +/obj/machinery/atmospherics/pipe/multiz/purple/visible{ + dir = 8; + name = "mix to recycle multi-deck adapter" + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "frY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/airalarm/directional/north, @@ -18432,24 +19783,13 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) -"fsf" = ( -/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/fitness/recreation) +/area/station/command/vault) "fsj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, /obj/machinery/light/directional/south, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"fso" = ( -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "fsw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18462,12 +19802,18 @@ }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/effect/landmark/navigate_destination/research, /turf/open/floor/iron/dark, /area/station/science/lobby) +"fsy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "fsM" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -18486,7 +19832,7 @@ name = "Warden's Place" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fsO" = ( /obj/structure/rack, /obj/item/storage/crayons{ @@ -18507,6 +19853,18 @@ /obj/structure/closet/secure_closet/security/science, /turf/open/openspace, /area/station/security/checkpoint/science) +"fsW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/air_sensor/incinerator_tank, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 6 + }, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) +"fsX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "ftk" = ( /obj/structure/table, /obj/item/stock_parts/micro_laser, @@ -18531,28 +19889,16 @@ /area/station/construction/storage_wing) "ftA" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) "ftG" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/engine/n2, /area/station/engineering/atmos/upper) -"ftK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner{ - dir = 8 - }, -/obj/structure/fluff/paper/stack{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "ftR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -18573,17 +19919,10 @@ /obj/machinery/door/airlock/maintenance{ name = "Storage Room" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) -"fus" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fut" = ( /obj/machinery/door/airlock/research{ name = "Testing Labs" @@ -18609,18 +19948,34 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/glass, /area/station/hallway/secondary/entry) -"fuU" = ( -/obj/machinery/firealarm/directional/east, -/obj/structure/reagent_dispensers/foamtank, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) +"fuV" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - co2 Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos/upper) "fuW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, /turf/open/floor/carpet, /area/station/service/chapel) +"fva" = ( +/obj/structure/table, +/obj/item/clothing/suit/utility/fire/firefighter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"fvb" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "fve" = ( /obj/structure/chair, /obj/effect/turf_decal/tile/dark_blue{ @@ -18651,7 +20006,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fvk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -18659,38 +20014,6 @@ /obj/structure/window/spawner/directional/north, /turf/open/floor/wood, /area/station/service/library) -"fvu" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) -"fvG" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/machinery/door/airlock/maintenance_hatch, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/aft) -"fvM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/can{ - pixel_x = -8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"fwd" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fwn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18714,25 +20037,26 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) "fwq" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/commons/dorms) +"fwv" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + 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/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/office) "fwx" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"fwz" = ( -/obj/item/kirbyplants/fern{ - pixel_x = -3; - pixel_y = 18 - }, -/obj/structure/sign/flag/nanotrasen/directional/north, -/obj/structure/fluff/paper/stack, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/chamber) "fwB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -18758,6 +20082,10 @@ /turf/open/floor/wood, /area/station/command/teleporter) "fwP" = ( +/obj/machinery/door/window/brigdoor/right/directional/north{ + req_access = list("command"); + name = "Conference Room" + }, /turf/open/floor/iron/stairs/medium{ dir = 1 }, @@ -18769,12 +20097,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fxc" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) +/area/station/ai/satellite/interior) "fxi" = ( /obj/machinery/door/airlock/public/glass{ name = "Vault Storage" @@ -18784,11 +20107,17 @@ /obj/structure/cable, /obj/effect/landmark/navigate_destination/vault, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"fxp" = ( -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/command/vault) +"fxL" = ( +/obj/structure/table, +/obj/item/toy/gun{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/aft) "fxS" = ( /obj/structure/railing{ dir = 8 @@ -18797,8 +20126,9 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "fxY" = ( /obj/machinery/vending/cigarette, /obj/structure/disposalpipe/segment{ @@ -18834,6 +20164,18 @@ /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"fyo" = ( +/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/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "fyp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/smartfridge/drying, @@ -18843,12 +20185,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"fyw" = ( -/obj/machinery/newscaster/directional/north, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "fyx" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/red/opposingcorners, @@ -18863,56 +20199,13 @@ /obj/item/poster/random_contraband, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"fyz" = ( -/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/yjunction, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9-Bridge"; - location = "8-Kitchen" - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"fyD" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fyE" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) -"fyH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/railing/corner, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/engineering/lobby) "fyY" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/table/wood/fancy/orange, -/obj/item/gun/energy/recharge/kinetic_accelerator{ - name = "the QM's Accelerator"; - pixel_y = 6 +/obj/machinery/conveyor{ + id = "cargounload" }, -/obj/item/cigbutt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/structure/sign/departments/cargo/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "fzd" = ( /obj/structure/ladder, /turf/open/floor/plating, @@ -18923,42 +20216,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fzl" = ( -/obj/structure/table, -/obj/item/clothing/suit/hazardvest{ - pixel_x = -13; - pixel_y = 3 - }, -/obj/item/clothing/suit/hazardvest{ - pixel_y = 4 - }, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 10; - pixel_y = 3 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/ai/satellite/interior) "fzv" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -19001,26 +20259,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"fzP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"fzS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/engineering/lobby) "fzT" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -19045,30 +20283,14 @@ dir = 8 }, /area/station/hallway/primary/central) -"fAb" = ( -/obj/machinery/computer/atmos_control/nocontrol/incinerator{ - dir = 8 - }, -/obj/machinery/airlock_controller/incinerator_atmos{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "fAl" = ( /turf/closed/wall/r_wall, /area/station/science/lab) -"fAB" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) +"fAD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) "fAI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19079,10 +20301,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"fAV" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "fAW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, @@ -19097,25 +20315,15 @@ /obj/item/stack/spacecash/c10, /turf/open/floor/carpet/black, /area/station/commons/lounge) -"fBh" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "fBm" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"fBn" = ( -/obj/item/clothing/head/utility/hardhat/red{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"fBs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "fBB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19123,10 +20331,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/service/library/printer) +"fBI" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "fBQ" = ( /obj/structure/sign/directions/upload, /turf/closed/wall, -/area/station/medical/medbay/central) +/area/station/hallway/primary/aft) "fBR" = ( /obj/structure/railing/corner/end{ dir = 4 @@ -19136,18 +20349,18 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fBU" = ( +/area/station/ai/satellite/interior) +"fBT" = ( +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"fBU" = ( /obj/machinery/photocopier/prebuilt, /obj/structure/sign/clock/directional/east, /turf/open/floor/wood/large, /area/station/medical/psychology) -"fBX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "fBY" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/structure/table, @@ -19161,11 +20374,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/station/engineering/supermatter/room) -"fCe" = ( -/obj/structure/ladder, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "fCk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19176,12 +20384,30 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"fCx" = ( +/obj/machinery/power/emitter{ + dir = 4 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "fCL" = ( /obj/structure/lattice/catwalk, /obj/structure/rack, /obj/effect/spawner/random/maintenance/five, /turf/open/openspace, /area/station/hallway/secondary/entry) +"fCM" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"fCQ" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "fCV" = ( /turf/closed/wall/r_wall, /area/station/science/robotics/lab) @@ -19203,19 +20429,20 @@ dir = 4 }, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "fDd" = ( /obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/large, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) -"fDg" = ( -/turf/open/floor/iron, -/area/station/medical/pharmacy) "fDk" = ( -/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, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/structure/closet/l3closet, +/obj/machinery/firealarm/directional/south, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "fDs" = ( @@ -19244,6 +20471,10 @@ /obj/structure/cable, /turf/open/openspace, /area/station/hallway/primary/central) +"fDH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/commons/dorms) "fDQ" = ( /obj/structure/railing{ dir = 8 @@ -19257,6 +20488,16 @@ }, /turf/open/floor/iron, /area/station/science/research) +"fDV" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/west, +/obj/effect/spawner/random/clothing/gloves, +/obj/item/reagent_containers/cup/soda_cans/cola{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "fEc" = ( /obj/machinery/door/airlock/public/glass{ name = "Community Center" @@ -19264,6 +20505,14 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/station/service/library) +"fEf" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "fEs" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -19271,36 +20520,40 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) "fEA" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/airalarm/directional/north, -/obj/structure/tank_holder/extinguisher, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/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, +/obj/structure/closet/secure_closet/security/cargo, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"fEO" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +"fEQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/chem_master, +/obj/machinery/button/door/directional/west{ + id = "chemshutters"; + name = "Chemistry Shutters"; + req_access = list("pharmacy") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "fES" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/port) -"fEU" = ( -/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/science/research) "fEW" = ( /obj/structure/sign/poster/random/directional/east, /turf/open/floor/plating, @@ -19313,25 +20566,32 @@ /turf/open/floor/wood, /area/station/service/library) "fFl" = ( +/obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/medical{ - name = "Medical Cold Room" + name = "Abandoned Room" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/medical) "fFm" = ( -/obj/structure/table/optable, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 + dir = 10 + }, +/obj/item/storage/box/rxglasses{ + pixel_x = -4; + pixel_y = 8 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 8 }, -/obj/item/surgical_drapes, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/machinery/newscaster/directional/west, /turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +/area/station/medical/medbay/central) "fFq" = ( /obj/structure/sign/poster/random/directional/north, /turf/open/openspace, @@ -19339,30 +20599,26 @@ "fFA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fFE" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table/reinforced, -/obj/item/flashlight/flare/candle{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/flashlight/flare/candle{ - pixel_x = -3; - pixel_y = 9 +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 }, -/obj/item/reagent_containers/syringe{ - pixel_x = 10; - pixel_y = 10 +/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/machinery/cell_charger{ - pixel_x = -1; - pixel_y = 3 +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"fFF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/openspace, -/area/station/medical/storage) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "fFG" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law{ @@ -19372,6 +20628,20 @@ /obj/machinery/light/directional/north, /turf/open/openspace, /area/station/security/checkpoint/science) +"fFN" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"fGg" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "fGj" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -19397,52 +20667,73 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"fGn" = ( +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "fGo" = ( /obj/structure/lattice, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/space/openspace, /area/space/nearstation) -"fGp" = ( -/obj/structure/railing{ - dir = 8 +"fGI" = ( +/obj/structure/closet/crate/engineering{ + name = "Basic Materials" }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 +/obj/item/stock_parts/power_store/cell/high, +/obj/item/stock_parts/power_store/cell/high, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 +/obj/item/stack/rods{ + amount = 50 }, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"fGD" = ( -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/upper) -"fGL" = ( -/obj/structure/disposaloutlet{ - dir = 4 +/obj/item/stack/sheet/glass{ + amount = 50 }, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/structure/disposalpipe/trunk, -/obj/structure/railing{ - dir = 10 +/obj/item/stack/sheet/iron{ + amount = 50 }, -/obj/machinery/status_display/supply{ - pixel_y = 32 +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"fGL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot/right, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Cargo Storage4" }, -/turf/open/floor/iron, +/mob/living/simple_animal/bot/mulebot{ + name = "Old Yeller" + }, +/turf/open/floor/iron/recharge_floor, /area/station/cargo/sorting) -"fGM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"fGT" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"fGQ" = ( +/obj/structure/broken_flooring/corner/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fGU" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"fHb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "fHc" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -19454,11 +20745,6 @@ /turf/open/floor/iron/dark, /area/station/science/ordnance) "fHf" = ( -/obj/structure/bed/medical/emergency, -/obj/item/emergency_bed{ - pixel_x = -5; - pixel_y = 15 - }, /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, @@ -19466,42 +20752,30 @@ /obj/machinery/firealarm/directional/west{ pixel_y = -28 }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"fHg" = ( -/obj/structure/sign/poster/contraband/missing_gloves/directional/east, -/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) -"fHi" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"fHk" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/turf/open/floor/eighties, -/area/station/engineering/lobby) -"fHp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; +/obj/effect/landmark/start/hangover, +/obj/structure/chair{ dir = 4; - name = "decommissioned sleeper" + pixel_y = -2 }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"fHp" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/west, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/medical/break_room) "fHG" = ( /obj/structure/lattice, /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, /area/station/hallway/secondary/entry) +"fHO" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "fHR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19517,17 +20791,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/carpet, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) -"fIg" = ( +"fIf" = ( /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) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/medical/break_room) "fIh" = ( /obj/effect/mapping_helpers/ianbirthday, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "fIl" = ( /obj/structure/lattice/catwalk, @@ -19580,12 +20861,10 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/service/hydroponics) -"fJc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ - dir = 8 - }, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) +"fIS" = ( +/obj/structure/sign/departments/medbay/alt/directional/west, +/turf/open/floor/iron/stairs/medium, +/area/station/medical/medbay/central) "fJx" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -19626,12 +20905,15 @@ "fJL" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/engineering) -"fJN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"fJY" = ( +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) "fKi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19645,31 +20927,27 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/hallway/secondary/construction) -"fKD" = ( +"fKl" = ( /obj/structure/cable, -/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/power/terminal{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) -"fKJ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) +"fKA" = ( +/obj/structure/sign/departments/chemistry/directional/south, +/turf/open/floor/engine/hull/air, +/area/station/medical/medbay/central) "fKO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/newscaster/directional/west, /turf/open/floor/plating, /area/station/medical/virology) -"fKS" = ( -/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/airless, -/area/station/maintenance/starboard/lesser) "fLb" = ( /obj/effect/turf_decal/trimline/yellow/filled/warning{ dir = 1 @@ -19681,24 +20959,20 @@ /turf/open/openspace, /area/station/science/xenobiology) "fLr" = ( -/turf/open/floor/iron/large, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "fLs" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/radio/off{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/machinery/recharger{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/yellow, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "fLv" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 @@ -19712,35 +20986,6 @@ /obj/machinery/telecomms/broadcaster/preset_right, /turf/open/floor/iron/dark/textured_large, /area/station/tcommsat/server) -"fLC" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) -"fLD" = ( -/obj/machinery/light/small/directional/east, -/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/glass/reinforced, -/area/station/solars/starboard/fore) "fLX" = ( /obj/structure/table/reinforced, /obj/item/storage/crayons{ @@ -19748,25 +20993,45 @@ pixel_y = 11 }, /obj/effect/spawner/random/bureaucracy/crayon, +/obj/item/poster/random_contraband, /turf/open/floor/plating, /area/station/maintenance/port) -"fMe" = ( -/obj/structure/barricade/sandbags, +"fMd" = ( /obj/structure/lattice/catwalk, +/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/structure/disposalpipe/junction/flip{ + dir = 2 + }, /turf/open/openspace, -/area/station/maintenance/starboard/aft) +/area/station/medical/abandoned) "fMl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"fMr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/right/brown{ + dir = 4 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "fMu" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, /turf/open/floor/iron, /area/station/engineering/lobby) +"fMx" = ( +/turf/closed/wall, +/area/station/medical/office) "fMC" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -19774,17 +21039,15 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"fNa" = ( -/obj/effect/turf_decal/siding/blue{ +"fMH" = ( +/turf/closed/wall, +/area/station/maintenance/department/crew_quarters/dorms) +"fMS" = ( +/obj/effect/turf_decal/stripes/white/line{ dir = 4 }, -/obj/machinery/fax{ - fax_name = "Medical"; - name = "Medical Fax Machine" - }, -/obj/structure/table/glass, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "fNe" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 1 @@ -19804,36 +21067,39 @@ /obj/structure/cable, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"fNv" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, -/obj/machinery/light/directional/west, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"fNn" = ( +/obj/structure/chair/sofa/corner/brown, +/obj/effect/spawner/random/maintenance, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) +"fNr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "fNw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner{ dir = 8 }, -/obj/structure/closet/crate/freezer/surplus_limbs, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"fNx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "fNB" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/maintenance/central) -"fNG" = ( -/obj/structure/safe/floor, -/obj/item/food/fortunecookie, -/obj/item/lead_pipe, -/obj/item/reagent_containers/hypospray/medipen/methamphetamine, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/machinery/door/firedoor, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) "fNL" = ( /obj/structure/railing{ dir = 1 @@ -19841,14 +21107,25 @@ /obj/structure/showcase/machinery/cloning_pod, /turf/open/floor/wood, /area/station/command/corporate_showroom) +"fNP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/departments/maint/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "fNS" = ( /obj/structure/lattice/catwalk, /obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, /obj/item/flashlight/lamp, /obj/machinery/light/directional/north, /turf/open/openspace, /area/station/security/checkpoint/customs) +"fNW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "fNX" = ( /obj/machinery/cell_charger, /obj/structure/table, @@ -19862,15 +21139,12 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fNZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) +"fNY" = ( +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "fOb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -19879,6 +21153,15 @@ }, /turf/open/floor/plating, /area/station/command/heads_quarters/hop) +"fOc" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing, +/obj/machinery/duct, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "fOe" = ( /obj/structure/railing{ dir = 1 @@ -19894,9 +21177,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"fOM" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/engine, +"fOs" = ( +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"fOF" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"fOY" = ( +/obj/machinery/shower/directional/east, +/obj/structure/fluff/shower_drain, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, /area/station/engineering/main) "fPb" = ( /obj/effect/turf_decal/siding/thinplating/dark{ @@ -19906,20 +21208,71 @@ /turf/open/floor/wood, /area/station/service/library) "fPf" = ( -/obj/effect/landmark/event_spawn, +/obj/structure/chair/sofa/middle/brown{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/bitrunner, /turf/open/openspace, /area/station/cargo/storage) -"fPi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/catwalk_floor, +"fPn" = ( +/obj/structure/table, +/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/folder/yellow{ + pixel_x = 4 + }, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"fPo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Auxiliary Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"fPs" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/space/basic, +/area/station/solars/starboard/fore) +"fPt" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/mob/living/basic/bot/medbot, +/obj/machinery/holopad, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"fPv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/station/engineering/atmos/upper) -"fPl" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "fPy" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -19949,6 +21302,10 @@ }, /turf/open/floor/plating, /area/station/security/brig) +"fPN" = ( +/obj/effect/turf_decal/stripes/line, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room/upper) "fPR" = ( /obj/structure/closet/secure_closet/hos, /obj/item/clothing/glasses/hud/security/sunglasses/gars, @@ -19956,36 +21313,14 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) -"fPT" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "fPX" = ( +/obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 10 }, -/obj/structure/rack, -/obj/item/gps/mining{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/gps/mining{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/gps/mining, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/item/pickaxe{ - pixel_x = 5 - }, +/obj/structure/sign/poster/random/directional/south, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "fQb" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 8 @@ -19994,7 +21329,14 @@ /area/station/security/office) "fQp" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) +"fQG" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "fQI" = ( /obj/structure/table, /obj/machinery/cell_charger{ @@ -20006,49 +21348,28 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/science/explab) "fQL" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "fQQ" = ( /obj/machinery/vending/games, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"fQR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"fRd" = ( -/obj/machinery/disposal/bin/tagger, -/obj/machinery/button/door/directional/north{ - id = "main_surgery"; - name = "privacy shutters control" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ +"fQT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 8 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"fRd" = ( +/obj/effect/turf_decal/siding/dark_blue{ dir = 4 }, -/obj/machinery/firealarm/directional/west, +/obj/machinery/light/floor, /turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) -"fRe" = ( -/obj/structure/railing/corner/end/flip{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/medical/medbay/central) "fRg" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ dir = 4 @@ -20064,16 +21385,35 @@ /obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"fRE" = ( -/obj/machinery/computer/security/qm{ +"fRo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/siding/blue{ dir = 4 }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/machinery/light/small/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/catwalk_floor{ + initial_gas_mix = "n2=100;TEMP=80" }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/area/station/science/server) +"fRy" = ( +/obj/machinery/light/directional/south, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"fRE" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/obj/machinery/light/warm/dim/directional/west, +/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, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "fRG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20110,6 +21450,15 @@ /obj/machinery/door/firedoor, /turf/open/openspace, /area/station/hallway/primary/central) +"fRU" = ( +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"fRX" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "fSb" = ( /obj/item/trash/can{ pixel_x = -8 @@ -20122,10 +21471,10 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "fSg" = ( @@ -20138,7 +21487,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/bed/medical/emergency, /obj/item/storage/medkit/regular, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "fSm" = ( /obj/structure/cable, @@ -20153,7 +21502,7 @@ /turf/open/floor/iron/white/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fSO" = ( /obj/structure/lattice/catwalk, /obj/structure/light_construct/directional/east{ @@ -20167,9 +21516,18 @@ /obj/structure/sign/poster/contraband/shamblers_juice/directional/north, /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) +"fTa" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "fTf" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, +/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/wood{ + dir = 6 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "fTi" = ( /turf/open/floor/carpet/royalblack, @@ -20195,6 +21553,18 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/iron/smooth, /area/station/science/robotics) +"fTu" = ( +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) +"fTw" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "fTx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/glass, @@ -20212,10 +21582,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/cafeteria) -"fTF" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/main) +"fTC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "fTM" = ( /obj/structure/chair, /obj/effect/turf_decal/tile/dark_blue{ @@ -20232,39 +21603,22 @@ /obj/structure/sign/departments/aisat/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"fTZ" = ( -/obj/effect/decal/cleanable/dirt, -/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/maintenance/starboard/lesser) +/area/station/ai/satellite/foyer) +"fTV" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/central/upper) "fUb" = ( /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, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"fUd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"fUg" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fUh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"fUc" = ( +/obj/structure/table/wood, +/obj/item/food/grown/harebell, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "fUi" = ( /obj/structure/lattice/catwalk, /obj/item/stack/cable_coil/thirty, @@ -20279,12 +21633,18 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"fUu" = ( +"fUr" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/structure/cable, /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/airless, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "fUv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20294,19 +21654,16 @@ }, /turf/open/floor/wood, /area/station/hallway/secondary/service) -"fUE" = ( -/obj/machinery/vending/clothing, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fUJ" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/turf/open/floor/wood, -/area/station/commons/dorms) +"fUy" = ( +/obj/machinery/duct, +/obj/structure/rack, +/obj/machinery/light_switch/directional/south, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "fUL" = ( /obj/machinery/computer/rdservercontrol, /obj/machinery/airalarm/directional/east, -/obj/effect/mapping_helpers/airalarm/tlv_cold_room, /turf/open/floor/iron/dark, /area/station/science/server) "fUM" = ( @@ -20328,17 +21685,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) -"fVa" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fVd" = ( -/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/catwalk_floor, -/area/station/engineering/main) "fVh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20348,16 +21694,6 @@ }, /turf/open/floor/engine/hull/air, /area/station/science/research) -"fVj" = ( -/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, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/commons/dorms) "fVk" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20367,10 +21703,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"fVn" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) +"fVp" = ( +/obj/structure/girder/reinforced, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "fVq" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 @@ -20382,7 +21719,7 @@ /turf/open/floor/iron/white/smooth_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fVs" = ( /obj/structure/chair{ dir = 1 @@ -20393,23 +21730,13 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "fVx" = ( -/obj/structure/table/wood, -/obj/item/hand_labeler{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/stack/package_wrap{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/stamp/denied{ - pixel_x = -15; - pixel_y = 11 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "fVC" = ( /obj/structure/chair/stool/bar/directional/west, @@ -20424,11 +21751,17 @@ "fVD" = ( /turf/closed/wall, /area/station/maintenance/solars/port/aft) -"fVM" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, +"fVE" = ( +/obj/structure/table/glass, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door/directional/west{ + id = "commissaryshutter"; + name = "Office Shutter Control"; + pixel_x = 0 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) "fVQ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/left/directional/east{ @@ -20439,14 +21772,13 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/checkpoint/customs) -"fVU" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) +"fVR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/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/supermatter/room/upper) "fVX" = ( /obj/structure/table, /obj/machinery/door/poddoor/shutters/preopen{ @@ -20456,14 +21788,11 @@ }, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"fWc" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/spawner/random/clothing/backpack, -/turf/open/floor/iron, -/area/station/commons/dorms) +"fWe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "fWt" = ( /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ dir = 4 @@ -20476,11 +21805,18 @@ dir = 4 }, /area/station/hallway/primary/fore) -"fWz" = ( -/obj/machinery/holopad, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) +"fWy" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"fWB" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "fWG" = ( /obj/structure/cable/layer3, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20489,7 +21825,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "fWI" = ( /obj/structure/girder, /obj/effect/spawner/random/structure/grille, @@ -20499,6 +21835,10 @@ /obj/effect/spawner/random/engineering/tank, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"fWL" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "fWQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -20515,19 +21855,9 @@ /turf/open/floor/wood/large, /area/station/commons/lounge) "fWW" = ( -/obj/item/cigbutt{ - pixel_x = -14; - pixel_y = -7 - }, /obj/machinery/flasher/directional/south, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fWY" = ( /turf/closed/wall, /area/station/service/bar) @@ -20551,14 +21881,13 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"fXp" = ( -/obj/machinery/light/floor, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"fXr" = ( +/turf/open/floor/glass, +/area/station/maintenance/starboard/aft/upper) "fXB" = ( /obj/machinery/status_display/evac/directional/north, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fXD" = ( /obj/effect/spawner/random/trash/crushed_can, /obj/structure/broken_flooring/side/always_floorplane/directional/east, @@ -20571,6 +21900,21 @@ /obj/effect/mapping_helpers/broken_machine, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"fXF" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner{ + dir = 4 + }, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/folder/yellow{ + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "fXJ" = ( /obj/structure/table/reinforced, /obj/item/binoculars, @@ -20598,29 +21942,39 @@ }, /turf/open/floor/iron, /area/station/science/robotics) -"fXO" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fXP" = ( /turf/closed/wall, /area/station/hallway/primary/aft) -"fXT" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, +"fXW" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) +"fYa" = ( +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) "fYd" = ( /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"fYo" = ( +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/sign/directions/evac/directional/north{ + dir = 8; + pixel_y = -5 + }, +/turf/closed/wall, +/area/station/commons/locker) "fYq" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -20629,18 +21983,23 @@ /obj/effect/turf_decal/trimline/neutral, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"fYt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) "fYu" = ( -/obj/structure/bodycontainer/morgue/beeper_off, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","medbay"); - c_tag = "Medbay - Upper Secure Morgue" - }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"fYy" = ( +/obj/machinery/requests_console/directional/south{ + department = "Engineering"; + name = "Engineering Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/pipedispenser, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) "fYF" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -20650,20 +22009,44 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"fYG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/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/central/upper) "fYH" = ( -/obj/structure/table, -/obj/structure/sign/poster/contraband/energy_swords/directional/north, -/obj/item/clothing/head/costume/tv_head{ - pixel_y = 8 +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/virology) +"fYR" = ( +/obj/structure/railing{ + dir = 1 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) +/obj/structure/lattice/catwalk, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "fYS" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 4 }, /turf/closed/wall, /area/station/service/lawoffice) +"fZb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "fZc" = ( /obj/effect/turf_decal/siding/red{ dir = 4 @@ -20677,20 +22060,29 @@ /turf/open/floor/wood, /area/station/security/courtroom) "fZg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"fZh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/stamp/granted{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/stamp/denied{ + pixel_x = 7 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "fZn" = ( /obj/effect/spawner/random/trash/food_packaging, /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"fZq" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/head/costume/foilhat, -/turf/open/floor/wood, -/area/station/commons/dorms) "fZy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -20698,13 +22090,6 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"fZB" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/machinery/modular_computer/preset/engineering{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "fZD" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 5 @@ -20728,66 +22113,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/research) -"fZP" = ( -/obj/structure/chair{ - dir = 4; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fZR" = ( -/obj/effect/spawner/random/structure/tank_holder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 +"gaa" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/engineering/main) +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "gad" = ( /obj/effect/turf_decal/weather/dirt{ dir = 6 }, /turf/open/water/jungle, /area/station/science/genetics) -"gaf" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"gaj" = ( -/obj/effect/turf_decal/trimline/red, -/obj/effect/turf_decal/trimline/red/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/mid_joiner, -/obj/effect/turf_decal/trimline/red/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/mid_joiner{ - dir = 4 - }, -/obj/item/cigbutt{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/cigbutt{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/cigbutt{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/cigbutt{ - pixel_x = -9; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "gal" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -20797,20 +22135,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"gav" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "gaE" = ( /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"gaL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "gaM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -20854,18 +22182,37 @@ /turf/open/floor/carpet, /area/station/commons/storage/tools) "gbb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ +/obj/machinery/newscaster/directional/east, +/obj/machinery/light_switch/directional/north, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","medbay"); + c_tag = "Medbay - Upper Cryo" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) +"gbo" = ( +/obj/effect/spawner/random/entertainment/arcade{ dir = 8 }, -/obj/machinery/atmospherics/pipe/multiz/general/visible, -/turf/open/openspace, -/area/station/medical/cryo) -"gbd" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"gbw" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "gby" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -20875,10 +22222,11 @@ /area/station/security/interrogation) "gbE" = ( /obj/structure/cable, -/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/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/storage) "gbH" = ( @@ -20897,6 +22245,12 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) +"gbN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "gbR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -20905,6 +22259,18 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/security/prison/mess) +"gcb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner{ + dir = 8 + }, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/wood, +/area/station/maintenance/aft) "gcc" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -20928,35 +22294,33 @@ /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) "gcf" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/assembly/signaler{ - pixel_x = -9; - pixel_y = 4 - }, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/food/chocolatebar{ - pixel_x = 6; - pixel_y = -3 +/obj/structure/chair/comfy/beige{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "gch" = ( /obj/machinery/door/airlock/virology/glass{ name = "Entrance to Malpractice Tower" }, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/firedoor, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"gci" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay-office"; + name = "Medbay Shutters"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/medical/medbay/central) "gck" = ( /obj/structure/railing{ dir = 8 @@ -20964,16 +22328,18 @@ /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/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"gcm" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/chair/sofa/corp{ +"gco" = ( +/obj/machinery/computer/security/telescreen/minisat/directional/south{ + name = "AI Ministat Camera Monitor" + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/modular_computer/preset/engineering{ dir = 1 }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "gct" = ( /obj/effect/turf_decal/box/white, /turf/open/floor/engine, @@ -20987,6 +22353,10 @@ /obj/effect/turf_decal/trimline/purple/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"gcx" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "gcE" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -21004,8 +22374,19 @@ /obj/effect/turf_decal/trimline/green/filled/line, /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"gcT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "gde" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/cable, @@ -21020,6 +22401,17 @@ /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"gdt" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light/very_dim/directional/north, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "gdu" = ( /obj/item/toy/plush/moth{ name = "Stockpile Sammy"; @@ -21036,21 +22428,39 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) +"gdx" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) "gdG" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) -"gdP" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 +"gdS" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/port) +"gdW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 6 }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"gef" = ( -/obj/structure/chair/office, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/machinery/meter{ + name = "O2 meter" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"ged" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/structure/fireaxecabinet/directional/south, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "gei" = ( /obj/structure/railing{ dir = 4 @@ -21062,15 +22472,6 @@ /obj/structure/railing/corner, /turf/open/floor/engine/hull, /area/space/nearstation) -"gex" = ( -/obj/structure/railing, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/warm/directional/west, -/turf/open/floor/grass, -/area/station/hallway/primary/starboard) "geA" = ( /obj/effect/turf_decal/siding/red/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21085,26 +22486,23 @@ /obj/machinery/door/poddoor/incinerator_ordmix, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/burnchamber) -"geE" = ( -/obj/structure/closet/crate/secure/engineering{ - name = "Advanced Materials" - }, -/obj/item/stack/sheet/plasteel, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" +"geJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 }, -/turf/open/floor/engine, -/area/station/engineering/break_room) +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "geK" = ( /turf/open/floor/iron, /area/station/cargo/storage) "geL" = ( -/obj/machinery/pdapainter/medbay, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "geM" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -21120,17 +22518,29 @@ /obj/effect/landmark/navigate_destination/bar, /turf/open/floor/wood/large, /area/station/commons/lounge) +"geU" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/firealarm/directional/south, +/turf/open/openspace, +/area/station/medical/medbay/central) "gfc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/sign/poster/contraband/microwave/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"gfd" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "gfh" = ( /obj/structure/railing{ dir = 4 }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) +"gfi" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "gfo" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -21140,17 +22550,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"gfs" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/obj/machinery/computer/turbine_computer, -/obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "gfz" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/disposalpipe/segment, @@ -21172,7 +22571,8 @@ "gfG" = ( /obj/machinery/light/directional/west, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/service/library) @@ -21203,28 +22603,20 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, -/obj/machinery/button/elevator{ - id = "catwalk_sec"; - pixel_y = 25 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /obj/machinery/camera/autoname/directional/north, +/obj/machinery/button/elevator/directional/north{ + id = "catwalk_sec" + }, /turf/open/floor/iron/dark, /area/station/security/brig) -"ggp" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/random/medical/memeorgans, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) "ggq" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "ggt" = ( @@ -21236,61 +22628,75 @@ /obj/structure/lattice/catwalk, /obj/structure/ladder, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"ggA" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "SM_Outside_shutters"; + name = "Outside Shutters"; + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"ggD" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) "ggE" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ggH" = ( -/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/opposingcorners{ dir = 1 }, +/obj/effect/landmark/start/depsec/supply, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"ggJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 +"ggK" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 }, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/medical/virology) -"ggN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/large, -/area/station/service/theater_dressing) +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "ggQ" = ( /obj/structure/sign/poster/contraband/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"ggU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"ggW" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +"ggR" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/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/white, +/area/station/medical/office) "ggX" = ( -/obj/structure/cable/multilayer/multiz, -/obj/machinery/firealarm/directional/east, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/engineering/hallway) +/area/station/engineering/engine_smes) "ghb" = ( /obj/machinery/light/directional/east, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ghe" = ( /obj/structure/table, /obj/item/pen/fountain{ @@ -21324,12 +22730,28 @@ /turf/open/floor/iron/dark/diagonal, /area/station/service/theater) "ghA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/edge{ + dir = 4 }, -/turf/open/openspace, /area/station/hallway/primary/central) +"ghI" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Telecomms - Storage" + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "ghO" = ( /obj/item/coin/antagtoken, /obj/item/coin/antagtoken{ @@ -21344,54 +22766,33 @@ /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) "ghR" = ( -/obj/structure/rack, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 + dir = 8 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 8 }, -/obj/item/tank/internals/anesthetic{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tank/internals/anesthetic, -/obj/item/tank/internals/anesthetic{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/mask/breath/medical{ - pixel_y = -6 - }, -/obj/item/clothing/mask/breath/medical{ - pixel_y = -3 - }, -/obj/item/clothing/mask/breath/medical, +/obj/machinery/status_display/ai/directional/west, /turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +/area/station/medical/medbay/central) "ghV" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/science/lobby) "ghZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, +/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, /area/station/cargo/storage) "gie" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 8 +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white/textured_large, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "gif" = ( /obj/machinery/door/airlock/security{ @@ -21404,33 +22805,31 @@ name = "Armory" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gih" = ( -/obj/machinery/chem_dispenser, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"gii" = ( -/obj/machinery/computer/telecomms/server{ - dir = 8; - network = "tcommsat" +/obj/structure/rack, +/obj/item/plunger{ + pixel_x = -5; + pixel_y = 11 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +/obj/item/plunger{ + pixel_y = 6 }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"gim" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 +/obj/machinery/button/door/directional/east{ + id = "chem_lockdown"; + name = "chemistry lockdown control"; + req_access = list("pharmacy") }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"gij" = ( +/obj/machinery/duct, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "gir" = ( /obj/effect/decal/cleanable/blood/old, /obj/structure/disposalpipe/trunk/multiz{ @@ -21438,43 +22837,63 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) -"gix" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "giz" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 }, /turf/open/floor/carpet/black, /area/station/service/theater) -"giB" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Secure Tech Storage" - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "giE" = ( -/obj/structure/railing{ +/obj/effect/turf_decal/siding/blue{ dir = 8 }, -/obj/effect/turf_decal/siding/blue{ +/obj/structure/railing{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"giG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"gjd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gji" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible, +/obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, -/area/station/command/bridge) -"giT" = ( -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) -"gjb" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/hallway) +/area/station/engineering/atmos/upper) +"gjj" = ( +/obj/machinery/holopad, +/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/dark/textured_large, +/area/station/medical/morgue) "gjn" = ( /obj/item/kirbyplants/random, /obj/machinery/airalarm/directional/south, @@ -21489,6 +22908,11 @@ /obj/machinery/air_sensor, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"gjA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) "gjB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair{ @@ -21501,20 +22925,11 @@ "gjH" = ( /turf/open/openspace, /area/station/hallway/secondary/service) -"gjM" = ( -/obj/structure/fluff/paper/stack, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"gjU" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/security/courtroom) +"gjR" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "gjW" = ( /obj/effect/decal/cleanable/food/tomato_smudge, /obj/effect/decal/cleanable/dirt/dust, @@ -21524,29 +22939,17 @@ /obj/structure/railing{ dir = 8 }, -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/toy/figure/cargotech, -/obj/item/toy/figure/cargotech, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gki" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ +/obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "gkn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21562,7 +22965,22 @@ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"gkB" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Bridge Escape" + }, +/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/tile/dark_blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "gkN" = ( /obj/structure/closet/crate/trashcart/filled, /obj/effect/spawner/random/maintenance, @@ -21572,21 +22990,6 @@ /obj/effect/landmark/start/botanist, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"gkP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 to Port" - }, -/obj/effect/turf_decal/tile/dark/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"gkW" = ( -/obj/machinery/shower/directional/west, -/obj/structure/fluff/shower_drain, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 1 - }, -/area/station/engineering/main) "gla" = ( /obj/structure/railing/corner{ dir = 4 @@ -21610,10 +23013,6 @@ }, /turf/open/floor/glass, /area/station/service/kitchen) -"gll" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/science/research) "glm" = ( /obj/structure/ladder, /obj/structure/lattice/catwalk, @@ -21625,7 +23024,20 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) +"glw" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "glz" = ( /turf/open/floor/iron/chapel{ dir = 1 @@ -21635,26 +23047,20 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"glF" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "glH" = ( -/obj/effect/landmark/start/paramedic, -/turf/open/floor/wood, -/area/station/medical/medbay/central) -"glJ" = ( -/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/yellow/filled/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/medical/cryo) "glL" = ( /turf/closed/wall/mineral/plastitanium, /area/space/nearstation) -"glN" = ( -/obj/machinery/camera/preset/ordnance{ - c_tag = "Cannon's exit" - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "glU" = ( /obj/machinery/door/airlock/mining{ name = "Cargo Bay" @@ -21663,19 +23069,10 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, /turf/open/floor/iron, /area/station/cargo/storage) -"gmc" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "gmd" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -21744,21 +23141,22 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/dark, /area/station/science/lobby) -"gmh" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"gmm" = ( -/obj/machinery/air_sensor/plasma_tank, -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos/upper) +"gmq" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron, +/area/station/engineering/lobby) "gmt" = ( /obj/item/clothing/head/wig/random, /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, /area/space/nearstation) +"gmu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gmy" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -21770,10 +23168,21 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) +"gmD" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room/upper) "gmE" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/hallway/primary/central) +"gmF" = ( +/obj/structure/lattice/catwalk, +/obj/item/clothing/shoes/wheelys/rollerskates{ + pixel_x = 3; + pixel_y = -5 + }, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "gmJ" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/iron/smooth_large, @@ -21799,35 +23208,37 @@ /turf/open/floor/iron, /area/station/science/xenobiology/hallway) "gnf" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/structure/chair/plastic{ dir = 1 }, -/turf/open/floor/iron/dark, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) -"gng" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/west, -/turf/open/space/openspace, -/area/space/nearstation) "gnk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"gnm" = ( +/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/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "gnp" = ( /obj/structure/showcase/machinery/tv, /obj/structure/table, /turf/open/floor/plating, /area/station/maintenance/port/greater) "gnt" = ( -/obj/structure/cable, -/obj/structure/railing/corner/end/flip{ - dir = 8 - }, -/obj/structure/railing/corner/end{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/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/command/meeting_room/council) "gnu" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/decal/cleanable/dirt, @@ -21836,10 +23247,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"gnw" = ( -/obj/structure/ladder, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) "gnx" = ( /obj/structure/table/reinforced, /obj/machinery/recharger{ @@ -21864,7 +23271,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gnK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/closed/wall/r_wall, @@ -21882,24 +23289,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"gnU" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"gnV" = ( -/obj/structure/cable, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark/arrow_ccw, -/obj/effect/turf_decal/trimline/dark/arrow_ccw, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "gnY" = ( /obj/structure/railing{ dir = 4 @@ -21911,17 +23300,8 @@ }, /area/station/maintenance/port/aft) "gob" = ( -/obj/item/wheelchair{ - pixel_y = -3 - }, -/obj/item/wheelchair, -/obj/item/wheelchair{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/rack, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/landmark/start/paramedic, /turf/open/floor/iron/dark, /area/station/medical/cryo) "gog" = ( @@ -21948,18 +23328,7 @@ name = "Private Channel" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"gom" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) +/area/station/ai/satellite/chamber) "got" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -21976,19 +23345,15 @@ dir = 8 }, /area/station/cargo/storage) -"goI" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) -"goM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ - dir = 1 +"goK" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "goN" = ( /obj/machinery/light/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -22006,10 +23371,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"goU" = ( -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "goW" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/decal/cleanable/dirt, @@ -22018,17 +23379,21 @@ }, /turf/open/floor/wood, /area/station/hallway/primary/central) -"gph" = ( +"gpb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank/high, /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/engineering/ce_office, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1 +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) +"gpd" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) +/turf/open/floor/carpet/black, +/area/station/service/library/private) "gpk" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 1 @@ -22049,27 +23414,26 @@ /turf/open/floor/iron/checker, /area/station/service/janitor) "gpx" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"gpD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "gpI" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"gpJ" = ( -/obj/structure/table, -/obj/item/phone{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "gpO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -22077,12 +23441,26 @@ id = "qm_cargobay"; dir = 8 }, +/obj/structure/cable, /turf/open/floor/plating, /area/station/security/checkpoint/supply) -"gpU" = ( -/obj/effect/spawner/structure/window, +"gpS" = ( +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/commons/dorms) +/area/station/hallway/primary/fore) +"gpT" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/turf/open/floor/iron/dark/small, +/area/station/medical/morgue) +"gpU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) "gqa" = ( /obj/structure/mop_bucket/janitorialcart{ dir = 8 @@ -22095,19 +23473,17 @@ }, /turf/open/floor/iron/checker, /area/station/service/janitor) -"gqb" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 +"gqc" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Chief Engineer's Office"; + name = "Chief Engineer's Fax Machine" }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"gqh" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/trunk/multiz, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/effect/turf_decal/siding/yellow/end{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "gqj" = ( /obj/machinery/door/airlock/wood{ name = "Curator Office" @@ -22116,16 +23492,24 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) +"gql" = ( +/obj/machinery/atmospherics/pipe/multiz/orange/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "gqn" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) "gqp" = ( @@ -22135,20 +23519,26 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"gqv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "gqz" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ dir = 5 }, /turf/open/space/openspace, /area/space/nearstation) +"gqH" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "gqI" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/station/security/warden) -"gqM" = ( -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "gqT" = ( /obj/structure/railing{ dir = 8 @@ -22157,11 +23547,19 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "grb" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"grc" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/catwalk_floor{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/station/science/server) "grd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -22172,13 +23570,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"gro" = ( -/obj/structure/cable/layer1, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"grm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "grr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -22186,11 +23582,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"grx" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/clothing/mask/joy, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "grJ" = ( /obj/item/kirbyplants/random, /obj/structure/sign/poster/official/random/directional/south, @@ -22204,6 +23595,13 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"gsd" = ( +/obj/effect/decal/cleanable/dirt, +/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/maintenance/starboard) "gse" = ( /turf/open/floor/wood, /area/station/hallway/secondary/service) @@ -22214,10 +23612,6 @@ /obj/structure/cable, /turf/open/openspace, /area/station/hallway/secondary/construction) -"gsq" = ( -/obj/effect/landmark/firealarm_sanity, -/turf/open/openspace, -/area/station/medical/chemistry) "gsL" = ( /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment, @@ -22226,18 +23620,6 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"gtd" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"gti" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/structure/sign/directions/supply/directional/east{ - dir = 2 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "gtk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -22245,6 +23627,17 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"gtm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosmaintedge" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) "gtq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22252,6 +23645,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood/tile, /area/station/science/robotics) +"gts" = ( +/obj/structure/sign/poster/official/random/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "gtt" = ( /obj/structure/railing{ dir = 8 @@ -22261,9 +23665,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"gtw" = ( -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) "gty" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -22281,12 +23682,15 @@ /obj/structure/bed, /turf/open/floor/plating, /area/station/security/execution/education) -"gtG" = ( -/obj/structure/disposalpipe/trunk/multiz/down{ +"gtC" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 }, -/turf/open/floor/plating, -/area/station/medical/medbay/central) +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "gtO" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood, @@ -22306,28 +23710,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"gtW" = ( -/obj/structure/table/wood, -/obj/item/book/bible{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "gtZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/siding/wood, /obj/machinery/firealarm/directional/west, /turf/open/floor/wood, /area/station/hallway/primary/central) -"gug" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" +"guh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 }, -/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/freezer, -/area/station/commons/toilet/restrooms) +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "guk" = ( /obj/effect/landmark/start/scientist, /turf/open/floor/iron/dark, @@ -22344,7 +23740,7 @@ /obj/structure/cable, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port) "gup" = ( @@ -22356,25 +23752,12 @@ }, /turf/open/floor/iron, /area/station/science/research) -"guy" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "guD" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"guF" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) +/area/station/ai/satellite/foyer) "guO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -22388,14 +23771,12 @@ "guV" = ( /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, -/obj/machinery/conveyor_switch/oneway{ - dir = 1; - id = "mining" +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 1 }, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "gvb" = ( /obj/machinery/light/directional/west, /obj/structure/cable, @@ -22418,22 +23799,30 @@ /obj/item/radio/intercom/prison/directional/west, /turf/open/floor/iron/freezer, /area/station/security/prison/shower) -"gvk" = ( -/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/maintenance/starboard/lesser) +"gvi" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/engineering/atmos/office) "gvI" = ( /obj/effect/turf_decal/stripes/end, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"gvK" = ( +"gvM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"gvR" = ( +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/structure/holosign/barrier/engineering, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/structure/closet/secure_closet/security/med, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) "gvU" = ( /obj/machinery/plate_press, /obj/effect/turf_decal/stripes/line, @@ -22442,22 +23831,17 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"gwg" = ( -/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/storage/tech) -"gwx" = ( -/obj/machinery/door/airlock/external{ - name = "MiniSat Space Access Airlock" +"gwk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "AI-Transit-Tube-Access" +/obj/machinery/door/poddoor/preopen{ + id = "capshut" }, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/engineering/transit_tube) +/area/station/command/heads_quarters/captain/private) "gwD" = ( /obj/item/stack/ore/gold{ pixel_x = -8; @@ -22477,6 +23861,21 @@ "gwK" = ( /turf/open/floor/engine/hull/air, /area/station/security/courtroom) +"gwN" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"gxb" = ( +/obj/structure/table/reinforced, +/obj/item/binoculars, +/obj/item/binoculars, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "gxl" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -22501,7 +23900,9 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner{ + dir = 8 + }, /area/station/hallway/primary/central) "gyc" = ( /obj/structure/table/wood, @@ -22519,15 +23920,23 @@ dir = 1 }, /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) "gyh" = ( -/obj/machinery/chem_heater/withbuffer, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, +/obj/structure/reagent_dispensers/plumbed/storage, +/obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"gyi" = ( +/obj/structure/dresser, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms) "gym" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -22557,6 +23966,15 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"gyr" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "gys" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -22568,8 +23986,13 @@ /area/station/security/brig) "gyw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "gyz" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/floor/plating, @@ -22613,10 +24036,26 @@ /obj/structure/fake_stairs/directional/north, /turf/open/floor/iron, /area/station/engineering/lobby) +"gzc" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "gzh" = ( /obj/structure/closet/firecloset, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"gzi" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "gzm" = ( /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, @@ -22640,29 +24079,27 @@ /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) "gzt" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/pen/fountain/captain{ - pixel_y = -6 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 10 +/obj/effect/landmark/start/captain, +/obj/structure/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "gzH" = ( /obj/item/kirbyplants/photosynthetic, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"gzJ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/detectives_office/private_investigators_office) "gAa" = ( /obj/machinery/modular_computer/preset/id{ dir = 1 @@ -22675,6 +24112,9 @@ "gAb" = ( /obj/structure/chair/office, /obj/effect/landmark/start/station_engineer, +/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/engineering/lobby) "gAd" = ( @@ -22686,39 +24126,35 @@ "gAf" = ( /turf/closed/wall/r_wall, /area/station/hallway/secondary/entry) +"gAh" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "gAl" = ( /obj/item/restraints/legcuffs/beartrap/prearmed, /turf/open/floor/plating, /area/station/maintenance/port) -"gAt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"gAC" = ( -/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 = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +"gAz" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "gAI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"gAM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"gAS" = ( +/obj/item/ammo_casing/spent{ + pixel_x = -11; + pixel_y = -5 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -6; + pixel_y = 2 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central/upper) "gAT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/trimline/red/warning{ @@ -22739,39 +24175,84 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "gAZ" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) -"gBf" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/rods, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"gBg" = ( -/obj/structure/flora/rock/pile, -/obj/structure/flora/bush/jungle/b/style_2, -/obj/effect/turf_decal/siding/thinplating_new/dark/end{ - dir = 4 +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 +/obj/item/storage/medkit/o2{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/disposalpipe/segment, -/turf/open/misc/asteroid, -/area/station/science/robotics) -"gBp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/four, +/obj/item/storage/medkit/o2, +/obj/item/storage/medkit/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/right/directional/west{ + name = "First Aid Supplies"; + req_access = list("medical") + }, +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"gBe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"gBg" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/bush/jungle/b/style_2, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/misc/asteroid, +/area/station/science/robotics) +"gBp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/four, /turf/open/floor/plating, /area/station/construction/storage_wing) +"gBr" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"gBu" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/button/door/directional/east{ + id = "Cabin7"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "gBA" = ( /obj/machinery/camera/directional/south{ c_tag = "Science - Xenobiology Big Pen" }, /turf/open/floor/engine, /area/station/science/xenobiology) +"gBC" = ( +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "O2 Multideck Adapter"; + dir = 2 + }, +/obj/machinery/meter{ + name = "O2 meter" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "gBE" = ( /obj/structure/chair/sofa/right/brown{ dir = 8 @@ -22790,11 +24271,17 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "gBG" = ( -/obj/machinery/computer/communications{ - dir = 1 +/obj/machinery/firealarm/directional/east, +/obj/machinery/modular_computer/preset/id{ + dir = 8 }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/carpet, +/obj/machinery/button/door/directional/south{ + id = "capshut"; + name = "Captain Shutters"; + pixel_x = -6; + pixel_y = -28 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "gBR" = ( /obj/structure/lattice/catwalk, @@ -22809,39 +24296,17 @@ }, /turf/open/openspace, /area/station/command/gateway) -"gBV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"gBY" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) -"gCa" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"gCn" = ( -/obj/structure/lattice, -/obj/item/toy/figure/ninja{ - name = "Space Ninja"; - desc = "How did he get there??"; - pixel_x = -8; - pixel_y = 7 +"gBZ" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ + dir = 8 }, -/turf/open/space/basic, -/area/space/nearstation) -"gCv" = ( -/obj/structure/ladder, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"gCu" = ( +/obj/structure/broken_flooring/side/directional/east, +/obj/machinery/light_switch/directional/north, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/storage_shared) "gCx" = ( /obj/structure/table/reinforced/rglass, /obj/item/megaphone/sec{ @@ -22860,12 +24325,6 @@ /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, /turf/open/floor/plating, /area/station/security/interrogation) -"gCQ" = ( -/obj/machinery/shower/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "gCU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22875,20 +24334,47 @@ /area/station/security/prison) "gDc" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" }, +/obj/structure/cable, /turf/open/floor/plating, /area/station/command/heads_quarters/captain/private) +"gDe" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"gDk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) +"gDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gDs" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "gDE" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -22934,6 +24420,16 @@ }, /turf/open/floor/iron, /area/station/science/research) +"gDZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gEb" = ( /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/dark_blue{ @@ -22972,12 +24468,6 @@ /obj/machinery/grill, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) -"gEE" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "gEN" = ( /obj/machinery/porta_turret/ai{ dir = 4 @@ -22986,18 +24476,7 @@ dir = 5 }, /turf/open/floor/engine/hull/reinforced/air, -/area/station/ai_monitored/turret_protected/ai) -"gEZ" = ( -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/item/food/hotcrossbun{ - pixel_x = 10; - pixel_y = 12 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/ai/satellite/chamber) "gFa" = ( /obj/structure/table/reinforced, /obj/item/plant_analyzer, @@ -23019,34 +24498,28 @@ /obj/structure/closet/emcloset, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) -"gFk" = ( -/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/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "gFm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/closed/wall, /area/station/service/hydroponics/garden/abandoned) -"gFp" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" +"gFn" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "gFt" = ( -/obj/machinery/smartfridge/organ, -/obj/item/radio/intercom/directional/south, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) "gFx" = ( @@ -23056,23 +24529,27 @@ /turf/open/floor/iron/dark, /area/station/security/brig) "gFB" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/machinery/light_switch/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Security Post (Low)" - }, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) +"gFF" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/starboard/aft/upper) "gFI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/camera/autoname/directional/south{ network = list("minisat") }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gFU" = ( /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/trimline/blue/filled/line, @@ -23084,24 +24561,6 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, /area/station/security/medical) -"gFW" = ( -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gGb" = ( -/obj/machinery/computer/apc_control{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) -"gGl" = ( -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/maintenance/starboard/lesser) "gGx" = ( /obj/structure/railing/corner{ dir = 1 @@ -23112,10 +24571,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/station/science/cytology) -"gGB" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) "gGF" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/wood/corner, @@ -23132,14 +24587,16 @@ /turf/open/floor/grass, /area/station/hallway/secondary/entry) "gGJ" = ( -/obj/machinery/modular_computer/preset/id{ - dir = 8 - }, /obj/structure/disposalpipe/segment{ - dir = 9 + dir = 10 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "gGO" = ( /obj/structure/table, /obj/machinery/microwave{ @@ -23156,19 +24613,11 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/processing) -"gHa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"gHs" = ( /obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4 - }, -/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry, -/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office, -/obj/effect/mapping_helpers/mail_sorting/medbay/general, -/obj/effect/mapping_helpers/mail_sorting/medbay/virology, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/obj/structure/filingcabinet/medical, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/cmo) "gHC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -23188,12 +24637,6 @@ /obj/effect/mapping_helpers/airlock/access/all/science/xenobio, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"gHH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/icecream_vat, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) "gHJ" = ( /obj/structure/table, /obj/machinery/requests_console/directional/west{ @@ -23250,10 +24693,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"gIz" = ( +/obj/item/statuebust, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) "gIE" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/storage/art) +"gIQ" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "SM_Outside_shutters"; + name = "Outside Shutters"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"gIR" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "gJg" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ dir = 8 @@ -23270,31 +24731,44 @@ }, /turf/open/space/basic, /area/space/nearstation) -"gJi" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/north, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) -"gJp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ladder, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/station/medical/cryo) -"gJT" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/meson, -/obj/item/geiger_counter, -/obj/item/clothing/head/utility/radiation, -/obj/item/clothing/suit/utility/radiation, +"gJm" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"gJp" = ( /obj/machinery/firealarm/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant10, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) +"gJv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 8 + }, +/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/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"gJw" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"gJY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/engineering) "gKa" = ( /obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/tile/dark_blue{ @@ -23303,54 +24777,50 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"gKk" = ( -/obj/item/stack/sticky_tape{ - pixel_x = 8; - pixel_y = 14 - }, -/obj/structure/table, -/obj/item/stack/sticky_tape{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/screwdriver, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "gKo" = ( /obj/structure/flora/bush/flowers_br/style_random, /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/station/hallway/secondary/entry) -"gKs" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/machinery/airalarm/directional/north, +"gKq" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"gKw" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/hot_temp/directional/north, +/turf/open/space/basic, +/area/space/nearstation) +"gKE" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/engineering/storage) -"gKL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/command/bridge) "gKN" = ( /obj/machinery/holopad/secure{ pixel_y = -1 }, /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) -"gKO" = ( -/obj/structure/chair/pew/right{ - dir = 4 +/area/station/security/armory) +"gKT" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"gKX" = ( +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/weather/snow, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/maintenance/port) "gLc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/grime, @@ -23363,7 +24833,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gLs" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -23377,21 +24847,14 @@ /turf/open/floor/iron/dark, /area/station/science/cytology) "gLD" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/requests_console/directional/east{ - name = "Quartermaster's Requests Console"; - department = "Quartermaster's Desk" - }, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/mapping_helpers/requests_console/ore_update, -/obj/effect/mapping_helpers/requests_console/announcement, -/obj/effect/mapping_helpers/requests_console/information, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"gLE" = ( +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/medical/chemistry) "gLN" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark/textured_large, @@ -23401,27 +24864,29 @@ /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "gLT" = ( -/obj/structure/railing/corner/end{ - dir = 8 +/obj/machinery/holopad, +/obj/structure/railing{ + dir = 1 }, -/obj/effect/turf_decal/trimline/brown/filled/warning{ +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ dir = 1 }, /turf/open/floor/iron/textured, /area/station/cargo/storage) "gLU" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/structure/sign/directions/engineering/directional/north{ - dir = 2 + dir = 2; + pixel_y = 0 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/closed/wall, +/area/station/commons/toilet/auxiliary) "gLW" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, @@ -23441,6 +24906,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) +"gMB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "gMI" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -23453,24 +24925,52 @@ /obj/structure/window/reinforced/spawner/directional/south, /turf/open/space/openspace, /area/space/nearstation) -"gMP" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room" +"gMW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/atmos/project) +/turf/open/floor/wood, +/area/station/commons/dorms) "gNf" = ( /obj/structure/light_construct/directional/east, /obj/effect/mapping_helpers/broken_floor, +/obj/structure/table/wood, +/obj/effect/spawner/random/maintenance, /turf/open/floor/wood, /area/station/maintenance/starboard/central) +"gNg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"gNh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) "gNi" = ( /turf/open/floor/carpet, /area/station/security/detectives_office) +"gNp" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "gNq" = ( /obj/structure/table/reinforced, /turf/open/floor/wood, @@ -23478,30 +24978,28 @@ "gNr" = ( /turf/closed/wall, /area/station/service/library) +"gNx" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/aft) "gNy" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 +/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/item/kirbyplants/random, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, +/turf/open/floor/iron/textured, /area/station/cargo/storage) "gND" = ( -/obj/effect/turf_decal/siding/blue/corner{ +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/structure/bed/pod{ - desc = "An old medical bed, just waiting for replacement with something up to date."; - name = "medical bed" - }, -/obj/machinery/defibrillator_mount/directional/south, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/structure/table/reinforced/rglass, +/turf/open/floor/iron/white, +/area/station/medical/office) "gNK" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -23514,31 +25012,37 @@ /area/station/hallway/primary/aft) "gNL" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L10" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"gNR" = ( +/obj/effect/spawner/random/trash/mess, +/obj/item/toy/crayon/spraycan{ + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "gNS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gNU" = ( -/obj/structure/railing{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"gNU" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/aicard{ + pixel_x = 5 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/item/assembly/timer{ + pixel_x = -7 }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "gNX" = ( /obj/machinery/computer/security/hos{ dir = 4 @@ -23555,24 +25059,27 @@ }, /turf/open/floor/plating, /area/station/science/lobby) -"gOd" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/pai_card, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"gOC" = ( -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 +"gOp" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/briefcase/secure{ + pixel_y = 3 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"gOE" = ( -/obj/machinery/atmospherics/components/unary/passive_vent, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) +/area/station/command/bridge) +"gOv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "gOH" = ( /obj/structure/sink/kitchen/directional/west, /obj/machinery/light_switch/directional/east, @@ -23582,14 +25089,12 @@ /area/station/service/kitchen/coldroom) "gOK" = ( /obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) -"gOL" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2{ - dir = 8 +/obj/effect/turf_decal/siding/dark{ + dir = 9 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "gOR" = ( /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron, @@ -23613,21 +25118,26 @@ /obj/machinery/drone_dispenser, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"gPj" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Nitrogen Cell"; - name = "atmospherics camera" +"gPk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 }, -/turf/open/floor/engine/n2, +/obj/effect/turf_decal/bot_white, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark, /area/station/engineering/atmos/upper) "gPu" = ( /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{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "gPv" = ( /obj/structure/chair/plastic{ dir = 4 @@ -23641,12 +25151,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"gPA" = ( -/obj/structure/chair{ +"gPz" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/carpet/black, +/area/station/service/library/private) +"gPC" = ( +/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/wood, -/area/station/commons/dorms) +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "gPE" = ( /obj/machinery/light/directional/west, /turf/open/openspace, @@ -23665,6 +25184,35 @@ /obj/machinery/airalarm/directional/north, /turf/open/openspace, /area/station/hallway/secondary/service) +"gPP" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 11 + }, +/obj/item/stamp/granted{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/stamp/denied{ + pixel_x = 6 + }, +/obj/item/pen{ + pixel_x = -1; + pixel_y = 13 + }, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gPS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "N2 to Mix" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "gPW" = ( /turf/closed/wall, /area/station/maintenance/hallway/abandoned_recreation) @@ -23680,19 +25228,15 @@ /turf/open/floor/carpet/black, /area/station/maintenance/hallway/abandoned_recreation) "gQa" = ( -/obj/machinery/door/airlock/mining{ - name = "Quartermaster'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/supply/qm, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "gQc" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gQf" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 8 @@ -23702,21 +25246,18 @@ }, /obj/structure/sign/flag/nanotrasen/directional/south, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"gQi" = ( -/obj/machinery/vatgrower, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) +"gQj" = ( +/obj/structure/table/wood, +/obj/item/book/bible, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "gQu" = ( /obj/structure/railing{ dir = 1 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gQA" = ( /obj/effect/turf_decal/trimline/dark/arrow_cw{ dir = 8 @@ -23739,14 +25280,25 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"gQH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "gQI" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, /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 = 8 }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/storage) "gQL" = ( @@ -23770,46 +25322,20 @@ }, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"gQW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"gRn" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/structure/closet/crate/science, -/obj/structure/railing{ - dir = 8 - }, -/obj/item/reagent_containers/cup/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/cup/bottle/epinephrine{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/reagent_containers/cup/bottle/multiver{ - pixel_x = -2; - pixel_y = -7 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = 2; - pixel_y = -11 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"gRx" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/delivery/white{ - color = "#ff6600" +"gQY" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) +"gRv" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/break_room) +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "gRB" = ( /obj/machinery/door/airlock/research{ name = "Research and Development Lab" @@ -23834,7 +25360,7 @@ /area/station/service/chapel) "gRG" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gRH" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -23846,43 +25372,63 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"gRI" = ( -/obj/machinery/modular_computer/preset/id{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) -"gRQ" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"gRT" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/effect/decal/cleanable/glitter, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "gRZ" = ( /obj/effect/turf_decal/bot, /obj/item/robot_suit, /turf/open/floor/iron/dark/textured_large, /area/station/science/robotics/lab) -"gSn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ +"gSd" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/storage/briefcase/secure{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/clothing/head/soft/blue{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/toy/figure/cmo{ + pixel_x = -5 + }, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) +"gSh" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, -/turf/open/floor/iron, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) +"gSn" = ( +/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, /area/station/cargo/storage) "gSq" = ( /obj/machinery/light/directional/west, /turf/open/floor/wood/large, /area/station/hallway/primary/central) +"gSF" = ( +/obj/effect/decal/cleanable/dirt, +/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, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gSG" = ( /obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -23892,8 +25438,15 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) +"gSH" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating/airless, +/area/station/maintenance/aft) "gSK" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 @@ -23914,37 +25467,11 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "gSX" = ( -/obj/machinery/plumbing/sender, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull/air, -/area/station/medical/chemistry) -"gSY" = ( -/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, -/area/station/engineering/lobby) -"gTe" = ( -/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/engineering/lobby) -"gTm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/light/directional/north, -/obj/structure/rack, -/obj/item/lightreplacer{ - pixel_y = 7 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/cmo) "gTn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -23960,16 +25487,19 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/dark/textured_large, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) -"gTH" = ( -/obj/structure/table, -/obj/item/reagent_containers/cup/glass/mug{ - pixel_x = -3; - pixel_y = 4 +"gTu" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gTL" = ( /obj/machinery/door/airlock/public/glass{ name = "Circle Center" @@ -23979,37 +25509,53 @@ dir = 1 }, /area/station/hallway/primary/aft) +"gTP" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "SM_Outside_shutters"; + name = "Outside Shutters"; + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "gTW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer, -/obj/item/food/raw_patty/corgi{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/food/raw_patty/chicken{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/item/food/raw_patty/bear{ - pixel_x = 4; - pixel_y = -6 - }, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"gTX" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + dir = 4; + name = "decommissioned sleeper" + }, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"gUc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/item/lightreplacer{ + pixel_y = 7 + }, +/obj/structure/sign/poster/contraband/missing_gloves/directional/north, +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "gUh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/red/dim/directional/south, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"gUr" = ( +/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/engineering/lobby) "gUv" = ( /obj/machinery/holopad, /turf/open/floor/carpet, @@ -24022,6 +25568,25 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/wood, /area/station/service/library) +"gUE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/rack, +/obj/structure/cable, +/obj/item/radio/intercom/directional/west, +/obj/item/multitool{ + pixel_x = 8 + }, +/obj/item/flatpack{ + board = /obj/item/circuitboard/machine/flatpacker; + pixel_x = -5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) +"gUI" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/upper) "gUQ" = ( /obj/machinery/door/airlock/public/glass{ name = "Nanotrasen Museum" @@ -24031,10 +25596,30 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/station/command/corporate_showroom) -"gVi" = ( -/obj/structure/window/spawner/directional/west, +"gUV" = ( +/obj/machinery/door/airlock{ + name = "Commentator Stand Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/aft/upper) +"gVf" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"gVj" = ( +/obj/item/clothing/head/cone{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "gVn" = ( /obj/machinery/light/directional/south, /turf/open/floor/engine, @@ -24044,12 +25629,13 @@ dir = 4 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "gVv" = ( -/obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "gVB" = ( @@ -24061,6 +25647,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"gVQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/dorms/laundry) "gVZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -24076,32 +25666,12 @@ network = list("minisat") }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"gWm" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/foyer) "gWo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) -"gWp" = ( -/obj/structure/table, -/obj/item/toy/cards/deck/wizoff{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) "gWu" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -24112,27 +25682,25 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"gWA" = ( -/obj/item/storage/box/shipping{ - pixel_x = -11; - pixel_y = 6 +"gWI" = ( +/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 = 8 }, -/obj/item/storage/toolbox/electrical{ - pixel_y = -2 +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, -/obj/item/radio/intercom/directional/north, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "gWM" = ( /obj/machinery/camera/autoname/directional/south, +/obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/primary/central) "gWO" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "gWR" = ( @@ -24171,7 +25739,7 @@ dir = 6 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gXj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/easel, @@ -24187,11 +25755,11 @@ "gXG" = ( /turf/closed/wall, /area/station/science/robotics) -"gXQ" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/station/engineering/atmos/upper) +"gXH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/station/maintenance/aft) "gXR" = ( /obj/machinery/atmospherics/components/binary/tank_compressor{ dir = 8 @@ -24199,12 +25767,18 @@ /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance) "gXT" = ( -/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 }, -/turf/open/floor/iron/dark, /area/station/medical/cryo) "gYu" = ( /obj/item/lazarus_injector, @@ -24214,7 +25788,7 @@ /obj/item/grenade/chem_grenade/holy, /obj/structure/safe, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gYz" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp{ @@ -24227,7 +25801,7 @@ }, /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gYG" = ( /obj/machinery/atmospherics/pipe/multiz/dark/visible{ dir = 8 @@ -24244,22 +25818,28 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "gYP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron/textured, -/area/station/cargo/storage) -"gYS" = ( -/obj/structure/table/reinforced, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"gYY" = ( -/obj/effect/spawner/random/structure/girder, -/obj/effect/spawner/random/structure/grille, +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/closet/crate, +/obj/item/toy/figure/cargotech, +/obj/item/toy/figure/cargotech, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/cargo/storage) +"gYU" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/dinner, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "gYZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -24279,12 +25859,18 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"gZj" = ( -/obj/structure/chair/sofa/corp/corner{ +"gZi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 4 }, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"gZj" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/spawner/surgery_tray/full, +/turf/open/floor/iron/dark/textured, +/area/station/medical/surgery) "gZn" = ( /obj/machinery/door/airlock/silver{ id_tag = "restroom_cap"; @@ -24294,34 +25880,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) -"gZq" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_y = 1; - pixel_x = 5 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/stamp/head/cmo{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/flashlight/pen{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) -"gZu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) "gZy" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/airalarm/directional/south, @@ -24341,36 +25899,11 @@ }, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"gZD" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "gZO" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/engine/n2o, /area/station/engineering/atmos/upper) "gZT" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/medicine{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/firealarm/directional/west, -/obj/item/clothing/neck/stethoscope{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = 7 - }, -/obj/item/storage/pill_bottle/mannitol{ - pixel_x = -5; - pixel_y = 3 - }, /turf/open/floor/iron/dark, /area/station/medical/cryo) "gZW" = ( @@ -24464,32 +25997,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"hbO" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/tank/jetpack/oxygen{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"hbS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"hcf" = ( -/obj/machinery/atmospherics/components/binary/crystallizer{ - dir = 4 +"hch" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "hci" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24500,17 +26017,15 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/central) "hcj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/warm/dim/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "hcx" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "hcC" = ( /obj/machinery/door/airlock/public/glass{ name = "Community Center" @@ -24528,27 +26043,42 @@ "hcH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /obj/structure/railing/corner/end/flip{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"hcL" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "hcZ" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"hda" = ( +/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/opposingcorners{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Telecomms Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "hdi" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -24594,6 +26124,10 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) +"hdK" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/maintenance/starboard) "hdN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -24602,6 +26136,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"hdV" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/upper) "hdX" = ( /obj/machinery/light/dim/directional/north, /obj/structure/closet/secure_closet/personal, @@ -24634,18 +26171,12 @@ dir = 1 }, /area/station/service/chapel) -"heo" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"heq" = ( -/obj/structure/chair/plastic{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, +"hew" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard) "heC" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -24657,27 +26188,23 @@ "hfr" = ( /obj/structure/railing/corner, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"hfx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hfz" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/wood, -/area/station/commons/dorms) +/area/station/ai/satellite/chamber) "hfF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/medical/minor_healing, /turf/open/floor/iron, /area/station/maintenance/department/medical) +"hfL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/meter/monitored/distro_loop, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "hfM" = ( -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "hfX" = ( @@ -24686,13 +26213,26 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/wood, +/turf/open/floor/plating, /area/station/maintenance/starboard/central) "hfZ" = ( /obj/effect/spawner/random/maintenance, /obj/structure/light_construct/directional/east, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"hgb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/mecha_wreckage/ripley, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"hgi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "hgm" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -24702,7 +26242,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hgs" = ( /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/machinery/door/airlock/maintenance{ @@ -24732,18 +26272,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"hgC" = ( -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/structure/hoop{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "hgG" = ( /obj/structure/table/wood, /obj/item/book/bible{ @@ -24758,10 +26286,26 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"hgJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "hgL" = ( /obj/machinery/vending/snack/orange, /turf/open/floor/wood, /area/station/service/library) +"hgN" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/arrow_ccw{ + 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/primary/aft) "hgW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24782,10 +26326,10 @@ pixel_x = 1 }, /obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) "hhp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/circuit/telecomms, @@ -24796,17 +26340,13 @@ /turf/open/floor/wood, /area/station/command/heads_quarters/rd) "hhw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 - }, -/obj/machinery/button/door/directional/west{ - pixel_y = -8; - id = "qm_warehouse"; - name = "Warehouse Shutters" +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/turf/open/floor/iron/dark/textured, -/area/station/cargo/warehouse) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "hhz" = ( /obj/structure/railing/corner{ dir = 1 @@ -24814,17 +26354,41 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/siding/dark, /turf/open/floor/catwalk_floor/iron_white, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"hhG" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "hhH" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/secure/freezer/pizza, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /obj/machinery/light/cold/dim/directional/east, /obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + dir = 8; + name = "decommissioned sleeper" + }, +/obj/item/surgicaldrill, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"hhJ" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "hhL" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -24843,10 +26407,10 @@ /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) "hhP" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/science/explab) "hhT" = ( @@ -24863,20 +26427,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"hig" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"hik" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin3"; - name = "Cabin 6" - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "hip" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -24887,6 +26437,18 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) +"his" = ( +/obj/structure/table, +/obj/item/shard{ + pixel_x = 9 + }, +/obj/item/clothing/glasses/regular{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/structure/sign/poster/official/corporate_perks_vacation/directional/south, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "hiu" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/engine/hull/air, @@ -24903,6 +26465,19 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/station/security/medical) +"hiA" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/obj/machinery/door/firedoor, +/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/structure/cable, +/turf/open/floor/wood, +/area/station/security/courtroom) "hiK" = ( /obj/structure/railing/corner{ dir = 4 @@ -24910,34 +26485,37 @@ /obj/effect/turf_decal/siding/blue/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/dark, -/area/station/command/bridge) -"hiS" = ( -/obj/structure/table, -/obj/item/multitool{ - pixel_x = -5 +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 }, -/obj/item/multitool{ - pixel_x = 5 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/obj/item/t_scanner{ - pixel_y = 8 +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"hja" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "hjG" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/station/hallway/secondary/construction) +"hjH" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) "hjL" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/tile/dark_green{ @@ -24957,6 +26535,11 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) +"hkr" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/ghetto_containers, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "hkv" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -24987,6 +26570,16 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"hkO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "hkZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -24997,7 +26590,7 @@ /area/station/maintenance/hallway/abandoned_recreation) "hld" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hlg" = ( /obj/structure/table, /obj/item/stock_parts/matter_bin{ @@ -25009,23 +26602,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"hlh" = ( -/obj/structure/lattice/catwalk, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/decal/cleanable/cobweb, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"hlm" = ( -/mob/living/basic/axolotl{ - name = "The Lost Axolotl" - }, -/obj/structure/sink/directional/west, -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/obj/structure/mirror/broken/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "hls" = ( /obj/structure/railing{ dir = 10 @@ -25044,13 +26620,22 @@ "hlt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/start/coroner, -/obj/machinery/light/directional/east, +/obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"hlD" = ( +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "hlE" = ( /obj/machinery/airalarm/directional/north, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hlF" = ( /obj/effect/decal/cleanable/crayon{ icon_state = "revolution"; @@ -25064,22 +26649,18 @@ }, /turf/open/floor/wood, /area/station/maintenance/starboard/central) -"hlG" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/jumpskirt/grey, -/obj/item/clothing/under/color/grey, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"hlJ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 +"hmb" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_y = 4 }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/wood/tile, -/area/station/security/detectives_office/private_investigators_office) +/obj/item/trash/can{ + pixel_x = -10; + pixel_y = -14 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) "hmc" = ( /obj/structure/lattice/catwalk, /obj/item/toy/figure/assistant, @@ -25098,11 +26679,18 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"hmw" = ( +"hmp" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) +"hmw" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) "hmz" = ( @@ -25111,25 +26699,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"hmG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/soviet_propaganda/directional/north, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"hmM" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hmT" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "hmX" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -25140,42 +26709,11 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/smooth, /area/station/engineering/main) -"hmY" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 6 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "hmZ" = ( /obj/effect/spawner/random/vending/snackvend, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) -"hnb" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=22-Mech-Bay"; - location = "21-Central" - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) -"hng" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Air Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos/upper) -"hnh" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "hni" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25226,14 +26764,23 @@ /obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"hnI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "hnK" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -25242,15 +26789,13 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"hnU" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 +"hnO" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_red, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/atmos/upper) "hnV" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -25265,6 +26810,10 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, /area/station/science/lobby) +"hoe" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "hof" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -25280,10 +26829,13 @@ }, /turf/open/floor/wood/large, /area/station/service/library) +"hop" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/commons/dorms) "hoq" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "hoJ" = ( @@ -25293,21 +26845,10 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) "hoP" = ( -/obj/structure/table/reinforced, -/obj/item/surgery_tray/full/morgue{ - pixel_x = 7 - }, /obj/machinery/firealarm/directional/south, -/obj/machinery/newscaster/directional/west, +/obj/machinery/smartfridge/organ, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"hpe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/lobby) "hpk" = ( /obj/structure/lattice, /obj/machinery/camera/autoname/directional/south, @@ -25317,10 +26858,16 @@ /obj/effect/spawner/random/trash/graffiti, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"hpo" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/commons/dorms) +"hpr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"hpw" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "hpz" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/money_medium, @@ -25329,14 +26876,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"hpB" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "hpH" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -25359,30 +26898,36 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "hqf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/caution{ + pixel_y = -14 + }, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) -"hqg" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "hqh" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 10 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) -"hqi" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) +"hqj" = ( +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hql" = ( -/obj/effect/turf_decal/stripes/line, -/turf/closed/wall/r_wall, -/area/station/engineering/break_room) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "hqr" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -25417,25 +26962,15 @@ }, /turf/open/floor/iron/dark, /area/station/security/medical) -"hqZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/wood, -/obj/structure/fluff/paper/corner{ - dir = 1 - }, -/obj/item/paper/crumpled{ - pixel_x = 7 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"hqV" = ( +/obj/structure/railing/corner{ + dir = 8 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "hri" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/vending/snackvend, @@ -25444,30 +26979,60 @@ "hrk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hrm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/effect/turf_decal/trimline/blue/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ - dir = 5 +/turf/open/floor/iron/dark/smooth_half{ + dir = 4 }, -/turf/open/floor/iron/dark, /area/station/medical/cryo) +"hrC" = ( +/obj/item/ammo_casing/spent{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/ammo_casing/spent{ + pixel_x = 2; + pixel_y = -9 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "hrD" = ( /turf/open/openspace, /area/station/command/heads_quarters/hop) -"hsd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"hrE" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"hrN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 8 }, -/obj/machinery/light/directional/west, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/engineering/atmos/upper) +"hrX" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"hsg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) "hsh" = ( /obj/effect/mapping_helpers/airlock/access/any/service/library, /obj/machinery/door/airlock/wood{ @@ -25483,6 +27048,14 @@ /obj/structure/table, /turf/open/floor/plating, /area/station/solars/starboard/aft) +"hsj" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "hsx" = ( /obj/effect/landmark/start/roboticist, /turf/open/floor/iron/white/textured_large, @@ -25553,32 +27126,27 @@ }, /turf/closed/wall, /area/station/hallway/primary/central) -"htb" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 4 +"hsU" = ( +/obj/structure/chair/sofa/corner/brown{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"htc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"htj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/medical/cryo) "htm" = ( +/obj/machinery/light/directional/east, /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 + dir = 4 }, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "htn" = ( /obj/effect/turf_decal/box/white{ color = "#F7F707" @@ -25589,7 +27157,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "htD" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -25597,9 +27165,7 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "htF" = ( -/obj/machinery/computer/pod/old/mass_driver_controller/trash{ - pixel_x = -24 - }, +/obj/structure/chair/stool/directional/south, /turf/open/floor/plating, /area/station/maintenance/disposal) "htH" = ( @@ -25607,17 +27173,42 @@ /obj/structure/cable, /turf/open/openspace, /area/station/hallway/primary/central) +"htN" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/bot/right, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "htV" = ( /obj/structure/transit_tube, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"hua" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin3"; + name = "Cabin 6" + }, +/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/dark/textured_large, +/area/station/commons/dorms) "hub" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "hue" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -25627,7 +27218,7 @@ /obj/structure/cable, /obj/structure/cable/layer3, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hui" = ( /obj/structure/railing{ dir = 8 @@ -25663,6 +27254,21 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) +"huv" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "huz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -25670,11 +27276,6 @@ }, /turf/open/floor/plating, /area/station/construction/storage_wing) -"huR" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "hvc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -25690,6 +27291,19 @@ /obj/item/binoculars, /turf/open/space/openspace, /area/space/nearstation) +"hvy" = ( +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/command{ + name = "Abandoned Lab" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "hvG" = ( /obj/structure/railing{ dir = 1 @@ -25701,6 +27315,21 @@ /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"hvL" = ( +/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/mining{ + name = "Mining Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "hvS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -25717,10 +27346,42 @@ }, /turf/open/floor/wood/large, /area/station/service/library) +"hwe" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small/directional/east, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/toilet/restrooms) "hwn" = ( /obj/effect/spawner/random/trash/crushed_can, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"hwu" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/obj/structure/sign/warning/directional/west, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hwL" = ( +/obj/structure/table, +/obj/item/t_scanner{ + pixel_y = 8 + }, +/obj/item/multitool{ + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/multitool{ + pixel_x = -5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "hwP" = ( /obj/structure/chair/sofa/middle/brown, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -25730,14 +27391,21 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron, /area/station/science/breakroom) +"hwQ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/station/maintenance/aft) "hwR" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 + dir = 6 }, -/obj/effect/turf_decal/arrows{ - dir = 1 +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 }, -/turf/open/floor/iron/dark, /area/station/command/gateway) "hwT" = ( /obj/structure/chair/sofa/left/brown{ @@ -25746,14 +27414,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/carpet/black, /area/station/medical/psychology) -"hwU" = ( -/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) "hwV" = ( /obj/structure/closet/firecloset, /obj/machinery/camera/autoname/directional/north, @@ -25765,12 +27425,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"hxa" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/space/openspace, -/area/space/nearstation) "hxc" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -25782,13 +27436,19 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "hxd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/floor/iron/dark, +/obj/item/paper/fluff/junkmail_redpill, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) +"hxf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "hxg" = ( /obj/machinery/door/airlock/external{ name = "Transport Airlock" @@ -25808,13 +27468,16 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, /obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) +"hxA" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron, +/area/station/commons/dorms) "hxC" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -25823,34 +27486,38 @@ }, /turf/open/floor/carpet/stellar, /area/station/maintenance/hallway/abandoned_recreation) -"hxJ" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera/autoname/directional/east, +"hxM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, /turf/open/openspace, -/area/station/commons/toilet/restrooms) +/area/station/maintenance/starboard/upper) "hxT" = ( /obj/machinery/door/airlock/grunge{ name = "Under The Stairs" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"hxU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/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/maintenance/starboard) "hxV" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/range) "hxW" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/cargo/storage) +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine/hull, +/area/space/nearstation) "hyc" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron/chapel, @@ -25865,11 +27532,6 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/science/zoo) -"hye" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "hyf" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -25895,6 +27557,12 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) +"hyw" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "hyx" = ( /obj/effect/decal/cleanable/dirt, /obj/item/restraints/legcuffs/beartrap/prearmed, @@ -25915,13 +27583,17 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/station/service/library) +"hzk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "hzo" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/flora/grass/jungle/b/style_3, /obj/structure/flora/bush/flowers_br/style_2, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hzq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -25930,6 +27602,7 @@ }, /obj/item/clothing/shoes/wheelys/rollerskates, /obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "hzv" = ( @@ -25945,8 +27618,12 @@ "hzG" = ( /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/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) "hzQ" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -25962,36 +27639,17 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "hzY" = ( -/obj/effect/turf_decal/siding/red{ - dir = 10 - }, -/obj/machinery/door/window/brigdoor/left/directional/south{ - name = "Trial Cell"; - req_one_access = list("brig", "command") +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/command/heads_quarters/hop) +"hAb" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"hAd" = ( -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/structure/hoop{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"hAh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/item/wrench, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/engineering/storage/tech) "hAi" = ( /obj/machinery/door/airlock/public/glass{ name = "Circle Center" @@ -26043,55 +27701,94 @@ /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) "hAt" = ( -/obj/machinery/computer/security/telescreen/minisat/directional/west{ - name = "Minisat Monitor" +/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/dark_blue{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/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/command/meeting_room/council) "hAx" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/sustenance, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison) +"hAy" = ( +/obj/machinery/duct, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/east, +/obj/structure/cable, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"hAz" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "hAC" = ( -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/machinery/computer/accounting{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "hAH" = ( /obj/machinery/door/airlock/public/glass{ name = "Science Store" }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/iron/dark, /area/station/science/lobby) "hAM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) -"hBh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/structure/sign/poster/random/directional/north, -/obj/item/paper_bin/carbon{ - pixel_x = 16; - pixel_y = 6 +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/pen{ - pixel_x = -8 +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/chem_storage) +"hBh" = ( +/obj/structure/sign/clock/directional/east, +/obj/effect/turf_decal/stripes{ + dir = 5 }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) -"hBw" = ( -/obj/structure/railing{ +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"hBj" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"hBs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/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/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/turf/open/floor/plating, +/area/station/maintenance/starboard) "hBy" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -26125,11 +27822,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/explab) -"hBS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "hBY" = ( /obj/machinery/elevator_control_panel/directional/east{ linked_elevator_id = "catwalk_cafe"; @@ -26138,12 +27830,6 @@ pixel_y = 26; preset_destination_names = list("2"="Lower Deck","3"="Upper Deck") }, -/obj/structure/sign/directions/upload/directional/north{ - desc = "It stands for Up Le Dable"; - dir = 2; - name = "Button Indicator"; - pixel_y = 40 - }, /obj/structure/railing{ dir = 4 }, @@ -26154,16 +27840,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"hCe" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"hCg" = ( -/turf/open/floor/engine, -/area/station/engineering/break_room) "hCj" = ( /obj/effect/spawner/random/entertainment/arcade, /obj/structure/sign/poster/party_game/directional/north, @@ -26186,31 +27862,23 @@ /turf/open/floor/iron, /area/station/hallway/primary/aft) "hCy" = ( -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/gavelblock, -/obj/item/gavelhammer{ - pixel_x = -5; - pixel_y = -1 - }, /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/structure/chair/plastic, +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/turf/open/floor/iron/dark, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) -"hCB" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"hCL" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "hCP" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/disposal) "hCQ" = ( @@ -26218,7 +27886,7 @@ dir = 1 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hCY" = ( /obj/machinery/camera/directional/east{ c_tag = "Interrogation room"; @@ -26233,6 +27901,10 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/machinery/light/small/directional/east, +/obj/structure/closet{ + name = "janitorial supplies" + }, /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, @@ -26245,7 +27917,7 @@ /area/station/science/lab) "hDg" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "hDk" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -26266,6 +27938,13 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/engine, /area/station/service/hydroponics) +"hDF" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "hDG" = ( /obj/structure/railing/corner/end{ dir = 4 @@ -26277,13 +27956,7 @@ dir = 1 }, /turf/open/floor/catwalk_floor/iron_white, -/area/station/ai_monitored/turret_protected/aisat_interior) -"hDS" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 5 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) +/area/station/ai/satellite/interior) "hDT" = ( /obj/effect/turf_decal/trimline/red/filled/line, /turf/open/floor/iron, @@ -26314,7 +27987,7 @@ }, /obj/effect/mapping_helpers/mail_sorting/service/hop_office, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "hEf" = ( /obj/structure/cable, @@ -26327,37 +28000,18 @@ /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) +"hEu" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/fore/upper) "hEE" = ( -/obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/event_spawn, -/obj/structure/railing/corner/end/flip{ - dir = 8 - }, -/obj/structure/railing/corner/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"hEN" = ( -/obj/structure/chair/sofa/right/brown, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/poster/contraband/pwr_game/directional/north, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) -"hET" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ +/obj/effect/turf_decal/stripes{ dir = 2 }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) +/turf/open/floor/iron/textured, +/area/station/command/eva) "hEU" = ( /obj/effect/turf_decal/trimline/dark_blue/end{ dir = 4 @@ -26374,14 +28028,14 @@ }, /obj/effect/turf_decal/trimline/dark_blue/mid_joiner, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hEW" = ( /obj/structure/cable/layer3, /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hFc" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -26404,17 +28058,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"hFq" = ( -/obj/structure/rack, -/obj/item/clothing/suit/utility/radiation, -/obj/item/clothing/head/utility/radiation, -/obj/item/geiger_counter, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +"hFp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Shared Storage" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/station/engineering/lobby) "hFy" = ( /obj/structure/ladder, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -26422,10 +28075,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/department/science/central) -"hFA" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "hFG" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -26454,10 +28103,16 @@ /obj/machinery/door/airlock/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/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"hFW" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/station/commons/dorms) "hFZ" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency{ @@ -26474,6 +28129,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"hGh" = ( +/obj/effect/decal/cleanable/glitter, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "hGl" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -26493,29 +28152,17 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"hGu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/full, -/obj/effect/turf_decal/tile/dark/full, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/medical) -"hGD" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +"hGy" = ( +/obj/item/trash/can{ + pixel_x = -8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/wood/large, +/area/station/commons/dorms) "hGH" = ( +/obj/machinery/flasher/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hGJ" = ( /obj/structure/lattice/catwalk, /obj/item/trash/can{ @@ -26550,10 +28197,23 @@ /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) "hHd" = ( -/obj/structure/window/reinforced/spawner/directional/west, /obj/effect/landmark/navigate_destination/teleporter, /turf/open/floor/iron/stairs/medium, /area/station/hallway/primary/central) +"hHi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"hHj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) "hHr" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 10 @@ -26561,28 +28221,18 @@ /turf/open/floor/iron, /area/station/cargo/storage) "hHs" = ( -/obj/structure/table/reinforced, -/obj/item/poster/random_contraband, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port) +/obj/machinery/airalarm/directional/west, +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "hHA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, /area/station/cargo/storage) -"hHE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "hHF" = ( /obj/machinery/disposal/bin/tagger, /obj/machinery/airalarm/directional/south, @@ -26609,16 +28259,6 @@ }, /turf/open/floor/wood, /area/station/command/corporate_showroom) -"hHP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "hIc" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, @@ -26630,37 +28270,26 @@ name = "Head of Personnel's Fax Machine" }, /obj/structure/table/wood, -/turf/open/floor/wood, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) -"hIn" = ( -/obj/structure/cable, -/obj/item/stack/sticky_tape{ - pixel_x = 12; - pixel_y = 14 - }, -/obj/structure/sign/poster/contraband/fake_bombable/directional/south, -/obj/effect/decal/cleanable/crayon{ - icon_state = "!"; - pixel_x = 2; - pixel_y = 29 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "!"; - pixel_x = -5; - pixel_y = 27 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "hIt" = ( /obj/machinery/door/airlock/grunge, /obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hIA" = ( /turf/closed/wall, /area/station/cargo/miningoffice) +"hIE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "hII" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/closet/emcloset{ @@ -26669,7 +28298,7 @@ /obj/machinery/airalarm/directional/east, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hIQ" = ( /obj/effect/turf_decal/siding/red{ dir = 4 @@ -26683,27 +28312,49 @@ /turf/open/floor/wood, /area/station/security/courtroom) "hIS" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/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/storage) -"hIZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/closed/wall, +/area/station/cargo/sorting) "hJa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) +"hJc" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "hJm" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) +"hJp" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/folder/yellow{ + pixel_x = 2; + pixel_y = -12 + }, +/obj/structure/table, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"hJx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) "hJz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26715,11 +28366,13 @@ /turf/open/floor/iron/kitchen, /area/station/hallway/secondary/service) "hJA" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L8" +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/edge{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "hJB" = ( /obj/structure/lattice/catwalk, @@ -26733,12 +28386,6 @@ /obj/structure/window/reinforced/plasma/spawner/directional/south, /turf/open/space/basic, /area/space/nearstation) -"hJL" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "hJS" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line, @@ -26765,10 +28412,13 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"hKh" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"hKe" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "hKm" = ( /obj/machinery/light/small/directional/north, /obj/effect/landmark/firealarm_sanity, @@ -26780,20 +28430,62 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) +"hKr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"hKs" = ( +/obj/effect/landmark/start/station_engineer, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"hKt" = ( +/obj/machinery/requests_console/directional/west{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/structure/table, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/obj/item/wrench, +/obj/item/radio/off{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/screwdriver{ + pixel_y = 2 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "hKw" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "hKy" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 4 +/obj/item/stamp/head/hop{ + pixel_x = 8; + pixel_y = 4 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/obj/item/stamp/denied{ + pixel_y = 11 + }, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) "hKE" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -26810,58 +28502,38 @@ /obj/machinery/suit_storage_unit/security, /turf/open/floor/iron/dark/smooth_large, /area/station/security/eva) -"hKP" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"hKS" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/structure/table/reinforced, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/pipe_dispenser{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/meson/engine{ - pixel_y = 4 - }, -/obj/machinery/cell_charger, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "hLd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall/r_wall, /area/station/security/prison) -"hLp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"hLu" = ( -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 +"hLe" = ( +/obj/item/bikehorn/rubberducky, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"hLi" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"hLl" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"hLr" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/pai_card, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "hLC" = ( -/obj/machinery/computer/prisoner/management, /obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) @@ -26913,24 +28585,26 @@ }, /turf/open/floor/plating, /area/station/service/hydroponics/garden/abandoned) -"hLS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/pdapainter/engineering, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "hLT" = ( /obj/docking_port/stationary/escape_pod{ dir = 8 }, /turf/open/floor/engine/hull, /area/space/nearstation) -"hMc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/clock/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"hLW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/package_wrap{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "hMd" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -26948,6 +28622,18 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"hMp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"hMq" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/south, +/turf/open/space/openspace, +/area/space/nearstation) "hMs" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, @@ -26961,6 +28647,12 @@ /obj/effect/turf_decal/trimline/dark/arrow_cw, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"hMz" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "hMC" = ( /turf/open/floor/iron, /area/station/science/robotics) @@ -26989,40 +28681,34 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"hMF" = ( -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_y = 24 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_y = 40 - }, -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"hMI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"hMJ" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/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/crew_quarters/dorms) +"hML" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, +/obj/structure/plasticflaps, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"hMU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/area/station/cargo/storage) +"hMS" = ( +/obj/effect/spawner/random/techstorage/rnd_secure_all, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/small/directional/south, +/obj/structure/rack, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/storage/tech) "hMV" = ( /obj/structure/table, /obj/item/binoculars{ @@ -27042,33 +28728,33 @@ /turf/open/floor/glass, /area/station/security/brig) "hNa" = ( -/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/item/reagent_containers/cup/bucket{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/rag{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/window/reinforced/spawner/directional/east, /obj/effect/turf_decal/siding/wood{ - dir = 8 + dir = 1 }, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) "hNb" = ( -/obj/machinery/computer/upload/borg{ - dir = 4 +/obj/item/kirbyplants/organic/plant9{ + pixel_y = 14; + pixel_x = 4 }, -/obj/machinery/flasher/directional/west, -/turf/open/floor/carpet/purple, -/area/station/ai_monitored/turret_protected/ai_upload) +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "hNf" = ( /obj/structure/cable, /turf/open/floor/plating, /area/station/security/interrogation) -"hNj" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) "hNs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27086,14 +28772,6 @@ /obj/structure/stairs/west, /turf/open/floor/plating, /area/station/security/courtroom) -"hNJ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 8 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "hNW" = ( /obj/effect/spawner/structure/window, /obj/effect/turf_decal/stripes/line{ @@ -27109,8 +28787,19 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "hOe" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -27123,19 +28812,30 @@ }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) +"hOo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "hOw" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/camera/directional/south, +/obj/machinery/computer/security/mining{ + dir = 4 }, -/obj/structure/closet/emcloset, /turf/open/floor/iron, /area/station/cargo/miningoffice) "hOC" = ( -/obj/effect/turf_decal/siding/red{ - dir = 6 +/obj/structure/railing{ + dir = 4 }, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "hOG" = ( /obj/structure/disposalpipe/segment{ @@ -27143,6 +28843,16 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"hOJ" = ( +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/arrow_ccw, +/obj/effect/turf_decal/trimline/dark/arrow_ccw, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "hOO" = ( /obj/structure/table/wood, /turf/open/floor/glass/reinforced, @@ -27155,13 +28865,14 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"hOZ" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 8 - }, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) +/area/station/ai/satellite/interior) +"hOV" = ( +/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/aft/upper) "hPa" = ( /obj/structure/railing{ dir = 1 @@ -27176,27 +28887,42 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"hPH" = ( -/obj/machinery/door/airlock/external{ - name = "Welcome." +"hPj" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/item/storage/box/lights/mixed{ + pixel_x = 8; + pixel_y = 8 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "space-outpost" +/obj/item/electronics/airlock, +/obj/item/electronics/airlock{ + pixel_x = -6; + pixel_y = -4 }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"hPL" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin5"; - name = "Cabin 3" +/obj/item/stock_parts/power_store/cell/emproof{ + pixel_x = -4; + pixel_y = 6 }, -/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/wood, -/area/station/commons/dorms) +/obj/item/stock_parts/power_store/cell/emproof{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/stock_parts/power_store/cell/emproof{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"hPq" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "hPP" = ( /obj/structure/stairs/north, /obj/structure/railing{ @@ -27204,6 +28930,14 @@ }, /turf/open/floor/iron/stairs/left, /area/station/engineering/lobby) +"hPQ" = ( +/obj/structure/lattice/catwalk, +/obj/item/kirbyplants/random, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"hPR" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "hPU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -27221,6 +28955,10 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"hPW" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "hPY" = ( /obj/effect/turf_decal/trimline/dark/arrow_cw{ dir = 10 @@ -27232,14 +28970,13 @@ dir = 4 }, /area/station/hallway/secondary/exit/departure_lounge) -"hQa" = ( -/obj/machinery/disposal/bin, +"hPZ" = ( /obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) "hQd" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -27248,6 +28985,19 @@ /obj/machinery/light/directional/south, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"hQh" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" + }, +/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/commons/storage/primary) "hQk" = ( /obj/item/reagent_containers/cup/soup_pot{ pixel_x = 6; @@ -27275,48 +29025,17 @@ }, /turf/open/floor/wood, /area/station/service/chapel) -"hQQ" = ( -/obj/structure/broken_flooring/singular/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "hQU" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, /obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"hQV" = ( -/obj/effect/turf_decal/siding/brown/corner, -/obj/structure/railing/corner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) -"hQZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hRa" = ( -/obj/structure/table, -/obj/item/storage/belt/medical{ - pixel_y = 6 - }, -/obj/item/storage/belt/medical{ - pixel_y = 3 - }, -/obj/item/storage/belt/medical, -/obj/item/storage/belt/medical{ - pixel_y = -5 +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/item/storage/belt/medical{ - pixel_y = -8 +/obj/item/pen{ + pixel_x = 8 }, -/obj/effect/turf_decal/tile/blue/full, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/turf/open/floor/wood/large, +/area/station/hallway/primary/central) "hRd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -27370,9 +29089,6 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /turf/open/floor/plating, /area/station/security/execution/education) -"hRD" = ( -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "hRH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -27393,8 +29109,14 @@ "hRT" = ( /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/security/courtroom) +"hRV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "hRW" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -27417,13 +29139,33 @@ pixel_y = 6 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/courtroom) +"hSa" = ( +/obj/item/clothing/head/soft/orange, +/obj/structure/closet/secure_closet/engineering_chief, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) "hSd" = ( /obj/machinery/camera/autoname/directional/south, /obj/machinery/vending/games, /turf/open/floor/wood, /area/station/service/library) +"hSe" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"hSg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "hSh" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -27437,25 +29179,21 @@ "hSk" = ( /turf/closed/wall, /area/station/security/checkpoint/medical) +"hSq" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner{ + dir = 4 + }, +/obj/structure/fluff/paper/stack, +/turf/open/floor/plating, +/area/station/maintenance/aft) "hSu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 4 }, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) -"hSv" = ( -/obj/machinery/door/airlock/maintenance, -/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) "hSy" = ( /obj/structure/table, /obj/item/clothing/glasses/welding{ @@ -27467,18 +29205,22 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) "hSz" = ( -/obj/machinery/computer/operating{ +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/trimline/blue/warning{ dir = 1 }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) "hSA" = ( /obj/machinery/light/directional/north, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/wood, /area/station/commons/storage/tools) +"hSJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) "hSW" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -27502,10 +29244,19 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"hTt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"hTy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 8 + }, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "hTE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/weather/snow, @@ -27541,18 +29292,28 @@ "hTN" = ( /obj/structure/cable/layer3, /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"hUb" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"hUg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/engineering/lobby) +"hUh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/structure/light_construct/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) "hUs" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/tcommsat/server) -"hUw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/catwalk_floor, -/area/station/engineering/lobby) "hUA" = ( /obj/effect/turf_decal/arrows{ dir = 8 @@ -27560,38 +29321,15 @@ /obj/effect/spawner/random/structure/closet_empty/crate, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"hUM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hUU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"hVc" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/item/radio/intercom/directional/north, -/obj/effect/mapping_helpers/burnt_floor, +"hUP" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"hVd" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"hVi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) -"hVk" = ( -/obj/structure/railing/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/area/station/commons/dorms) "hVr" = ( /obj/structure/sign/warning/cold_temp/directional/west{ desc = "A sign that notes the room within is the Cold Room. Not that it's actually cold."; @@ -27614,17 +29352,33 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/grimy, /area/station/security/interrogation) +"hVx" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + c_tag = "Medbay - Upper Chief Medical Office South"; + network = list("ss13","medbay") + }, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "hVz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"hVH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 +"hVC" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 6 }, -/obj/machinery/light/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/open/floor/iron/textured_corner, +/area/station/command/gateway) "hWb" = ( /obj/structure/chair{ dir = 1; @@ -27642,10 +29396,17 @@ /obj/structure/railing, /turf/open/floor/grass, /area/station/science/zoo) -"hWw" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/wood, -/area/station/security/courtroom) +"hWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "hWA" = ( /obj/effect/turf_decal/trimline/dark_blue/warning{ dir = 1 @@ -27660,7 +29421,38 @@ /turf/open/floor/iron/white/smooth_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"hWF" = ( +/obj/structure/lattice/catwalk, +/obj/item/clothing/under/costume/seifuku{ + pixel_y = -1 + }, +/obj/structure/table, +/obj/structure/sign/poster/official/pda_ad/directional/south, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) +"hWJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"hWN" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/nanotrasen{ + pixel_y = 32; + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "hWU" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -27674,11 +29466,9 @@ /area/station/maintenance/starboard/aft) "hXc" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L4" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "hXe" = ( @@ -27694,21 +29484,33 @@ }, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) +"hXi" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ + dir = 4; + name = "Atmos to Engine" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "hXm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/effect/landmark/start/shaft_miner, +/obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"hXp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/blobstart, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) "hXr" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/machinery/firealarm/directional/south, +/obj/machinery/conveyor{ + dir = 8; + id = "mining" }, /turf/open/floor/iron/textured, /area/station/cargo/storage) @@ -27726,22 +29528,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) -"hXA" = ( -/obj/machinery/light/directional/west, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_y = 5 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/area/station/ai/satellite/chamber) "hXD" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -27751,63 +29538,64 @@ }, /turf/open/floor/iron/white/smooth_half, /area/station/hallway/secondary/entry) -"hXE" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "hXT" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"hYa" = ( +"hXV" = ( /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/smooth_large, -/area/station/engineering/main) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"hXW" = ( +/obj/structure/table/reinforced, +/obj/item/wirecutters, +/obj/item/screwdriver, +/obj/item/stack/cable_coil, +/obj/item/crowbar, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "hYc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, /turf/open/floor/carpet, /area/station/service/abandoned_gambling_den) +"hYd" = ( +/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/thinplating/dark{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/medical/psychology) "hYf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron/dark, /area/station/security/brig) -"hYg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"hYj" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +"hYl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "hYo" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/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/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"hYu" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "hYx" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -27817,7 +29605,12 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"hYE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "hYF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -27834,7 +29627,7 @@ /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/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hYK" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -27846,10 +29639,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"hYV" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/engine/hull/air, -/area/station/engineering/break_room) +"hYW" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "hZa" = ( /obj/effect/landmark/carpspawn, /turf/open/floor/engine/hull, @@ -27867,19 +29660,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"hZi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) "hZq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/ai/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hZx" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -27909,7 +29693,9 @@ /obj/effect/turf_decal/trimline/red/filled/mid_joiner{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) "hZE" = ( /obj/effect/decal/cleanable/dirt, @@ -27925,6 +29711,9 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/hop, /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/plating, /area/station/command/heads_quarters/hop) "hZZ" = ( @@ -27934,84 +29723,64 @@ /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/plating, /area/station/maintenance/port) -"iak" = ( -/obj/structure/railing{ - dir = 1 +"iah" = ( +/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/mail_sorting/engineering/ce_office, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 }, -/turf/open/openspace, -/area/station/engineering/lobby) +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"iai" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "iar" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/machinery/holopad{ - pixel_y = 6 - }, /obj/machinery/airalarm/directional/south, +/obj/machinery/chem_dispenser, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"iaE" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +"iaC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "iaF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/iron/checker, -/area/station/maintenance/hallway/abandoned_recreation) -"iaG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/command/gateway) -"iaR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/area/station/maintenance/hallway/abandoned_recreation) +"iaY" = ( /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/maintenance/starboard/lesser) -"ibc" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/boxinggloves, -/obj/effect/landmark/start/hangover/closet, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/machinery/door/airlock/medical{ + name = "Medbay Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/white, +/area/station/medical/storage) "ibj" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/science/research) "ibo" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/obj/effect/turf_decal/siding/white/corner, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) -"ibq" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 4 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) -"ibr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "ibs" = ( /obj/structure/chair{ dir = 8 @@ -28021,25 +29790,15 @@ dir = 4 }, /area/station/service/chapel) -"ibt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"ibw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "iby" = ( -/obj/structure/railing/corner/end, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/dark/textured_large, +/obj/structure/railing/corner/end, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "ibz" = ( /obj/structure/statue/bronze/marx{ @@ -28056,6 +29815,26 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"ibC" = ( +/obj/structure/cable, +/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/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"ibE" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/wood, +/obj/item/paper/crumpled{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "ibF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28065,11 +29844,12 @@ /area/station/service/cafeteria) "ibI" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ibJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) "ibK" = ( @@ -28082,41 +29862,39 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"ibM" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "ibO" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"ich" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/mapping_helpers/airalarm/engine_access, -/obj/effect/mapping_helpers/airalarm/link{ - chamber_id = "engine" +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/effect/mapping_helpers/airalarm/tlv_no_checks, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"ibZ" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ dir = 4 }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"icj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/poster/contraband/rebels_unite/directional/west, -/obj/item/ammo_casing/spent{ - pixel_x = 8; - pixel_y = 6 +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 }, -/obj/item/ammo_casing/spent{ - pixel_x = -11; - pixel_y = -5 +/turf/open/floor/iron/dark/textured_half{ + dir = 1 }, -/obj/structure/disposalpipe/segment, +/area/station/cargo/storage) +"icg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard/upper) "icw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -28125,22 +29903,16 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "icz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table/reinforced, -/obj/item/flashlight/flare/candle{ - pixel_x = -4; - pixel_y = 15 - }, -/obj/item/flashlight/flare/candle{ - pixel_x = 3; - pixel_y = 9 +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 }, -/obj/item/storage/box/matches{ - pixel_x = -6; - pixel_y = 6 +/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/openspace, -/area/station/medical/storage) +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "icB" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -28157,11 +29929,38 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"icW" = ( +/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/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/medical/break_room) "idd" = ( -/obj/effect/turf_decal/delivery, /obj/structure/broken_flooring/corner/always_floorplane/directional/west, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/engineering/tank, +/obj/structure/railing{ + dir = 1 + }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"idf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/storage/box/lights/mixed{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/emergency, +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/aft) "idj" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -28174,20 +29973,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/lab) -"idm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "idq" = ( /turf/open/floor/iron/stairs/medium{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "idI" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -28199,29 +29989,17 @@ /turf/closed/wall/r_wall, /area/station/engineering/storage/tech) "idO" = ( -/obj/effect/turf_decal/siding/white{ - dir = 6 +/turf/open/floor/iron/edge{ + dir = 1 }, -/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"idQ" = ( -/obj/structure/table/wood, -/obj/item/book/bible, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) -"iea" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +"idV" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) -"iee" = ( -/obj/structure/table/reinforced, -/obj/item/radio/headset, -/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard) "iei" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -28230,67 +30008,49 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"iem" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/mecha_wreckage/ripley, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"ien" = ( -/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, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) -"iep" = ( -/obj/structure/table, -/obj/item/geiger_counter{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "iev" = ( /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/arrow_cw{ + dir = 8 + }, /turf/open/floor/iron, /area/station/hallway/primary/aft) "ieD" = ( -/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, /turf/open/floor/iron/stairs/medium{ dir = 4 }, /area/station/medical/abandoned) +"ifk" = ( +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "ifn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/cobweb, /obj/machinery/light/small/dim/directional/north, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) -"ifA" = ( -/obj/effect/spawner/random/trash/moisture_trap, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "ifC" = ( /obj/structure/sign/poster/contraband/blood_geometer, /turf/closed/wall, /area/station/maintenance/port) -"ifF" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/plumbing/input, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +"ifU" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/openspace, +/area/station/commons/dorms) "ifV" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -28330,19 +30090,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"igm" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 12 - }, -/obj/item/stack/cable_coil{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/extinguisher/mini, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "igo" = ( /obj/effect/turf_decal/siding/wideplating_new{ dir = 9 @@ -28368,18 +30115,27 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) -"igK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"igR" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/plumbing/input, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "ihd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sink/directional/east, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"ihj" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ihl" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -28391,6 +30147,18 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"ihn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Storage Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) "ihv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -28398,19 +30166,10 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"ihE" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/misc/burial, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"ihF" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/structure/table, -/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/commons/dorms) +"ihJ" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ihP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28450,6 +30209,16 @@ }, /turf/open/floor/iron/white/textured_corner, /area/station/science/robotics) +"iia" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "chemshutters"; + name = "Pharmacy Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/pharmacy) "iib" = ( /obj/structure/table, /obj/item/storage/box/hug{ @@ -28463,8 +30232,16 @@ /turf/open/floor/wood/large, /area/station/service/theater_dressing) "iis" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/captain/private) +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/conveyor{ + dir = 8; + id = "HoPsToy" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) "iiF" = ( /obj/structure/railing/corner{ dir = 4 @@ -28475,6 +30252,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"iiN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) +"iiO" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/command/gateway) "iiV" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/cigarette_pack, @@ -28504,13 +30300,24 @@ }, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"ijs" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "iju" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) +/obj/machinery/conveyor_switch/oneway{ + id = "cargounload"; + name = "Unloading Conveyor"; + pixel_x = 5; + pixel_y = -10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron, +/area/station/cargo/storage) +"ijv" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "ijB" = ( /obj/machinery/light/directional/east, /obj/structure/railing/corner/end{ @@ -28519,19 +30326,29 @@ /turf/open/floor/wood, /area/station/command/corporate_showroom) "ijF" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/airalarm/directional/south, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"ijJ" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/structure/railing/corner{ dir = 4 }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"ijH" = ( -/obj/machinery/vending/assist, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_half, +/area/station/science/robotics) +"ijL" = ( +/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/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) "ikc" = ( /obj/structure/railing, /turf/open/openspace, @@ -28563,13 +30380,6 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/station/service/library) -"ikK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "ikL" = ( /obj/structure/disposalpipe/trunk{ dir = 2 @@ -28584,13 +30394,10 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"ikZ" = ( -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "ilg" = ( /obj/machinery/vending/cart, /obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "ils" = ( /obj/structure/mop_bucket, @@ -28604,18 +30411,22 @@ /obj/effect/spawner/random/maintenance/no_decals, /turf/open/floor/engine/hull, /area/space/nearstation) -"ilB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/starboard/aft) +"ily" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "ilE" = ( /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/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"ilO" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "ilV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -28624,10 +30435,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) -"imd" = ( -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) "ime" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/railing, @@ -28635,11 +30442,19 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"imo" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/service/kitchen) +"imf" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/obj/structure/chair{ + dir = 4; + pixel_y = -2 + }, +/obj/item/binoculars, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) +"imi" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, +/area/station/commons/dorms) "imq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28663,6 +30478,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"imH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) +"imI" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "imJ" = ( /obj/structure/railing/corner{ dir = 4 @@ -28680,6 +30510,14 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar/backroom) +"imN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) "imQ" = ( /obj/structure/table, /obj/item/storage/medkit/toxin{ @@ -28706,22 +30544,47 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"ing" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "inh" = ( -/turf/open/openspace, -/area/station/command/bridge) -"inp" = ( -/obj/effect/turf_decal/tile/dark_green{ +/obj/structure/table/wood, +/obj/item/stack/package_wrap{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/hand_labeler{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/machinery/recharger, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) +"ini" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/effect/decal/cleanable/generic, /turf/open/floor/iron, -/area/station/maintenance/starboard/fore) +/area/station/commons/locker) +"inm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "int" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/ladder, /turf/open/floor/plating, /area/station/solars/starboard/aft) +"inv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft/upper) "inw" = ( /obj/structure/transit_tube/curved/flipped, /turf/open/space/openspace, @@ -28731,15 +30594,17 @@ /obj/machinery/door/airlock/external{ name = "Medical Escape Pod" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/iron/textured_half{ dir = 8 }, /area/station/medical/abandoned) -"inG" = ( -/obj/structure/sign/poster/official/get_your_legs/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/carpet/black, -/area/station/service/library/private) +"inD" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/service/library) "inI" = ( /obj/machinery/shower/directional/west, /obj/structure/fluff/shower_drain, @@ -28751,12 +30616,32 @@ }, /area/station/engineering/main) "inK" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" +/obj/machinery/conveyor_switch/oneway{ + id = "cargoload"; + name = "Loading Conveyor"; + pixel_x = 5; + pixel_y = -5 }, -/turf/open/floor/iron, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, /area/station/cargo/storage) +"inL" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"inQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser{ + pixel_y = 8 + }, +/obj/item/pipe_dispenser, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "inT" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel" @@ -28767,7 +30652,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/hop, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, -/turf/open/floor/wood, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "inU" = ( /obj/structure/railing{ @@ -28775,6 +30660,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) +"inZ" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4; + name = "killroom vent" + }, +/turf/open/floor/circuit/telecomms, +/area/station/science/xenobiology) "ioc" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted, /turf/open/floor/iron/dark, @@ -28786,35 +30678,32 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"ioo" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +"ion" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 8 }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Staff Entrance" +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + 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/medical/general, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"ioo" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay-office"; + name = "Medbay Shutters"; + dir = 4 + }, +/turf/open/floor/plating, /area/station/medical/medbay/central) "ioq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/machinery/holopad, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"ios" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin4"; - name = "Cabin 5" - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"iov" = ( -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/lobby) "iox" = ( /obj/machinery/vending/wardrobe/sec_wardrobe, /obj/structure/cable, @@ -28834,7 +30723,7 @@ /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/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ioN" = ( /obj/structure/sign/warning/vacuum/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -28890,6 +30779,13 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"ipi" = ( +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) "ipm" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -28897,6 +30793,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"ipo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/vending/coffee, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"ipr" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/effect/spawner/random/bedsheet{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms) "ipt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/public/glass{ @@ -28910,6 +30822,20 @@ }, /turf/open/floor/iron/edge, /area/station/hallway/primary/fore) +"ipv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/station/commons/locker) +"ipL" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering" + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) "ipQ" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/wood/large, @@ -28918,17 +30844,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/structure/table, -/obj/item/clothing/head/soft{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/stamp/denied{ - pixel_x = 7; - pixel_y = 8 - }, /obj/machinery/airalarm/directional/north, -/obj/item/stamp/granted, /turf/open/floor/iron, /area/station/cargo/storage) "ipS" = ( @@ -28942,7 +30858,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ipW" = ( /obj/machinery/computer/telecomms/server{ dir = 1; @@ -28955,36 +30871,32 @@ dir = 8 }, /area/station/tcommsat/server) -"iqf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ +"ipY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"iqe" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation) "iqj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output, /turf/open/floor/engine/n2, /area/station/engineering/atmos/upper) -"iqo" = ( -/obj/structure/table/reinforced, -/obj/item/toy/redbutton{ - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"iqs" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste to Filter"; - dir = 4 - }, -/obj/effect/turf_decal/trimline/red, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) "iqv" = ( /obj/structure/railing{ dir = 8 @@ -29005,20 +30917,23 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"iqy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "iqC" = ( /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/light/small/broken/directional/east, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/plating, /area/station/maintenance/central) +"iqF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"iqX" = ( +/obj/structure/closet/wardrobe/grey, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "ire" = ( /obj/machinery/restaurant_portal/bar, /obj/effect/turf_decal/siding/wood/end{ @@ -29030,6 +30945,20 @@ "irh" = ( /turf/closed/wall, /area/station/medical/cryo) +"irj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "irn" = ( /obj/structure/railing{ dir = 8 @@ -29041,7 +30970,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) +"iro" = ( +/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_dark, +/area/station/engineering/atmos/upper) "irp" = ( /obj/machinery/exodrone_launcher, /obj/item/exodrone, @@ -29050,12 +30985,6 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"iry" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "irL" = ( /obj/item/kirbyplants/organic/plant21{ pixel_x = -11; @@ -29065,6 +30994,7 @@ pixel_x = 4; pixel_y = 5 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "irU" = ( @@ -29087,29 +31017,18 @@ /obj/effect/decal/cleanable/fuel_pool, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"isn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/engine/hull, -/area/station/maintenance/disposal/incinerator) "isp" = ( /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, /area/station/maintenance/starboard/fore) -"isv" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 9 - }, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/fluff/paper{ - dir = 1 +"isr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/obj/structure/sign/flag/nanotrasen/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "isy" = ( /obj/machinery/newscaster/directional/west, /obj/effect/turf_decal/tile/dark_blue{ @@ -29146,21 +31065,33 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/freezer, /area/station/security/prison/shower) -"isX" = ( -/obj/machinery/air_sensor/nitrous_tank, -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos/upper) +"isY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "ite" = ( -/obj/effect/turf_decal/siding/red{ +/obj/structure/railing{ dir = 4 }, -/turf/open/floor/iron/dark, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "ith" = ( /obj/item/cigbutt, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/station/maintenance/port/aft) +"iti" = ( +/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, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "itl" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 8 @@ -29171,9 +31102,13 @@ /turf/open/floor/engine/hull, /area/space/nearstation) "itm" = ( -/obj/structure/transport/linear, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "ito" = ( /obj/structure/chair/sofa/right/brown{ dir = 4 @@ -29181,9 +31116,6 @@ /obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, /turf/open/floor/glass/reinforced, /area/station/service/library) -"itq" = ( -/turf/open/floor/engine/hull/air, -/area/station/engineering/lobby) "itr" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/structure/extinguisher_cabinet/directional/south, @@ -29200,11 +31132,25 @@ /obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/pen{ + pixel_x = -1; + pixel_y = 13 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "itA" = ( -/obj/structure/window/reinforced/spawner/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "itI" = ( /obj/effect/turf_decal/siding/purple/corner, @@ -29228,25 +31174,6 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, /area/station/hallway/primary/starboard) -"itP" = ( -/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 - }, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"itV" = ( -/obj/item/stack/sheet/mineral/wood{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) "itX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29254,6 +31181,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/engineering/main) +"iub" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"iug" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ius" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -29262,19 +31205,15 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/dark, /area/station/security/medical) -"iuu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) -"iux" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 +"iuN" = ( +/obj/structure/railing, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/grass, +/area/station/hallway/primary/starboard) "iuO" = ( /obj/effect/landmark/transport/transport_id{ specific_transport_id = "catwalk_cafe" @@ -29287,6 +31226,16 @@ }, /turf/open/floor/plating/elevatorshaft, /area/station/service/kitchen) +"iuQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "iuR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -29298,12 +31247,21 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/exit/departure_lounge) +"ivo" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "ivr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/machinery/modular_computer/preset/command{ + dir = 1 }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/circuit, +/area/station/command/bridge) "ivu" = ( /obj/structure/table/wood, /obj/structure/disposalpipe/segment, @@ -29313,49 +31271,39 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Cargo Office"; + name = "Cargo Office Fax Machine" + }, +/obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) "ivD" = ( -/obj/structure/bookcase/random/reference, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"ivI" = ( -/obj/effect/spawner/random/trash/mess, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/machinery/firealarm/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "ivJ" = ( /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/multiz/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ivL" = ( -/obj/structure/ladder, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","medbay"); - c_tag = "Medbay - Upper Chemistry South" - }, +/obj/machinery/vending/wardrobe/chem_wardrobe, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"ivM" = ( -/obj/effect/turf_decal/siding/blue{ +"ivP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "iwa" = ( /obj/effect/turf_decal/trimline/red/line, /obj/effect/turf_decal/trimline/red/line{ @@ -29370,26 +31318,48 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"iwp" = ( +"iwg" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, /obj/structure/table, -/obj/item/plant_analyzer{ - pixel_y = 8 +/obj/machinery/cell_charger{ + pixel_y = 9 }, -/obj/item/healthanalyzer, -/obj/item/radio/intercom/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Secure - Tech Storage" +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000 }, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/cable_coil, +/obj/machinery/light/small/directional/west, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"iwl" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "iwq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/engineering/storage_shared) "iwu" = ( /obj/machinery/camera/autoname/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "iwB" = ( /turf/open/floor/iron/dark, @@ -29399,19 +31369,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"iwN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/clock/directional/east, -/obj/structure/chair/plastic{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "iwS" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) +"iwY" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "ixf" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -29426,9 +31392,24 @@ /obj/structure/closet/cabinet, /turf/open/floor/wood/tile, /area/station/service/abandoned_gambling_den) +"ixj" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine/hull, +/area/station/solars/starboard/fore) "ixF" = ( /turf/closed/wall, /area/station/service/chapel) +"ixG" = ( +/obj/item/cigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "ixR" = ( /obj/structure/table, /obj/item/storage/dice{ @@ -29442,31 +31423,25 @@ /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) "ixS" = ( -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/engine/hull/air, -/area/station/command/meeting_room/council) -"iyb" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" +/obj/machinery/computer/records/medical, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ixW" = ( +/obj/machinery/pdapainter/engineering, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) +"iyh" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 5 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/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/cable/layer1, +/obj/structure/cable, /turf/open/floor/engine, -/area/station/engineering/main) -"iyk" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Auxiliary Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/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/aft) +/area/station/engineering/supermatter) "iym" = ( /obj/structure/railing/corner{ dir = 8 @@ -29477,35 +31452,38 @@ /turf/open/floor/carpet/black, /area/station/service/library/private) "iyn" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/end{ dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 2 +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "iyq" = ( /obj/machinery/flasher/directional/west, /obj/machinery/light/directional/west, /obj/item/kirbyplants/random, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) +"iys" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/item/banner/cargo/mundane, +/turf/open/floor/iron, +/area/station/cargo/sorting) "iyv" = ( /turf/open/floor/wood, /area/station/security/courtroom) -"iyx" = ( -/obj/structure/chair/sofa/middle/brown, -/obj/item/clothing/under/costume/seifuku/red{ - pixel_y = -7 - }, -/obj/item/clothing/head/costume/crown{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/structure/sign/poster/official/pda_ad/directional/north, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "iyA" = ( /obj/structure/table/wood, /obj/item/toy/crayon/spraycan/lubecan{ @@ -29537,24 +31515,44 @@ /turf/open/water/jungle, /area/station/science/genetics) "iyI" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 +/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/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 +/turf/open/floor/iron/edge{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/area/station/hallway/primary/central) "iyL" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1; + pixel_y = -2 }, -/turf/open/floor/wood, -/area/station/medical/medbay/central) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"iyS" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/east, +/turf/open/openspace, +/area/station/engineering/atmos/office) +"iyV" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/newspaper, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"iyZ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "izb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29569,42 +31567,48 @@ /area/station/hallway/primary/aft) "izg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /obj/machinery/camera/autoname/directional/east, /obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + dir = 8; + name = "decommissioned sleeper" + }, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "izh" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/blue{ +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 4 }, -/obj/structure/chair/office{ - dir = 8; - name = "HoS' Chair" +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/opposingcorners, -/obj/structure/railing/corner/end/flip{ - dir = 8 +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"izk" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/machinery/plumbing/receiver{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "izl" = ( /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/courtroom) -"izp" = ( -/obj/item/stack/rods{ - amount = 7 - }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "izF" = ( /obj/machinery/firealarm/directional/south, /obj/structure/disposalpipe/segment{ @@ -29631,11 +31635,19 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics) -"izU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/sepia, -/area/station/hallway/secondary/construction) +"izP" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) +"izV" = ( +/obj/machinery/airlock_controller/incinerator_atmos{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "izW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -29645,6 +31657,13 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"iAa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron, +/area/station/engineering/lobby) "iAe" = ( /obj/structure/railing{ dir = 8 @@ -29663,15 +31682,6 @@ /obj/effect/landmark/start/roboticist, /turf/open/floor/iron, /area/station/science/robotics) -"iAr" = ( -/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 = 5 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "iAu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29684,20 +31694,17 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/commons/storage/art) -"iAH" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, +"iAw" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"iBj" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/structure/frame/machine, +/area/station/command/bridge) +"iAx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "iBn" = ( /obj/machinery/vending/wardrobe/curator_wardrobe, /obj/machinery/light_switch/directional/east, @@ -29707,25 +31714,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) -"iBG" = ( -/obj/structure/broken_flooring/singular/directional/south, +"iBK" = ( +/obj/structure/sign/warning/no_smoking/directional/east, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"iBI" = ( -/obj/effect/decal/cleanable/dirt, +/area/station/maintenance/port/aft) +"iBM" = ( /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/maintenance/starboard/lesser) -"iBK" = ( -/obj/effect/spawner/random/engineering/tank, -/obj/structure/railing{ - dir = 1 +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/warning/no_smoking/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central) +"iBW" = ( +/obj/item/trash/shok_roks/berry, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) "iBZ" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -29748,17 +31758,13 @@ /area/station/science/lab) "iCd" = ( /obj/structure/table/reinforced, +/obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/left/directional/east{ req_access = list("brig_entrance") }, -/obj/machinery/recharger{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/screwdriver{ - pixel_y = -4 - }, -/obj/machinery/door/firedoor, +/obj/item/paper_bin, +/obj/item/folder/red, +/obj/item/pen, /turf/open/floor/plating, /area/station/security/checkpoint/medical) "iCe" = ( @@ -29780,15 +31786,11 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iCq" = ( /obj/machinery/holopad, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"iCx" = ( -/obj/effect/spawner/random/trash/botanical_waste, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "iCB" = ( /obj/structure/closet/bombcloset, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -29797,16 +31799,12 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"iCN" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"iCS" = ( -/obj/structure/disposalpipe/segment, +"iCV" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "iDe" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -29836,13 +31834,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"iDw" = ( -/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, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"iDE" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/plumbing/sender, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "iDF" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 4 @@ -29865,7 +31861,8 @@ pixel_y = -4 }, /obj/structure/sign/plaques/kiddie/perfect_man{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/machinery/light/directional/east, /turf/open/floor/carpet, @@ -29881,15 +31878,10 @@ /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) -"iDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +"iEe" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard) "iEf" = ( /obj/machinery/air_sensor/ordnance_burn_chamber, /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ @@ -29919,13 +31911,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"iEp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/sofa/left/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "iEq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29946,7 +31931,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iEH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29959,14 +31944,14 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "iEI" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 +/obj/effect/turf_decal/stripes{ + dir = 4 }, -/obj/structure/railing/corner{ +/obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/textured, +/area/station/command/eva) "iEJ" = ( /obj/effect/spawner/random/vending/snackvend, /obj/effect/decal/cleanable/dirt, @@ -29980,6 +31965,15 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/plating, /area/station/maintenance/port) +"iEL" = ( +/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/dark/textured_large, +/area/station/medical/morgue) "iEQ" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -29989,16 +31983,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) -"iET" = ( -/obj/effect/turf_decal/siding, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ +"iES" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ dir = 4 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/closed/wall/r_wall, +/area/station/command/bridge) "iEV" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -30020,11 +32010,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"iFf" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "iFn" = ( /obj/structure/railing/corner/end/flip{ dir = 8 @@ -30053,13 +32038,17 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/service/cafeteria) +"iFy" = ( +/obj/effect/turf_decal/siding/dark_blue/inner_corner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "iFz" = ( /obj/structure/cable/layer3, /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/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iFB" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -30069,12 +32058,16 @@ /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/hallway/primary/starboard) -"iFM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced/spawner/directional/west, -/obj/structure/window/reinforced/spawner/directional/north, -/turf/open/space/basic, -/area/station/maintenance/solars/port/aft) +"iFK" = ( +/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, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "iFR" = ( /obj/structure/chair{ dir = 8 @@ -30083,9 +32076,15 @@ /turf/open/floor/carpet, /area/station/security/courtroom) "iFS" = ( -/obj/machinery/camera/autoname/directional/east, -/turf/open/openspace, -/area/station/command/meeting_room/council) +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console"; + dir = 8 + }, +/obj/machinery/light/warm/dim/directional/east, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "iFU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30101,11 +32100,20 @@ /obj/item/stack/rods, /turf/open/openspace, /area/station/maintenance/port/aft) -"iGc" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/toilet, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"iGe" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/item/camera_film{ + pixel_y = 2; + pixel_x = 2 + }, +/obj/item/camera{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "iGm" = ( /obj/structure/bed, /obj/structure/toilet/greyscale{ @@ -30117,6 +32125,17 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) +"iGo" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"iGu" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "iGy" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -30132,17 +32151,6 @@ "iGB" = ( /turf/closed/wall, /area/station/commons/storage/tools) -"iGC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "iGD" = ( /obj/structure/table/reinforced, /obj/item/storage/briefcase/secure{ @@ -30162,24 +32170,36 @@ /turf/open/floor/wood, /area/station/command/heads_quarters/rd) "iGH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 }, -/turf/open/floor/iron/white/textured_edge{ - dir = 8 +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 4 }, -/area/station/medical/surgery) +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "iGI" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, /obj/structure/railing/corner{ dir = 4 }, -/obj/effect/turf_decal/siding/blue/corner{ +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ dir = 4 }, -/obj/effect/turf_decal/tile/red/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"iGO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "iGP" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable/layer3, @@ -30189,7 +32209,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "iGQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30199,12 +32219,34 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"iGT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/service/library/private) +"iHi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "iHo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"iHr" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Gravity Generator Area" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "iHu" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/pale/style_random, @@ -30244,6 +32286,14 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"iHO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "iHQ" = ( /obj/structure/marker_beacon/indigo, /obj/structure/lattice/catwalk, @@ -30290,11 +32340,6 @@ }, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"iIL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/firecloset, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "iIP" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -30319,34 +32364,48 @@ /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "iJc" = ( -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/turf_decal/siding/wood, /obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) -"iJn" = ( -/obj/structure/railing{ - dir = 4 +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/storage/belt/utility{ + pixel_x = -3 + }, +/obj/item/storage/belt/utility{ + pixel_x = -3 }, +/turf/open/floor/iron/textured, +/area/station/command/eva) +"iJn" = ( /obj/effect/turf_decal/siding/blue{ 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/command/bridge) -"iJs" = ( -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ - pixel_x = 5; - pixel_y = 9 +/obj/structure/railing{ + dir = 4 }, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "iJu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -30369,8 +32428,8 @@ /area/station/hallway/primary/port) "iJC" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron, /area/station/cargo/storage) "iJH" = ( @@ -30380,41 +32439,52 @@ /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/iron, /area/station/maintenance/starboard/central) -"iJN" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +"iJX" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"iKf" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 +/obj/effect/turf_decal/trimline/red/corner, +/obj/machinery/airalarm/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"iJY" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 2 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"iKj" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"iKa" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/structure/railing{ - dir = 8 +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay"); + c_tag = "Medbay - Lower Central Hallway" }, -/turf/open/openspace, -/area/station/engineering/lobby) +/obj/machinery/firealarm/directional/west{ + pixel_x = -20 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "iKm" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark/textured_corner, /area/station/science/ordnance/storage) +"iKw" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/table, +/obj/item/geiger_counter{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/binoculars, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "iKx" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -30436,20 +32506,41 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"iKF" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "iKH" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 4 +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white/textured_large, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/white/filled/warning, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) -"iKT" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +"iKI" = ( +/obj/effect/turf_decal/siding{ dir = 4 }, +/obj/structure/hoop{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"iKT" = ( /obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "iLe" = ( @@ -30463,14 +32554,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "iLn" = ( -/obj/machinery/camera/autoname/directional/west, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/iron/dark, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "iLy" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -30497,20 +32588,7 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"iLC" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "iLD" = ( -/obj/machinery/requests_console/directional/north{ - department = "Security"; - name = "Security Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/mapping_helpers/requests_console/assistance, /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, @@ -30553,13 +32631,6 @@ }, /turf/open/misc/asteroid, /area/station/science/robotics) -"iLH" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "iLL" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/transit_tube/horizontal, @@ -30569,39 +32640,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/space/openspace, /area/space/nearstation) -"iLP" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"iMf" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "iMo" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/east, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"iMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"iMq" = ( -/obj/item/clothing/head/soft/orange, -/obj/structure/closet/secure_closet/engineering_chief, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "iMr" = ( /obj/structure/railing/corner{ dir = 8 @@ -30617,16 +32660,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"iMu" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 6 - }, -/turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) "iMD" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -30639,17 +32672,11 @@ /obj/structure/sign/departments/botany/alt2/directional/west, /turf/open/floor/iron/stairs/medium, /area/station/hallway/primary/central) -"iML" = ( -/obj/machinery/shower/directional/west, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"iMP" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"iMO" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/obj/structure/dresser, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "iMQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30661,15 +32688,20 @@ /turf/open/floor/iron/dark/textured_large, /area/station/science/zoo) "iMT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"iMV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +"iMX" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "iNk" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -30677,6 +32709,11 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) +"iNn" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/maintenance, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "iNy" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -30687,60 +32724,35 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/lab) +"iND" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "SM_shutters"; + name = "Supermatter Radiation Shutters"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter) "iNI" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating/airless, /area/station/maintenance/space_hut) -"iNK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/trunk/multiz, -/turf/open/floor/wood, -/area/station/commons/dorms) "iNP" = ( /obj/machinery/light/directional/west, /turf/open/openspace, /area/station/service/chapel) -"iNX" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/landmark/start/depsec/engineering, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"iOc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"iOk" = ( -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"iOp" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/structure/railing{ - dir = 8 - }, -/obj/item/camera{ - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "iOB" = ( /obj/structure/sink/directional/east, /obj/structure/mirror/directional/west, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iOE" = ( /obj/machinery/ore_silo, /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iOF" = ( /obj/machinery/door/airlock/security{ name = "Customs Desk" @@ -30787,12 +32799,22 @@ }, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) -"iPt" = ( -/obj/item/binoculars, -/obj/item/toy/basketball, -/obj/structure/closet, +"iPv" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) +"iPx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "iPz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30802,14 +32824,6 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"iPL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "iPQ" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -30836,11 +32850,33 @@ }, /turf/open/openspace, /area/station/hallway/secondary/construction) -"iQe" = ( -/obj/machinery/field/generator, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/engine, -/area/station/engineering/break_room) +"iQd" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 3 + }, +/obj/item/clothing/suit/hazardvest{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/black{ + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black{ + pixel_y = -3 + }, +/obj/item/clothing/mask/gas, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "iQi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -30849,6 +32885,13 @@ /obj/effect/decal/cleanable/wrapping, /turf/open/floor/iron, /area/station/construction/storage_wing) +"iQj" = ( +/obj/machinery/door/airlock/external{ + name = "Common Mining Dock" + }, +/obj/effect/landmark/navigate_destination/dockaux, +/turf/open/floor/plating, +/area/station/hallway/secondary/construction) "iQw" = ( /obj/structure/railing{ dir = 6 @@ -30871,16 +32914,40 @@ /area/station/service/library) "iQA" = ( /obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"iQD" = ( +/obj/item/clothing/accessory/armband/cargo{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/structure/sign/poster/contraband/rebels_unite/directional/north, /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/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"iQE" = ( +/obj/structure/table/reinforced, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 4 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "iQI" = ( /obj/structure/chair{ dir = 8 @@ -30896,39 +32963,45 @@ dir = 8 }, /area/station/service/chapel) -"iQR" = ( -/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/wood, -/area/station/commons/dorms) +"iQM" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "iQX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/science/genetics) -"iRa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) "iRf" = ( -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"iRx" = ( -/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/dark_blue/opposingcorners, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/area/station/command/bridge) "iRA" = ( /turf/open/floor/iron/white/smooth_large, /area/station/hallway/secondary/entry) -"iRF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/station/commons/dorms) +"iRC" = ( +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -11 + }, +/obj/structure/sign/directions/dorms/directional/south{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/sign/directions/engineering/directional/south{ + dir = 4; + pixel_y = 2 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/central) "iRH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30937,36 +33010,28 @@ /obj/effect/mapping_helpers/airlock/access/all/service/general, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"iRV" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner, +"iRR" = ( +/obj/structure/reagent_dispensers/foamtank, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) +"iRW" = ( /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/medical_doctor, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/openspace, -/area/station/medical/storage) -"iRX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iSh" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance" +/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/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/turf/open/floor/plating, -/area/station/engineering/lobby) +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosuppersm" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "iSv" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line, /obj/effect/turf_decal/tile/dark_red{ @@ -31045,8 +33110,9 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "iTf" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 1 @@ -31054,28 +33120,28 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/digital_clock/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"iTx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass/plasma, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ +"iTh" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"iTw" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 4 }, -/obj/machinery/meter, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) -"iTB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"iTF" = ( +/obj/structure/table, +/obj/structure/bedsheetbin/empty{ + pixel_y = 6 }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iTE" = ( -/obj/effect/spawner/random/food_or_drink/snack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "iTH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -31093,6 +33159,26 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) +"iTR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office/private_investigators_office) +"iTU" = ( +/obj/structure/sign/poster/random/directional/north, +/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 = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "iTW" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/structure/table, @@ -31103,14 +33189,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"iUj" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) "iUl" = ( /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/genetics, @@ -31124,15 +33202,6 @@ /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, /area/station/security/interrogation) -"iUo" = ( -/obj/machinery/atmospherics/components/tank/air{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "iUs" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -31149,6 +33218,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"iUz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "iUD" = ( /turf/closed/wall, /area/station/maintenance/solars/starboard/fore) @@ -31159,52 +33234,34 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/service/chapel) -"iUJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "iUM" = ( -/obj/machinery/requests_console/directional/north{ - department = "Security"; - name = "Security Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/mapping_helpers/requests_console/assistance, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) +"iUX" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/item/radio/intercom/directional/north, +/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/engineering/storage_shared) "iVc" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/structure/sign/warning/vacuum/external/directional/east, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"iVi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/abandoned) -"iVk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - 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/openspace, -/area/station/medical/storage) -"iVp" = ( -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"iVr" = ( +/obj/structure/sign/warning/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "iVA" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -31212,12 +33269,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_edge, /area/station/commons/lounge) -"iVT" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "iVW" = ( /turf/open/floor/plating/elevatorshaft, /area/station/security/prison/rec) @@ -31237,16 +33288,20 @@ /obj/structure/closet/secure_closet/medical1, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"iWb" = ( -/obj/structure/urinal/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"iWh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"iWa" = ( +/obj/effect/turf_decal/weather/snow/corner{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/obj/structure/cable, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/item/wrench/medical, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) "iWk" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -31272,17 +33327,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "iWu" = ( /turf/closed/wall, /area/space/nearstation) -"iWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "iWD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31292,10 +33342,13 @@ }, /turf/open/floor/wood, /area/station/service/library) -"iWM" = ( -/obj/structure/broken_flooring/side/directional/west, +"iWF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/directional/west, +/obj/structure/mirror/broken/directional/east, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/area/station/maintenance/starboard/upper) "iXd" = ( /obj/structure/lattice/catwalk, /obj/effect/decal/remains/human, @@ -31313,10 +33366,8 @@ /turf/open/floor/iron, /area/station/hallway/primary/aft) "iXw" = ( -/obj/structure/bed/dogbed/renault, -/mob/living/basic/pet/fox/renault, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/carpet, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "iXz" = ( /obj/machinery/door/airlock/maintenance{ @@ -31342,12 +33393,6 @@ /obj/structure/chair, /turf/open/floor/iron/airless, /area/station/maintenance/starboard/aft) -"iXH" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "iXJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall, @@ -31358,6 +33403,12 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"iYa" = ( +/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/upper) "iYb" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -31369,16 +33420,48 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"iYe" = ( +/obj/structure/lattice/catwalk, +/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/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/openspace, +/area/station/medical/abandoned) "iYm" = ( /turf/open/misc/asteroid/airless, /area/space/nearstation) "iYq" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot/left, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Cargo Storage-2" + }, +/mob/living/simple_animal/bot/mulebot{ + name = "Parcel Pete" + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/recharge_floor, +/area/station/cargo/sorting) +"iYr" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "iYJ" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, @@ -31390,27 +33473,10 @@ /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"iYM" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"iYZ" = ( -/mob/living/basic/turtle{ - name = "John Arbuckle" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/mapping_helpers/mob_buckler, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) -"iZe" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/railing/corner/end, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"iZk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "iZr" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -31418,6 +33484,15 @@ /obj/machinery/computer/security, /turf/open/floor/iron/dark, /area/station/security/office) +"iZt" = ( +/obj/structure/cable, +/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/layer5{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "iZu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31430,12 +33505,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"iZx" = ( -/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, -/area/station/maintenance/starboard/fore) "iZI" = ( /obj/machinery/computer/bank_machine, /obj/machinery/light_switch/directional/west{ @@ -31444,13 +33513,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) -"iZK" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/chapel) +/area/station/command/vault) "jac" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -31460,7 +33523,7 @@ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jad" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -31483,90 +33546,80 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/station/hallway/secondary/construction) -"jam" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -12 - }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 7 - }, -/obj/item/stack/ducts/fifty{ - pixel_y = -3 - }, -/obj/item/stack/ducts/fifty{ - pixel_y = -3 - }, -/obj/item/stack/ducts/fifty{ - pixel_y = -3 - }, -/obj/item/stack/ducts/fifty{ - pixel_y = -3 - }, -/obj/item/stack/ducts/fifty{ - pixel_y = -3 - }, -/obj/item/stack/ducts/fifty{ - pixel_y = -3 - }, -/obj/item/stack/ducts/fifty{ - pixel_y = -3 - }, -/obj/item/stack/ducts/fifty{ - pixel_y = -3 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) "jap" = ( /turf/open/floor/engine/hull/air, /area/station/commons/dorms) +"jau" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "jaG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/maintenance/starboard/central) +"jaI" = ( +/turf/open/openspace, +/area/station/engineering/storage/tech) "jaN" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, /area/station/maintenance/starboard/central) +"jaT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"jaY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron, +/area/station/commons/locker) +"jba" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "jbc" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/construction/storage_wing) -"jbh" = ( -/obj/machinery/light/floor/broken, -/turf/open/openspace, -/area/station/maintenance/hallway/abandoned_recreation) "jbn" = ( /obj/structure/stairs/west, /obj/structure/railing, /obj/structure/sign/poster/official/help_others/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jbD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/area/station/ai/satellite/interior) +"jbr" = ( +/obj/machinery/atmospherics/components/unary/airlock_pump/unbolt_only, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"jbL" = ( +/obj/item/kirbyplants/fern{ + pixel_x = -3; + pixel_y = 18 + }, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/structure/fluff/paper/stack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "jbO" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -31577,7 +33630,7 @@ /obj/structure/closet/secure_closet/armory2, /obj/effect/spawner/random/armory/rubbershot, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jbS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -31593,11 +33646,13 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"jcj" = ( -/obj/machinery/airalarm/directional/east, -/mob/living/basic/bot/cleanbot/medbay, -/turf/open/floor/wood, -/area/station/medical/medbay/central) +"jbZ" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery/white{ + color = "#ff6600" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "jcn" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end, /obj/structure/flora/bush/lavendergrass, @@ -31613,56 +33668,71 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) +"jcw" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 2; + name = "O2 to Mix" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "jcy" = ( -/obj/structure/ladder, /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) -"jcz" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/item/folder/white{ + pixel_x = -6 + }, +/obj/machinery/light_switch/directional/west{ + pixel_x = -22 + }, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/iron/white, +/area/station/medical/office) "jcE" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/bomb) -"jcP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"jcH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=21-Central"; + location = "20-Genetics" }, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) -"jcQ" = ( /obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"jda" = ( -/obj/item/spear, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) +"jcM" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) +"jcN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/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/engineering/lobby) "jdf" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/spawner/random/structure/grille, /turf/open/floor/engine/hull, /area/space/nearstation) "jdg" = ( -/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/carpet, -/area/station/command/bridge) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "jdi" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -31678,12 +33748,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"jdr" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) "jdB" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ dir = 1 @@ -31693,6 +33757,25 @@ }, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/burnchamber) +"jdH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/office) +"jdM" = ( +/obj/structure/table, +/obj/machinery/microwave/engineering/cell_included, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "jdZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -31701,17 +33784,7 @@ name = "AI Core Access" }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jec" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - 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/openspace, -/area/station/medical/virology) +/area/station/ai/satellite/interior) "jee" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31720,27 +33793,49 @@ /turf/closed/wall, /area/station/security/evidence) "jeh" = ( -/obj/structure/railing{ - dir = 8 +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/edge{ + dir = 4 }, -/obj/effect/turf_decal/siding/wood{ +/area/station/hallway/primary/central) +"jei" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/vending/cigarette{ - pixel_x = 5 +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"jem" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/oven{ + pixel_y = 3 }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/item/circuitboard/machine/oven, +/obj/item/circuitboard/machine/oven{ + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "jeq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/cryo_cell, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) +/obj/machinery/computer/records/medical{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/fireaxecabinet/jawsofrecovery/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/office) "jes" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/science) @@ -31757,19 +33852,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"jeD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/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/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) "jeU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -31782,42 +33864,30 @@ /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) "jeW" = ( -/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/cargo/storage) -"jeX" = ( -/obj/item/kirbyplants/random/dead{ - name = "dead plant" - }, -/obj/machinery/button/door/directional/east{ - id = "Cabin2"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/commons/dorms) "jfd" = ( -/obj/machinery/light/directional/east, -/obj/machinery/computer/cargo{ - dir = 8 - }, /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/status_display/supply{ - pixel_x = 32 + dir = 5 }, /turf/open/floor/iron, /area/station/cargo/storage) "jfi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/window/left/directional/east{ + name = "Cyborg Upload Console Window"; + req_access = list("ai_upload") + }, +/obj/machinery/computer/upload/borg{ dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/turf/open/floor/circuit/green, +/area/station/ai/upload/chamber) "jfj" = ( /obj/effect/decal/cleanable/dirt, /obj/item/camera_film, @@ -31830,11 +33900,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) -"jfp" = ( -/obj/structure/lattice/catwalk, -/obj/item/kirbyplants/random, -/turf/open/openspace, -/area/station/engineering/break_room) "jfA" = ( /turf/open/openspace, /area/station/security/brig) @@ -31867,9 +33932,6 @@ /turf/open/floor/iron/dark, /area/station/security/interrogation) "jgd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, /obj/effect/turf_decal/trimline/brown/warning{ dir = 9 }, @@ -31903,13 +33965,6 @@ "jgy" = ( /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"jgB" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "jgC" = ( /obj/structure/transit_tube/curved/flipped{ dir = 4 @@ -31917,6 +33972,12 @@ /obj/structure/lattice, /turf/open/space/openspace, /area/space/nearstation) +"jgD" = ( +/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/upper) "jgJ" = ( /obj/machinery/door/airlock/command{ name = "Research Division Server Room" @@ -31941,19 +34002,20 @@ /turf/open/floor/iron/textured_large, /area/station/medical/virology) "jhg" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/camera/autoname/directional/east, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/structure/chair/office, +/obj/structure/fluff/paper/stack{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "jhj" = ( /obj/structure/cable/layer3, /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/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jhm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31965,7 +34027,7 @@ codes_txt = "patrol;next_patrol=19-Captain"; location = "18-Bathroom" }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "jhu" = ( /obj/structure/disposalpipe/segment{ @@ -31973,6 +34035,15 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"jhz" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "jhM" = ( /obj/structure/table/wood, /obj/item/reagent_containers/cup/glass/bottle/holywater{ @@ -31991,22 +34062,25 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/medical) -"jhU" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "jhW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"jia" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/effect/turf_decal/siding/dark_blue{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) +"jia" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "jic" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured_large, @@ -32016,92 +34090,52 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"jip" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"jiv" = ( -/obj/effect/turf_decal/siding/brown{ +"jix" = ( +/obj/machinery/light/warm/dim/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/effect/turf_decal/siding/brown, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jiD" = ( /obj/machinery/telecomms/server/presets/common, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"jiE" = ( -/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 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=20-Genetics"; - location = "19-Captain" - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "jiG" = ( /obj/machinery/newscaster/directional/west, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/security/medical) "jiL" = ( -/obj/structure/table/glass, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 + dir = 4 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 +/obj/machinery/defibrillator_mount/mobile{ + anchored = 1 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 4 }, -/obj/item/stack/medical/bone_gel{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/stack/sticky_tape/surgical{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/machinery/light/directional/east, /turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) -"jjc" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jjd" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"jjh" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 +/area/station/medical/medbay/central) +"jjc" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"jji" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"jjj" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos/upper) -"jjn" = ( -/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/commons/fitness/recreation) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "jjo" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 10 @@ -32111,9 +34145,17 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"jjp" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/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/plating, +/area/station/engineering/gravity_generator) "jjr" = ( -/obj/effect/decal/cleanable/dirt, /obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) "jjv" = ( @@ -32170,20 +34212,54 @@ }, /turf/open/floor/grass, /area/station/science/genetics) +"jjZ" = ( +/obj/structure/table, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"jkb" = ( +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "jkd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) +"jke" = ( +/obj/effect/landmark/start/station_engineer, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "jkh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) +"jkk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "jkn" = ( /obj/structure/table/wood/poker, -/turf/open/floor/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "jkq" = ( /turf/open/floor/iron/stairs/right{ @@ -32193,29 +34269,23 @@ "jkr" = ( /turf/closed/wall, /area/station/science/lab) -"jkz" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) +"jkD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/light/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "jkG" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Post - Cargo" - }, +/obj/effect/spawner/structure/window/reinforced, /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/all/security/general, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, +/turf/open/floor/plating, /area/station/security/checkpoint/supply) -"jkI" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) +"jkJ" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/dark/arrow_cw{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "jkL" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -32224,12 +34294,10 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) -"jkR" = ( -/obj/machinery/computer/holodeck, -/obj/machinery/camera/autoname/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"jkM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "jkW" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -32252,29 +34320,23 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/secondary/construction) -"jlf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) -"jlh" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) -"jlo" = ( -/obj/structure/rack, -/obj/item/encryptionkey/headset_com{ - pixel_x = -4; - pixel_y = 3 +"jli" = ( +/obj/effect/turf_decal/trimline/purple/arrow_cw{ + dir = 8 }, -/obj/item/encryptionkey/headset_sec{ - pixel_x = 4 +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/structure/chair{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"jln" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "jlB" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -32312,12 +34374,20 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, /area/station/security/detectives_office) -"jmh" = ( -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) +"jlX" = ( +/obj/structure/sign/poster/official/get_your_legs/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "jmo" = ( /obj/structure/cable, /obj/effect/spawner/random/trash/garbage, +/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/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/aft) "jmv" = ( @@ -32327,23 +34397,41 @@ /obj/machinery/light/directional/west, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"jmD" = ( -/obj/effect/turf_decal/stripes/line{ +"jmG" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) +"jmK" = ( +/obj/machinery/power/emitter{ dir = 4 }, -/obj/structure/broken_flooring/side/directional/north, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"jmL" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/line, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "jmQ" = ( /obj/effect/spawner/random/trash/grime, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"jmT" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "jmY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32351,7 +34439,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/dark/textured_large, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "jmZ" = ( /obj/machinery/light/directional/south, @@ -32362,16 +34454,11 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "jni" = ( -/obj/structure/cable, /obj/item/crowbar, /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/autoname/directional/south, /turf/open/floor/plating, /area/station/maintenance/central) -"jnk" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "jno" = ( /obj/structure/table, /obj/machinery/button/door{ @@ -32400,16 +34487,11 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"jnq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/openspace, -/area/station/engineering/break_room) "jnC" = ( -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "jnK" = ( /obj/effect/turf_decal/trimline/green/filled/line, @@ -32422,24 +34504,44 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) -"jnQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"jnR" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"jnU" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "jof" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"joA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/item/trash/tray, +/obj/structure/railing, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "joC" = ( +/obj/item/wheelchair{ + pixel_y = -3 + }, +/obj/item/wheelchair, +/obj/item/wheelchair{ + pixel_y = 3 + }, +/obj/structure/rack, /obj/structure/railing{ dir = 8 }, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/paramedic, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/medbay/central) "joE" = ( @@ -32451,15 +34553,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"joI" = ( -/obj/machinery/power/emitter{ - dir = 4 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) "jpa" = ( /obj/machinery/vatgrower{ dir = 4 @@ -32468,12 +34561,7 @@ /area/station/science/cytology) "jph" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"jpj" = ( -/obj/item/statuebust, -/obj/machinery/light/cold/no_nightlight/directional/east, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +/area/station/command/vault) "jpp" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32484,11 +34572,23 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"jpq" = ( +/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/plating, +/area/station/maintenance/starboard) "jps" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1 + }, +/obj/item/cigarette/cigar{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "jpt" = ( /obj/structure/railing{ dir = 1 @@ -32496,13 +34596,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/command/corporate_showroom) -"jpw" = ( -/obj/machinery/door/poddoor{ - id = "securestoragecw"; - name = "Secure Storage" - }, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/break_room) "jpx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -32536,7 +34629,11 @@ /obj/structure/table/reinforced, /obj/item/mmi, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"jpZ" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "jqd" = ( /obj/machinery/door/airlock/public/glass{ name = "Prison Community Center" @@ -32544,13 +34641,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"jqo" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 9 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "jqp" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -32559,37 +34649,54 @@ /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/construction/storage_wing) -"jqv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "jqw" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ dir = 10 }, /turf/open/space/openspace, /area/space/nearstation) +"jqz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/weldingtool, +/obj/item/wrench, +/obj/item/clothing/head/utility/welding, +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "jqB" = ( /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"jqG" = ( -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "jqO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/vatgrower, /turf/open/floor/engine, /area/station/service/hydroponics) +"jqP" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"jqQ" = ( +/obj/structure/lattice, +/obj/item/toy/figure/ninja{ + name = "Space Ninja"; + desc = "How did he get there??"; + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/space/openspace, +/area/space/nearstation) "jqR" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -32608,47 +34715,13 @@ }, /turf/open/floor/iron/textured, /area/station/security/brig) -"jrb" = ( -/obj/structure/table, -/obj/item/pen/blue, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"jrf" = ( -/obj/structure/table, -/obj/item/clothing/glasses/hud/health{ - pixel_x = -3 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = 3; - pixel_y = 2 +"jrc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 }, -/obj/effect/turf_decal/tile/blue/full, -/obj/machinery/airalarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) -"jrp" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/table, -/obj/item/stack/cable_coil/five, -/obj/machinery/light/small/directional/west, -/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/commons/dorms) -"jrq" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/engineering/lobby) "jrt" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -32659,25 +34732,33 @@ /turf/open/floor/iron/dark, /area/station/science/xenobiology) "jrv" = ( -/obj/structure/closet/crate/freezer, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/obj/item/food/pizza/mothic_garlic, /obj/machinery/light/cold/dim/directional/west, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"jrx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + dir = 4; + name = "decommissioned sleeper" }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "jrz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/large, +/obj/machinery/light/directional/south, +/obj/structure/lattice/catwalk, +/turf/open/openspace, /area/station/hallway/primary/central) +"jrC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/boritos, +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"jrD" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/east, +/turf/open/openspace, +/area/station/hallway/primary/aft) "jrK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -32685,6 +34766,18 @@ }, /turf/open/floor/iron, /area/station/construction/storage_wing) +"jrS" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/command/gateway) "jrT" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -32694,35 +34787,40 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jrV" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/area/station/ai/satellite/interior) +"jrY" = ( +/obj/machinery/meter{ + name = "Plasma meter" + }, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "Plasma Multideck Adapter"; + dir = 2 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "jsh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jsy" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"jsj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/ai/upload/chamber) +"jsG" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/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/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"jsD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table, -/obj/item/stack/rods{ - pixel_y = 3 - }, -/obj/structure/sign/poster/contraband/lizard/directional/south, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +/area/station/engineering/storage_shared) "jsK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32737,16 +34835,21 @@ /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) "jtm" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ - name = "Abandoned Room" + name = "Medical Break Room" }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/turf/open/floor/iron/textured_large, +/area/station/medical/break_room) +"jty" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "jtE" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -32776,32 +34879,20 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"jua" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/warning{ +/obj/effect/turf_decal/stripes{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, +/turf/open/floor/iron/textured, +/area/station/command/eva) +"jua" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) -"juc" = ( -/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/wood/parquet, -/area/station/medical/break_room) -"juh" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"jug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "jui" = ( /obj/structure/table, /obj/item/kitchen/rollingpin{ @@ -32831,19 +34922,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"juo" = ( -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "jup" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -32867,15 +34945,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/tcommsat/server) -"juz" = ( -/obj/machinery/mecha_part_fabricator/maint{ - name = "forgotten exosuit fabricator"; - drop_direction = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "juE" = ( /obj/effect/spawner/random/clothing/funny_hats, /obj/effect/spawner/random/clothing/wardrobe_closet, @@ -32883,11 +34952,9 @@ /area/station/maintenance/port) "juH" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L14" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "juP" = ( @@ -32921,16 +34988,6 @@ }, /turf/open/space/openspace, /area/space/nearstation) -"jvf" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "jvl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32945,42 +35002,15 @@ /area/station/hallway/secondary/construction) "jvB" = ( /turf/open/floor/iron/dark, -/area/station/command/bridge) -"jvL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Ordnance Gas Storage Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, +/area/station/command/meeting_room/council) +"jvK" = ( +/obj/structure/table/reinforced, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jvM" = ( -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) +/area/station/maintenance/starboard/upper) "jvU" = ( /obj/machinery/flasher/portable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"jvX" = ( -/obj/effect/turf_decal/siding{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"jvZ" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "jwa" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard/central) @@ -33008,13 +35038,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"jwu" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) "jwB" = ( /obj/machinery/airlock_sensor/incinerator_ordmix{ pixel_x = -24 @@ -33030,29 +35053,47 @@ }, /turf/open/floor/engine, /area/station/science/ordnance/burnchamber) +"jwC" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "jwI" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue, -/obj/effect/turf_decal/siding/blue{ - 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 }, -/obj/effect/turf_decal/arrows{ +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/mapping_helpers/requests_console/information, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"jwO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/color_adapter, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "jxa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/engine/hull/air, -/area/station/medical/chemistry) +/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/carpet/cyan, +/area/station/command/heads_quarters/cmo) "jxc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/conveyor{ + dir = 4; + id = "cargounload" + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "jxg" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -33060,44 +35101,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"jxj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "jxk" = ( -/obj/structure/cable, -/obj/machinery/computer/security/telescreen/normal/directional/north{ - name = "Security Cameras Monitor" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"jxl" = ( -/obj/item/kirbyplants/random/dead{ - name = "dead plant" - }, -/obj/item/cigbutt, -/obj/machinery/button/door/directional/west{ - id = "Cabin7"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"jxo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/structure/chair/comfy/black{ dir = 8 }, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "jxt" = ( /obj/structure/ladder, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -33105,16 +35114,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"jxx" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 4 - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) "jxB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate, @@ -33139,6 +35138,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) +"jxQ" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/engine, +/area/station/engineering/atmos) "jxU" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -33154,25 +35157,18 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"jxW" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 2 +"jya" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "jyd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) +/obj/machinery/status_display/ai/directional/south, +/turf/open/openspace, +/area/station/command/heads_quarters/hop) "jyl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing, @@ -33205,24 +35201,17 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jyA" = ( /obj/structure/table, /obj/effect/spawner/random/maintenance, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"jyD" = ( -/obj/structure/table, -/obj/item/tape{ - pixel_x = -4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "jyI" = ( /obj/structure/chair/sofa/corp, /obj/machinery/light_switch/directional/north, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jyK" = ( /obj/structure/railing, /obj/effect/turf_decal/siding/brown, @@ -33235,42 +35224,38 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"jyL" = ( -/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) "jyM" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/warm/dim/directional/north, -/obj/structure/cable, -/turf/open/openspace, -/area/station/hallway/primary/central) +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jyP" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil/thirty, -/turf/open/space/basic, -/area/space/nearstation) -"jyW" = ( -/obj/structure/table, -/obj/item/shard{ - pixel_x = 9 +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, -/obj/item/clothing/glasses/regular{ - pixel_x = -10; - pixel_y = 6 +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"jzk" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/computer/telecomms/server{ + dir = 8; + network = "tcommsat" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"jzo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/structure/sign/poster/official/corporate_perks_vacation/directional/south, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) -"jyX" = ( /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/commons/dorms) +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "jzx" = ( /obj/machinery/vending/wardrobe/law_wardrobe, /obj/machinery/firealarm/directional/east, @@ -33285,12 +35270,17 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"jzD" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "jzH" = ( -/obj/machinery/door/poddoor/massdriver_trash, /obj/machinery/atmos_shield_gen/active{ dir = 1 }, /obj/machinery/atmos_shield_gen/active, +/obj/machinery/door/poddoor/massdriver_trash, /turf/open/floor/plating, /area/station/maintenance/disposal) "jzM" = ( @@ -33317,37 +35307,22 @@ /obj/structure/railing, /turf/open/openspace, /area/station/maintenance/port/aft) -"jzY" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Break Room" - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - 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{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/station/medical/break_room) "jAc" = ( /obj/structure/lattice/catwalk, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) -"jAd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ +"jAg" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "jAh" = ( /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /obj/machinery/door/airlock{ @@ -33365,6 +35340,15 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"jAx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "jAy" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -33386,13 +35370,13 @@ /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance) "jAO" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 +/obj/machinery/brm, +/obj/structure/railing{ + dir = 10 }, -/obj/structure/chair/sofa/right/brown, -/obj/item/clothing/head/soft{ - pixel_x = 2; - pixel_y = -2 +/obj/machinery/conveyor{ + dir = 4; + id = "mining" }, /turf/open/floor/iron/textured, /area/station/cargo/storage) @@ -33409,23 +35393,25 @@ }, /turf/open/floor/iron/edge, /area/station/hallway/primary/fore) -"jBb" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "jBd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"jBh" = ( -/obj/structure/sign/poster/random/directional/west, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"jBf" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "jBk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33435,54 +35421,64 @@ "jBn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/miningoffice) -"jBs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 4 +"jBr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 8 }, -/obj/machinery/light/small/directional/north, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/science/server) +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/wood, +/area/station/maintenance/aft) "jBt" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine/hull/air, -/area/station/command/meeting_room/council) -"jBx" = ( -/obj/structure/table/glass, -/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/light/floor, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, /turf/open/floor/iron/dark, -/area/station/commons/vacant_room/office) -"jBB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/command/bridge) "jBI" = ( /obj/structure/cable, /obj/structure/table, /obj/item/clothing/mask/gas, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"jBK" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/railing/corner, -/obj/structure/disposalpipe/segment{ - dir = 5 +"jBJ" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"jBS" = ( +/obj/structure/chair/office{ + dir = 8 }, -/obj/structure/flora/tree/jungle, -/turf/open/floor/grass, -/area/station/hallway/primary/starboard) +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "jBU" = ( /obj/item/reagent_containers/cup/glass/mug/tea, /obj/structure/table/wood, /turf/open/floor/carpet/orange, /area/station/commons/lounge) +"jBV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) "jBW" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -33490,9 +35486,28 @@ /area/station/maintenance/solars/port/aft) "jBX" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/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/west, +/obj/structure/table, +/obj/item/clothing/head/soft{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/hand_labeler{ + pixel_y = 11 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/stamp/granted, +/obj/item/stamp/denied{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/hand_labeler_refill{ + pixel_x = -8; + pixel_y = 3 + }, /turf/open/floor/iron, /area/station/cargo/storage) "jBY" = ( @@ -33502,34 +35517,13 @@ }, /turf/open/openspace, /area/station/command/gateway) -"jCk" = ( -/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/engineering/storage/tech) "jCt" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) -"jCv" = ( -/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/engineering/general, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) "jCz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33557,14 +35551,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) -"jCJ" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "jCK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -33583,17 +35569,34 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"jCP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "jCQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - dir = 8; - name = "decommissioned sleeper" +/obj/structure/chair/sofa/corp/right, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) +"jCS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 }, -/obj/effect/decal/cleanable/greenglow, -/obj/item/surgicaldrill, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) +"jCV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/cup/beaker, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "jCW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33622,17 +35625,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"jDi" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "jDj" = ( /obj/effect/turf_decal/trimline/yellow/corner{ dir = 8 @@ -33646,13 +35638,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/robotics/lab) -"jDl" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark/smooth_corner, -/area/station/engineering/main) +"jDm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "jDn" = ( /obj/structure/chair/stool/bar/directional/north, /obj/effect/turf_decal/siding/wood, @@ -33662,33 +35652,23 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood/large, /area/station/commons/lounge) -"jDq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/trunk/multiz/down{ +"jDx" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/medical/morgue) +"jDB" = ( +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) +"jDD" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"jDr" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/spawner/random/clothing/wardrobe_closet_colored, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"jDx" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/structure/chair/sofa/bench/solo{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"jDy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"jDD" = ( -/obj/structure/curtain, -/obj/machinery/shower/directional/south, -/turf/open/floor/iron/dark/textured_large, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "jDL" = ( /obj/effect/turf_decal/siding/dark{ @@ -33699,7 +35679,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jDO" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -33728,28 +35708,42 @@ /obj/structure/sign/poster/contraband/tools/directional/north, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"jDY" = ( -/obj/effect/turf_decal/tile/dark_green/opposingcorners, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/obj/item/stack/sheet/cotton{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/generic, -/obj/structure/closet/firecloset, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) "jEc" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"jEd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper{ + dir = 4 + }, +/obj/structure/fluff/paper/stack{ + dir = 5 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/camera_film, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"jEg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "jEm" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"jEo" = ( +/obj/machinery/computer/atmos_alert/station_only{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/circuit, +/area/station/command/bridge) "jEr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33769,41 +35763,24 @@ /obj/effect/turf_decal/tile/dark/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"jEx" = ( -/obj/structure/cable, -/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) -"jEz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4; - external_pressure_bound = 140; - name = "killroom vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) "jEG" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/holopad, /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; location = "Medical" }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jEV" = ( -/obj/structure/table, -/obj/item/folder/yellow{ - pixel_x = 4 +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/item/pen, -/obj/item/airlock_painter, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/medical/medbay/lobby) +"jEM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "jFj" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 4 @@ -33827,28 +35804,34 @@ /area/station/security/courtroom) "jFp" = ( /obj/structure/table/wood, -/obj/item/stamp/head/captain{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/storage/briefcase/secure{ - pixel_x = -2; - pixel_y = 4 - }, /obj/item/storage/lockbox/medal{ pixel_y = 2 }, -/turf/open/floor/carpet, +/obj/item/pen/fountain/captain{ + pixel_y = 6 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) +"jFr" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Plasma to Mix" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "jFG" = ( -/obj/structure/closet/crate/freezer/blood, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + dir = 4; + name = "decommissioned sleeper" + }, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "jFH" = ( /obj/effect/turf_decal/tile/purple/fourcorners, /turf/open/floor/iron, @@ -33869,33 +35852,33 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) "jFV" = ( -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ dir = 1 }, -/obj/machinery/door/poddoor/shutters{ +/obj/machinery/door/poddoor/shutters/window{ + dir = 1; id = "evashutter"; name = "E.V.A. Storage Shutter" }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "jGh" = ( -/obj/machinery/computer/records/security, -/obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) "jGl" = ( /obj/effect/spawner/random/structure/table_or_rack, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"jGm" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) +"jGn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "jGq" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -33908,7 +35891,7 @@ /obj/effect/spawner/random/structure/crate, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "jGw" = ( /obj/structure/railing{ dir = 9 @@ -33931,6 +35914,9 @@ }, /turf/open/floor/carpet, /area/station/security/courtroom) +"jGG" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/fore/upper) "jGK" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -33941,18 +35927,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"jGQ" = ( -/obj/effect/turf_decal/siding/brown/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 1 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "jGT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -33963,12 +35937,34 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"jHb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"jHc" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack{ + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "jHj" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"jHk" = ( +/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) "jHq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -33988,43 +35984,44 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"jHD" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/pen{ - pixel_x = -17; +"jHH" = ( +/obj/structure/table, +/obj/item/rcl/pre_loaded{ pixel_y = 7 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"jHL" = ( -/obj/machinery/vatgrower, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/storage/art) "jHV" = ( /turf/open/floor/iron/stairs/medium{ dir = 1 }, /area/station/service/chapel) "jIf" = ( -/obj/effect/spawner/structure/window/reinforced, +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay-office"; + name = "Medbay Shutters"; + dir = 4 + }, /turf/open/floor/plating, /area/station/medical/cryo) -"jIj" = ( -/obj/machinery/requests_console/directional/south{ - department = "Engineering"; - name = "Engineering Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/mapping_helpers/requests_console/assistance, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) -"jIs" = ( -/obj/structure/table/glass, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"jIl" = ( +/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, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "jIx" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Antechamber" @@ -34034,16 +36031,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"jIF" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/area/station/ai/satellite/foyer) "jII" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -34054,12 +36042,13 @@ /turf/open/floor/plating, /area/station/command/heads_quarters/hos) "jIJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/medical/storage) +/obj/structure/sign/clock/directional/south, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/item/toy/plush/horse, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/glass, +/area/station/medical/patients_rooms/room_a) "jIX" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -34069,11 +36058,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"jIZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/basketball, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "jJd" = ( /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/plating, @@ -34085,13 +36069,6 @@ }, /turf/open/floor/wood, /area/station/service/library) -"jJm" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) "jJC" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -34109,14 +36086,15 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"jJE" = ( +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) "jJH" = ( -/obj/structure/chair/comfy/carp{ - dir = 1; - name = "Captain's Chair" - }, /obj/machinery/light/floor, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/chair/comfy/black, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "jJP" = ( /obj/machinery/vending/coffee, /obj/item/radio/intercom/directional/east, @@ -34129,6 +36107,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"jJU" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "jJX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -34138,7 +36119,7 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jJZ" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -34151,58 +36132,35 @@ /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "jKo" = ( -/obj/structure/table/wood, -/obj/item/lighter{ - pixel_x = 7; - pixel_y = -11 - }, -/obj/item/cigarette/cigar{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/reagent_containers/cup/glass/coffee{ - pixel_x = -8; - pixel_y = -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/carpet, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jKp" = ( -/turf/open/openspace, -/area/station/medical/storage) +/turf/closed/wall, +/area/station/medical/patients_rooms/room_a) "jKF" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, /obj/machinery/door/poddoor/shutters{ id = "gateshutter"; name = "Gateway Access Shutter" }, -/turf/open/floor/iron, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) -"jKT" = ( -/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/lattice/catwalk, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/machinery/light/directional/east, -/obj/machinery/door/window/right/directional/west{ - name = "First Aid Supplies"; - req_access = list("medical") - }, -/turf/open/openspace, -/area/station/medical/storage) +"jKL" = ( +/obj/machinery/requests_console/directional/west, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "jKX" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/cmo) @@ -34232,7 +36190,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jLl" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -34255,22 +36213,15 @@ /obj/item/radio/intercom/directional/south, /turf/open/openspace, /area/station/security/checkpoint/science) -"jLt" = ( -/obj/structure/sign/poster/official/random/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/engine/directional/south{ - name = "Engine Camera Monitor" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "jLu" = ( /obj/machinery/telecomms/processor/preset_three, /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) +"jLv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) "jLw" = ( /obj/structure/reagent_dispensers/cooking_oil, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, @@ -34284,25 +36235,26 @@ }, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"jLH" = ( -/obj/machinery/button/door/directional/south{ - id = "ceprivacy"; - name = "Privacy Shutters Control"; - pixel_y = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "transitlockdown"; - name = "Transit Tube Lockdown"; - pixel_x = 0; - pixel_y = -8 +"jLD" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) +"jLE" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Testing Room" }, -/obj/machinery/button/door{ - id = "securestoragecw"; - name = "Secure Storage" +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"jLS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "jLY" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -34311,20 +36263,49 @@ /area/station/service/kitchen) "jMi" = ( /obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "jMo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "jMr" = ( /turf/closed/wall, /area/station/hallway/secondary/exit/departure_lounge) +"jMu" = ( +/obj/structure/sign/directions/evac/directional/east{ + dir = 1; + pixel_y = 5; + pixel_x = 0 + }, +/obj/structure/sign/directions/engineering/directional/east{ + pixel_y = -1; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/east{ + pixel_y = -7; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/commons/toilet/restrooms) "jMy" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/commons/vacant_room/office) +"jMC" = ( +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/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/starboard/fore/upper) "jML" = ( /obj/effect/decal/cleanable/confetti, /turf/open/floor/plating, @@ -34334,7 +36315,6 @@ /obj/structure/table/reinforced, /obj/item/radio, /obj/machinery/camera/autoname/directional/north, -/obj/machinery/light_switch/directional/north, /turf/open/openspace, /area/station/security/checkpoint/customs) "jMU" = ( @@ -34342,6 +36322,29 @@ /obj/structure/cable, /turf/open/space/openspace, /area/space/nearstation) +"jNe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"jNg" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table, +/obj/structure/microscope, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) +"jNh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jNk" = ( /obj/structure/rack, /obj/item/storage/box/flashes{ @@ -34358,6 +36361,14 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"jNu" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/landmark/firealarm_sanity, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "jNC" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 @@ -34367,6 +36378,13 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/security/mechbay) +"jNG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "jNL" = ( /obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/trimline/dark/arrow_ccw{ @@ -34379,14 +36397,20 @@ dir = 4 }, /area/station/hallway/secondary/exit/departure_lounge) -"jNT" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/oven{ - pixel_y = -3 +"jNW" = ( +/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/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "jOe" = ( /obj/structure/railing{ dir = 4 @@ -34401,40 +36425,72 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "jOi" = ( -/obj/structure/sign/directions/engineering/directional/south{ - dir = 4; - pixel_y = -22 +/obj/structure/sign/directions/evac/directional/north{ + dir = 8; + pixel_y = 0 }, -/obj/structure/sign/directions/dorms/directional/south{ - dir = 4; - pixel_y = -28 +/obj/structure/sign/directions/medical/directional/north{ + dir = 8; + pixel_y = 10 }, -/obj/structure/sign/directions/security{ +/obj/structure/sign/directions/command{ dir = 8; - pixel_y = -40 + pixel_y = -10 }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = -34 +/turf/closed/wall, +/area/station/commons/storage/primary) +"jOm" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "jOE" = ( /turf/closed/wall, /area/station/service/lawoffice) +"jOG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "jOH" = ( /turf/open/floor/iron/dark, /area/station/security/brig) -"jOT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/wood, +"jOJ" = ( +/obj/structure/curtain, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, /area/station/commons/dorms) +"jOO" = ( +/turf/closed/wall/r_wall, +/area/station/commons/fitness/recreation) +"jOZ" = ( +/obj/machinery/light_switch/directional/north, +/obj/structure/closet/wardrobe/white, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "jPa" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/primary/starboard) +"jPe" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/structure/closet/masks, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "jPh" = ( /obj/structure/broken_flooring/pile/directional/south, /turf/open/floor/plating, @@ -34456,6 +36512,14 @@ /obj/effect/spawner/random/maintenance/no_decals, /turf/open/space/basic, /area/space/nearstation) +"jPz" = ( +/obj/machinery/door/airlock/external, +/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/starboard/upper) "jPC" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 @@ -34473,6 +36537,18 @@ /obj/structure/chair/office, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"jPV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "jPW" = ( /obj/structure/flora/bush/ferny/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -34496,19 +36572,10 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/security/courtroom) -"jQu" = ( -/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/cafeteria, -/area/station/commons/locker) "jQw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, +/obj/structure/sign/poster/official/random/directional/east, /turf/open/openspace, -/area/station/hallway/primary/central) +/area/station/command/eva) "jQA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -34516,18 +36583,20 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/evidence) -"jQL" = ( -/obj/structure/railing/corner/end{ - dir = 8 +"jQH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"jQL" = ( /obj/effect/decal/cleanable/dirt, /obj/item/radio/intercom/directional/east{ frequency = 1447; name = "ai intercom" }, -/obj/machinery/holopad/secure, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jQO" = ( /turf/closed/wall, /area/station/science/ordnance/bomb) @@ -34535,16 +36604,19 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"jQQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "jRb" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/engine/co2, /area/station/engineering/atmos/upper) +"jRe" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "jRg" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 10 @@ -34554,23 +36626,17 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"jRB" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/transit_tube/station/dispenser/flipped{ - dir = 1 - }, +"jRq" = ( +/obj/machinery/duct, /obj/structure/cable, -/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/dark, -/area/station/engineering/transit_tube) +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "jRH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/gateway) "jRL" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -34579,12 +36645,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"jRZ" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/chamber) +"jRQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "jSf" = ( /turf/closed/wall/r_wall, /area/station/engineering/main) @@ -34597,6 +36663,8 @@ /obj/machinery/mass_driver/trash{ dir = 4 }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "jSA" = ( @@ -34615,6 +36683,13 @@ /obj/structure/window/reinforced/plasma/spawner/directional/north, /turf/open/space/basic, /area/space/nearstation) +"jSK" = ( +/obj/effect/turf_decal/siding/wood, +/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/wood/tile, +/area/station/security/detectives_office/private_investigators_office) "jSO" = ( /obj/effect/turf_decal/arrows/white{ color = "#00AAFF"; @@ -34624,25 +36699,16 @@ /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) "jSV" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 17 - }, -/obj/item/folder/blue{ - pixel_x = -3; - pixel_y = -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/carpet, -/area/station/command/meeting_room/council) -"jSW" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Command Desk"; + req_access = list("command") + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jSY" = ( /obj/effect/landmark/transport/transport_id{ specific_transport_id = "catwalk_sec" @@ -34668,24 +36734,19 @@ dir = 4 }, /area/station/service/chapel) -"jTt" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) -"jTx" = ( +"jTp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"jTG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/chair{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/turf/open/openspace, +/area/station/maintenance/aft/upper) "jTO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -34720,12 +36781,6 @@ "jUe" = ( /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/exit/departure_lounge) -"jUp" = ( -/obj/structure/table, -/obj/machinery/status_display/ai/directional/north, -/obj/item/analyzer, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "jUt" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/light/directional/south, @@ -34742,19 +36797,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/construction/storage_wing) -"jUI" = ( -/obj/item/clothing/head/cone{ - pixel_x = 8; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, +"jUW" = ( +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jUS" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/central/upper) "jUX" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 6 @@ -34778,17 +36824,11 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/openspace, /area/station/maintenance/hallway/abandoned_recreation) -"jVp" = ( -/obj/structure/table/wood/poker, -/obj/item/reagent_containers/cup/soda_cans/cola{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "jVs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/very_dim/directional/north, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) "jVu" = ( @@ -34801,6 +36841,12 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"jVv" = ( +/obj/machinery/vatgrower, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "jVB" = ( /turf/closed/wall/r_wall, /area/station/engineering/gravity_generator) @@ -34811,6 +36857,21 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/lounge) +"jVN" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/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/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosuppersm" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "jVP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -34821,6 +36882,9 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"jVX" = ( +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "jVY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large, @@ -34881,34 +36945,20 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "jWF" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/item/circular_saw, -/obj/item/circular_saw{ - pixel_y = 4 - }, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/item/scalpel{ - pixel_y = 12 +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) -"jWJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "jWP" = ( -/obj/machinery/light/floor, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jWT" = ( /obj/structure/railing/corner{ dir = 8 @@ -34916,7 +36966,7 @@ /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/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "jXe" = ( /obj/structure/table/wood, @@ -34944,11 +36994,9 @@ /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) "jXm" = ( -/obj/structure/ladder, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/cargo/storage) "jXC" = ( /obj/structure/table, /obj/item/instrument/eguitar{ @@ -34958,6 +37006,20 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood/large, /area/station/service/theater_dressing) +"jXR" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"jXS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "jXX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -34974,6 +37036,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light_switch/directional/north, /turf/open/floor/iron/textured, /area/station/cargo/warehouse) "jYb" = ( @@ -35012,61 +37075,59 @@ /area/station/hallway/secondary/construction) "jYs" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/photocopier/prebuilt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jYE" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/item/storage/toolbox/fishing, -/obj/item/storage/box/lights/mixed{ - pixel_x = -8; - pixel_y = 1 +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 9 }, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/port/fore) -"jYG" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access" +/obj/item/paper_bin{ + pixel_x = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/landmark/navigate_destination/minisat_access_ai, -/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/engineering/transit_tube) +/obj/item/pen, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron, +/area/station/cargo/storage) "jYI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/full, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry" +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/pharmacy) +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/command/gateway) "jYJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ +/obj/effect/turf_decal/siding/blue{ dir = 1 }, -/turf/open/floor/iron/white/textured, -/area/station/medical/surgery) +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/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/iron/white, +/area/station/medical/medbay/central) "jYM" = ( /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_large, /area/station/maintenance/department/medical) +"jYR" = ( +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "N2 Multideck Adapter"; + dir = 2 + }, +/obj/machinery/meter{ + name = "N2 meter" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "jYS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35081,20 +37142,20 @@ /turf/open/floor/plating, /area/station/science/robotics) "jZl" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "jZs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"jZL" = ( -/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) +"jZQ" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "jZR" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -35113,6 +37174,10 @@ }, /turf/open/openspace, /area/station/hallway/primary/starboard) +"kaj" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "kak" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 4 @@ -35122,24 +37187,62 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"kaq" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) +"kas" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) +"kau" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kax" = ( /turf/open/floor/iron/white/smooth_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"kaM" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"kaN" = ( +/area/station/ai/satellite/foyer) +"kay" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"kaF" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/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, -/obj/effect/decal/cleanable/crayon{ - icon_state = "nay"; - pixel_y = 32 +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"kaI" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"kaW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 }, +/obj/effect/mapping_helpers/mail_sorting/science/genetics, +/obj/effect/mapping_helpers/mail_sorting/science/rd_office, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/obj/effect/mapping_helpers/mail_sorting/science/research, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "kbe" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner, @@ -35147,11 +37250,18 @@ /turf/open/openspace, /area/station/maintenance/port/aft) "kbf" = ( -/obj/effect/spawner/random/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, /turf/open/floor/iron, /area/station/cargo/storage) +"kbh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "kbj" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, @@ -35162,6 +37272,12 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, /area/station/tcommsat/server) +"kbo" = ( +/obj/item/binoculars, +/obj/item/toy/basketball, +/obj/structure/closet, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "kbr" = ( /obj/structure/table/reinforced, /obj/item/clothing/glasses/science, @@ -35177,40 +37293,35 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"kbu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) "kbz" = ( /obj/machinery/airalarm/directional/west, /obj/structure/rack, /obj/effect/spawner/random/armory/shotgun, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kbB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, /obj/effect/turf_decal/tile/dark/full, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/floor/broken, -/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"kbQ" = ( -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random/fullysynthetic, -/obj/effect/turf_decal/stripes/line{ +"kbH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 5 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kbR" = ( -/obj/machinery/newscaster/directional/south, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"kbS" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/engineering_personal{ - anchored = 1 - }, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/engineering/atmos/upper) +"kbY" = ( +/obj/structure/table, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "kci" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -35223,6 +37334,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"kct" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "kcx" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -35232,11 +37347,15 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"kcA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +"kcC" = ( +/obj/structure/railing/corner/end/flip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"kcL" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "kcM" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 4 @@ -35247,12 +37366,30 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"kcY" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/machinery/atmospherics/pipe/smart/manifold/orange/visible{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"kdk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) "kdl" = ( /turf/open/floor/wood, /area/station/service/chapel) @@ -35261,12 +37398,12 @@ /turf/open/floor/plating, /area/station/security/brig) "kdp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, /obj/effect/turf_decal/tile/red/opposingcorners{ 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, /area/station/security/checkpoint/supply) "kdq" = ( @@ -35286,26 +37423,12 @@ /turf/open/floor/iron/freezer, /area/station/commons/toilet/auxiliary) "kdt" = ( -/obj/structure/table, -/obj/item/clipboard{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/machinery/camera/motion/directional/south{ - c_tag = "AI Upload Chamber - Lower"; - network = list("aiupload") - }, -/obj/machinery/airalarm/directional/south, -/obj/item/phone{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/ai_module/toy_ai{ - pixel_x = -13; - pixel_y = 9 +/obj/machinery/porta_turret/ai{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/machinery/camera/autoname/motion/directional/south, +/turf/open/floor/circuit/red, +/area/station/ai/upload/chamber) "kdv" = ( /obj/structure/railing{ dir = 1 @@ -35318,22 +37441,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kdC" = ( /obj/structure/fake_stairs/directional/east{ name = "stairs" }, /turf/open/floor/iron/dark, /area/station/science/cytology) -"kdE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/directional/west, -/obj/structure/mirror/broken/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kdG" = ( -/turf/open/floor/wood, -/area/station/commons/dorms) "kdN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -35342,10 +37456,13 @@ /turf/open/floor/plating, /area/station/construction/storage_wing) "kdQ" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/caution/stand_clear/red{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/storage) "kdR" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -35353,17 +37470,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, /area/station/hallway/primary/starboard) -"kdZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "keh" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark/textured_large, @@ -35387,9 +37493,19 @@ /obj/item/cigbutt, /turf/open/floor/iron/dark/textured_half, /area/station/cargo/bitrunning/den) +"kep" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/box, +/obj/structure/ladder, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "keq" = ( -/obj/effect/turf_decal/siding/white/corner, -/turf/open/floor/iron/dark/smooth_large, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "kew" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -35408,19 +37524,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"keE" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/table, -/obj/item/reagent_containers/cup/soda_cans/random{ - pixel_x = -5; - pixel_y = -18 - }, -/obj/item/reagent_containers/cup/soda_cans/random{ - pixel_x = 5; - pixel_y = -16 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "keM" = ( /obj/structure/lattice/catwalk, /obj/item/wirecutters{ @@ -35433,11 +37536,6 @@ /obj/machinery/holopad, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"keY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "keZ" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 8 @@ -35461,8 +37559,18 @@ pixel_y = 2 }, /obj/item/pen/fourcolor, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) +"kfo" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "kfs" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "chapel_shutters_space"; @@ -35479,6 +37587,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"kfI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) "kfO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/box/corners{ @@ -35491,73 +37605,77 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/plating, /area/station/maintenance/solars/port/aft) -"kgf" = ( -/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/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "kgg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kgi" = ( +"kgr" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/door/airlock/public/glass{ + name = "Abandoned Hallway" }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"kgo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "kgE" = ( /obj/structure/ladder, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"kgM" = ( +/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/duct, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "khi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/carpet, /area/station/command/corporate_showroom) +"khk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "khm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/glass, /area/station/maintenance/port) -"khn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "kho" = ( /obj/structure/ladder, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) "khC" = ( -/obj/machinery/plumbing/receiver{ +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/wood, -/area/station/medical/medbay/central) +/obj/machinery/door/window/right/directional/north{ + name = "Anti Assistant Protection Door"; + req_access = list("medical") + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/cryo) "khE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "khF" = ( /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, @@ -35629,24 +37747,19 @@ }, /turf/open/floor/plating/airless, /area/station/maintenance/starboard/aft) -"kiA" = ( -/obj/structure/musician/piano, -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) -"kiE" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "kiS" = ( /obj/structure/lattice, /turf/open/openspace, /area/station/hallway/primary/aft) -"kiT" = ( -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"kiY" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/spawner/random/entertainment/coin, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "kje" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -35655,6 +37768,10 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"kjg" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "kjh" = ( /obj/structure/table, /obj/item/restraints/handcuffs{ @@ -35663,6 +37780,27 @@ /obj/structure/sign/poster/ripped/directional/north, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"kjn" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 5; + pixel_x = -7 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"kjq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/clothing/glasses/cold, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) +"kjr" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/station/maintenance/starboard) "kjF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/junction/yjunction{ @@ -35677,31 +37815,37 @@ dir = 4 }, /area/station/science/ordnance/storage) -"kjN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "kka" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 8 +/obj/effect/turf_decal/tile/dark_green{ + dir = 1 }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "kkd" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/turf_decal/tile/bar{ - dir = 1 +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 }, -/obj/effect/turf_decal/tile/yellow{ +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"kkn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/urinal/directional/north, +"kki" = ( +/obj/item/pushbroom, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"kkw" = ( +/obj/machinery/door/airlock/external, +/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/science/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/aft) "kkC" = ( /obj/effect/turf_decal/trimline/red/corner{ dir = 4 @@ -35734,19 +37878,15 @@ /obj/machinery/computer/security/telescreen/rd/directional/east, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"kkM" = ( -/obj/effect/turf_decal/siding, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, +"kkQ" = ( +/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 + dir = 9 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "kkT" = ( /obj/structure/railing/corner/end/flip{ dir = 4 @@ -35760,15 +37900,12 @@ /turf/closed/wall, /area/station/security/eva) "klc" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/blue/filled/shrink_cw, +/obj/effect/turf_decal/trimline/blue/filled/shrink_ccw{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "kld" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -35797,6 +37934,12 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"klh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kll" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 4 @@ -35806,19 +37949,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/service/library) -"klp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"klx" = ( -/obj/structure/table, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/spawner/random/techstorage/rnd_secure_all, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "kly" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -35829,6 +37959,30 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"klA" = ( +/obj/machinery/button/door/directional/south{ + id = "ceprivacy"; + name = "Privacy Shutters Control"; + pixel_y = -2; + pixel_x = -7 + }, +/obj/machinery/button/door/directional/west{ + id = "transitlockdown"; + name = "Transit Tube Lockdown"; + pixel_x = 7; + pixel_y = -2 + }, +/obj/machinery/button/door{ + id = "securestoragecw"; + name = "Secure Storage"; + pixel_y = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding/yellow/end{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "klB" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -35844,19 +37998,17 @@ /turf/open/floor/catwalk_floor, /area/station/engineering/engine_smes) "klI" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/window/right/directional/west{ - name = "Medical Desk"; - req_access = list("medical") +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Staff Entrance" }, +/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/white/textured_large, /area/station/medical/medbay/central) "klJ" = ( @@ -35866,6 +38018,17 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) +"klQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"klU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/closet/secure_closet/miner, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "kmh" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner/end/flip{ @@ -35873,11 +38036,25 @@ }, /turf/open/space/openspace, /area/space/nearstation) -"kmm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/engineering/lobby) +"kml" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/effect/spawner/random/bedsheet{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/station/commons/dorms) +"kmv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"kmz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "kmD" = ( /obj/machinery/light_switch/directional/north, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -35904,7 +38081,7 @@ preset_destination_names = list("2"="AI Maintenance","3"="AI Stowed") }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kmH" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -35914,27 +38091,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/science/explab) -"kmL" = ( -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/plunger{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kmQ" = ( -/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/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "kmS" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 @@ -35945,15 +38101,29 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/station/security/brig) -"kmY" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance, -/turf/open/space/basic, -/area/space/nearstation) +"kmT" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Incinerator"; + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kmZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"knf" = ( +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/structure/tank_holder/extinguisher, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west{ + pixel_x = -22 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) "knj" = ( /obj/structure/table/glass, /obj/item/stack/package_wrap{ @@ -35964,6 +38134,13 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"knp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/machinery/duct, +/obj/structure/sign/departments/maint/directional/east, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "knq" = ( /obj/effect/turf_decal/tile/dark/half/contrasted{ dir = 1 @@ -35981,7 +38158,7 @@ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kns" = ( /obj/effect/spawner/random/maintenance/two, /obj/structure/rack, @@ -36016,8 +38193,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/autoname/directional/east, +/obj/machinery/light/directional/east, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "knI" = ( @@ -36031,9 +38207,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"knN" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) +"knT" = ( +/obj/machinery/light/directional/north, +/turf/open/openspace, +/area/station/service/kitchen) +"knW" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) "knY" = ( /obj/structure/flora/tree/jungle/small, /obj/structure/flora/bush/sparsegrass/style_random, @@ -36059,12 +38240,6 @@ /obj/effect/spawner/random/trash/graffiti, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/science/explab) "kow" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -36075,22 +38250,28 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"koC" = ( -/obj/structure/table, -/obj/item/flashlight/lamp{ - pixel_y = 10 +"kox" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 }, -/obj/item/folder/yellow{ - pixel_x = 4 +/obj/effect/turf_decal/siding/yellow{ + dir = 6 }, /turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/engineering/atmos/upper) "koE" = ( /obj/structure/railing/corner{ dir = 1 }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"koH" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/hangover, +/obj/machinery/duct, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "koM" = ( /obj/structure/table/wood/poker, /obj/machinery/light/directional/south, @@ -36120,17 +38301,10 @@ dir = 4 }, /area/station/cargo/bitrunning/den) -"koY" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/medical/storage) -"kpc" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, +"kpl" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/station/engineering/atmos/project) +/area/station/maintenance/starboard) "kpz" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -36151,11 +38325,21 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) -"kpJ" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/power/tracker, -/turf/open/space/basic, -/area/station/solars/port/aft) +"kpF" = ( +/obj/structure/railing, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -12; + pixel_y = 7 + }, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/private) "kpS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -36195,85 +38379,61 @@ /obj/effect/decal/cleanable/confetti, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"kqk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 +"kqh" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) "kqm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/station/medical/cryo) -"kqt" = ( -/obj/effect/turf_decal/siding/brown{ +/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/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"kqs" = ( /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/starboard/fore) +"kqu" = ( +/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/duct, /turf/open/floor/iron, /area/station/commons/dorms) "kqv" = ( /turf/closed/wall/r_wall, /area/station/maintenance/port/aft) -"kqF" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"kqH" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "kqI" = ( /obj/machinery/photocopier, /turf/open/floor/glass, /area/station/security/brig) "kra" = ( -/obj/structure/lattice/catwalk, -/obj/structure/closet/l3closet, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, /obj/machinery/status_display/ai/directional/west, +/obj/structure/railing, /turf/open/openspace, -/area/station/medical/storage) -"krk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, +/area/station/medical/medbay/central) +"krs" = ( +/obj/machinery/newscaster/directional/east, /obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"krK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "krL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36283,6 +38443,11 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/brig) +"krM" = ( +/obj/effect/spawner/random/trash/mopbucket, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "krQ" = ( /obj/structure/table/wood, /obj/item/storage/fancy/candle_box{ @@ -36305,7 +38470,7 @@ }, /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ksa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36341,8 +38506,26 @@ "kso" = ( /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, /area/station/cargo/storage) +"ksr" = ( +/obj/structure/railing/corner, +/obj/structure/table/wood, +/obj/item/camera{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/tape, +/obj/item/pen/fourcolor{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/private) "kst" = ( /obj/structure/railing, /obj/effect/turf_decal/siding/wood, @@ -36361,11 +38544,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/science/cytology) +"ksJ" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/central/upper) "ksM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/disposal) "ksO" = ( @@ -36385,18 +38569,15 @@ /turf/open/space/openspace, /area/space/nearstation) "ksX" = ( -/obj/machinery/chem_mass_spec, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 + dir = 8 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 + dir = 8 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ +/obj/structure/chair/office/light{ dir = 8 }, -/obj/machinery/digital_clock/directional/west, -/obj/machinery/light/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "ktd" = ( @@ -36413,15 +38594,6 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron, /area/station/science/breakroom) -"kth" = ( -/obj/structure/sign/warning/hot_temp/directional/east, -/obj/machinery/camera/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/engineering/lobby) "kto" = ( /obj/machinery/door/airlock/security{ name = "Armory" @@ -36434,7 +38606,7 @@ name = "Armory" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ktp" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -36450,29 +38622,20 @@ /obj/structure/marker_beacon/burgundy, /turf/open/space/basic, /area/space/nearstation) -"ktt" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "ktu" = ( /obj/item/restraints/legcuffs/beartrap/prearmed, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"ktz" = ( -/obj/structure/table, -/obj/item/lipstick/purple{ - pixel_x = -2; - pixel_y = -2 +"ktD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 }, -/obj/item/clothing/mask/animal/horsehead{ - pixel_x = 4; - pixel_y = 15 +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ktF" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, @@ -36560,6 +38723,39 @@ }, /turf/open/floor/grass, /area/station/science/genetics) +"kuw" = ( +/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"kux" = ( +/obj/machinery/duct, +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) +"kuB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/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/engineering/maintenance, +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"kuL" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/table, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "kuS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -36568,37 +38764,25 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/central) "kuT" = ( -/obj/structure/sign/directions/engineering/directional/east{ - pixel_y = -1 - }, -/obj/structure/sign/directions/supply/directional/east{ - pixel_y = -7 - }, -/obj/structure/sign/directions/evac/directional/east{ - dir = 1; - pixel_y = 5 +/obj/structure/sign/directions/command/directional/north{ + dir = 4; + pixel_y = 0 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/hallway/primary/port) +"kuV" = ( +/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/dark/textured_large, +/area/station/maintenance/port) "kuX" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/interrogation) -"kvb" = ( -/obj/structure/railing/corner, -/obj/structure/railing, -/obj/structure/lattice/catwalk, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"kvl" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced/plasma, -/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/main) "kvm" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -36608,12 +38792,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kvo" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/commons/dorms) "kvq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -36657,6 +38835,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "kvN" = ( @@ -36667,6 +38846,20 @@ }, /turf/open/floor/plating/airless, /area/station/hallway/secondary/entry) +"kvV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"kwb" = ( +/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ + name = "Fuel Pump" + }, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "kwe" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -36677,12 +38870,17 @@ /turf/open/floor/iron/dark, /area/station/science/ordnance) "kwh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/opposingcorners{ +/obj/effect/turf_decal/trimline/blue/line{ dir = 1 }, -/turf/open/floor/iron/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 4 + }, /area/station/medical/cryo) "kwm" = ( /obj/structure/stairs/north, @@ -36719,10 +38917,15 @@ /obj/machinery/rnd/production/circuit_imprinter/department/science, /turf/open/floor/iron/dark, /area/station/science/lobby) -"kwG" = ( -/obj/machinery/igniter/incinerator_atmos, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) +"kwE" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/table, +/obj/item/folder, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "kwO" = ( /obj/structure/sign/departments/aisat/directional/east, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -36740,12 +38943,33 @@ /turf/open/floor/iron/dark, /area/station/science/ordnance) "kwR" = ( -/obj/machinery/computer/crew{ - dir = 8 +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/obj/item/storage/medkit/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/brute, +/obj/item/storage/medkit/brute{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/machinery/door/window/right/directional/west{ + name = "First Aid Supplies"; + req_access = list("medical") + }, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"kwV" = ( +/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/plating, +/area/station/maintenance/starboard/fore/upper) "kwW" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 4 @@ -36761,7 +38985,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kxc" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/glass/coffee{ @@ -36777,6 +39001,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"kxd" = ( +/obj/item/biopsy_tool{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/starboard) "kxf" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; @@ -36806,12 +39038,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/lab) -"kxA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"kxx" = ( +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "kxE" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, @@ -36819,39 +39052,38 @@ "kxG" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "kxL" = ( -/obj/item/emergency_bed, -/obj/item/emergency_bed{ - pixel_y = 3 - }, -/obj/item/emergency_bed{ - pixel_y = 3 +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" }, -/obj/item/emergency_bed{ - pixel_y = 6 +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/cryo) +"kxW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table/reinforced, +/obj/item/pai_card{ + pixel_x = 6; + pixel_y = 12 }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = -3; + pixel_x = -5 }, -/obj/structure/rack, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) +/turf/open/openspace, +/area/station/cargo/storage) "kxY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/west, +/obj/effect/spawner/random/trash/graffiti, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"kyg" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "kyi" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating/airless, @@ -36863,6 +39095,15 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"kyp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/south, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "kyq" = ( /obj/structure/ladder, /obj/machinery/airalarm/directional/west, @@ -36879,8 +39120,26 @@ /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"kyG" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "Privacy Shutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/cmo) +"kyH" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/medical/medbay/central) "kyJ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -36901,12 +39160,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"kyZ" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "kza" = ( /obj/machinery/vending/wardrobe/coroner_wardrobe, /obj/structure/extinguisher_cabinet/directional/north, @@ -36920,17 +39173,17 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kzd" = ( /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, /area/station/maintenance/port/greater) "kzf" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L6" +/obj/effect/turf_decal/siding/blue{ + dir = 1 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/openspace, +/area/station/command/meeting_room/council) "kzg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, @@ -36943,6 +39196,16 @@ /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/science/lobby) +"kzy" = ( +/obj/item/trash/can{ + pixel_x = -8 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"kzB" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/hallway/primary/fore) "kzC" = ( /obj/structure/chair{ dir = 4; @@ -36954,12 +39217,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"kzG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) "kzL" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -36968,11 +39225,40 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/science/research) +"kzW" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_x = 12; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "revolution"; + name = "graffiti"; + paint_colour = "#FF0000"; + pixel_y = 32 + }, +/obj/item/ammo_casing/spent{ + pixel_x = 8; + pixel_y = 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/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "kzX" = ( /obj/effect/spawner/random/contraband/prison, /obj/structure/rack, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"kAc" = ( +/obj/effect/spawner/random/structure/tank_holder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "kAh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -36986,39 +39272,21 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"kAq" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kAr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +"kAn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "kAu" = ( /obj/structure/lattice/catwalk, /obj/structure/chair/comfy, /turf/open/openspace, /area/station/maintenance/port/aft) -"kAx" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecomms Storage" - }, -/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/engineering/tech_storage, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "kAy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37030,10 +39298,13 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, /area/station/commons/vacant_room/office) -"kAV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +"kAQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "kAX" = ( /obj/structure/railing{ dir = 4 @@ -37083,30 +39354,19 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kBo" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/ai/satellite/interior) "kBq" = ( /obj/structure/railing/corner, -/obj/item/wrench/medical, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "kBs" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"kBx" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "kBA" = ( /obj/structure/mirror/directional/north{ pixel_y = 31 @@ -37121,22 +39381,56 @@ specialfunctions = 4 }, /obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) +"kBB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Office Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "kBF" = ( /turf/open/floor/engine/hull/air, /area/station/hallway/primary/aft) -"kBG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +"kCa" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/bot_white, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"kCh" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"kCk" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"kCp" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 }, -/obj/item/radio/intercom/directional/west, +/obj/structure/closet/secure_closet/chemical, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/warning/explosives/directional/west, /turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"kCp" = ( -/obj/structure/lattice, -/turf/open/openspace, /area/station/medical/chemistry) +"kCz" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "kCE" = ( /obj/structure/table, /obj/item/stock_parts/subspace/treatment, @@ -37175,19 +39469,12 @@ dir = 8 }, /area/station/hallway/primary/fore) -"kDa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/railing/corner/end{ - dir = 4 - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) "kDc" = ( -/obj/structure/statue/sandstone/venus{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/machinery/wall_healer/directional/north, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "kDe" = ( /obj/structure/altar/of_gods, /obj/structure/noticeboard/directional/north, @@ -37195,6 +39482,16 @@ dir = 4 }, /area/station/service/chapel) +"kDx" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/aisat/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "kDC" = ( /obj/structure/railing/corner/end{ dir = 1 @@ -37205,7 +39502,9 @@ /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "kDF" = ( /obj/structure/table/reinforced, @@ -37219,31 +39518,43 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) -"kDO" = ( -/turf/closed/wall/r_wall, -/area/station/medical/morgue) "kDP" = ( -/obj/structure/sink/directional/west, -/obj/effect/turf_decal/tile/blue/opposingcorners{ +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/corner{ dir = 1 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ - dir = 9 +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 }, -/turf/open/floor/iron/dark, /area/station/medical/cryo) "kDQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/sandbags, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"kEf" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "kEg" = ( /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/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kEh" = ( /obj/structure/lattice, /obj/structure/disposalpipe/segment{ @@ -37281,14 +39592,6 @@ dir = 8 }, /area/station/hallway/primary/central) -"kEq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "kEw" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -37299,32 +39602,44 @@ name = "Holodeck Projector Floor" }, /area/station/holodeck/rec_center) -"kEy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 +"kEB" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/button/door/directional/north{ - id = "abandoned_kitchen" +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kES" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/chair{ - dir = 1; + dir = 4; pixel_y = -2 }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/effect/landmark/start/paramedic, +/turf/open/floor/glass, +/area/station/medical/medbay/central) +"kEC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kFa" = ( +/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/lobby) +"kEG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/lattice/catwalk, -/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/openspace, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central/upper) +"kEY" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/commons/locker) "kFc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37336,7 +39651,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kFt" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -37356,27 +39671,21 @@ /obj/structure/curtain, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"kFP" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/start/hangover/closet, +"kFN" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, /turf/open/floor/wood, -/area/station/commons/storage/tools) -"kFQ" = ( -/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, +/area/station/maintenance/starboard) +"kGg" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight{ + pixel_y = 14 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kFS" = ( -/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, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor, -/turf/open/floor/catwalk_floor, -/area/station/engineering/lobby) +/area/station/maintenance/starboard/central/upper) "kGD" = ( /obj/machinery/air_sensor/nitrogen_tank, /obj/structure/window/reinforced/plasma/spawner/directional/south, @@ -37410,12 +39719,24 @@ }, /turf/open/openspace, /area/station/maintenance/port) -"kHj" = ( -/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) +"kGQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_machine, +/obj/machinery/vending/tool, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"kGV" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos/upper) +"kHe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "kHv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37429,35 +39750,49 @@ name = "MiniSat Airlock Access" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kHy" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/multitool{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/hand_labeler_refill{ - pixel_x = 7; - pixel_y = -2 +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/obj/machinery/status_display/evac/directional/north, +/obj/structure/sign/poster/random/directional/north, /turf/open/floor/iron, /area/station/cargo/storage) +"kHD" = ( +/obj/effect/turf_decal/tile/dark_green/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 4; + name = "Ports To Space" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"kHF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"kHH" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "kHU" = ( /obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kHY" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) "kHZ" = ( /obj/effect/spawner/random/medical/supplies, /obj/structure/table, @@ -37468,21 +39803,28 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/primary/aft) +"kIr" = ( +/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/duct, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron, +/area/station/commons/dorms) "kIt" = ( -/obj/effect/turf_decal/siding/blue/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/white/textured_large, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "kIw" = ( -/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/supply/cargo_bay, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1 +/obj/effect/turf_decal/trimline/brown/filled, +/obj/structure/chair/office/light{ + dir = 8 }, /turf/open/floor/iron, /area/station/cargo/storage) @@ -37500,6 +39842,21 @@ }, /turf/open/floor/carpet, /area/station/security/detectives_office) +"kID" = ( +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) +"kIE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"kIL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/obj/structure/sign/poster/official/pda_ad/directional/west, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "kIW" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -37511,6 +39868,13 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"kJk" = ( +/obj/structure/chair/stool/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"kJl" = ( +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "kJw" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -37519,6 +39883,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"kJz" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "kJF" = ( /obj/structure/table, /obj/item/stock_parts/subspace/ansible, @@ -37532,6 +39901,16 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) +"kJG" = ( +/obj/structure/sink/kitchen/directional/east{ + name = "sink" + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"kJI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) "kJO" = ( /obj/structure/railing, /obj/effect/turf_decal/siding/wood, @@ -37560,6 +39939,18 @@ /obj/structure/mannequin/wood, /turf/open/floor/wood, /area/station/service/library/printer) +"kKe" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/apc_control{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/stock_parts/power_store/cell{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) "kKj" = ( /obj/structure/chair/sofa/corner/brown{ dir = 4 @@ -37570,18 +39961,43 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron, /area/station/science/breakroom) +"kKn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "kKw" = ( /obj/structure/lattice/catwalk, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/construction) -"kKy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/water, -/area/station/maintenance/starboard/fore) +"kKB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) +"kKG" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "kKH" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) @@ -37598,6 +40014,16 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) +"kKU" = ( +/obj/item/book/granter/action/spell/smoke/lesser{ + name = "mysterious old book of cloud-chasing" + }, +/obj/structure/table/wood, +/obj/structure/light_construct/directional/east{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "kLe" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -37630,6 +40056,15 @@ /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"kLI" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, +/obj/effect/turf_decal/tile/yellow/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Chemical Storage" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/chem_storage) "kLL" = ( /obj/structure/cable, /turf/closed/wall, @@ -37640,16 +40075,28 @@ }, /turf/open/floor/wood, /area/station/command/corporate_showroom) -"kLV" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +"kMd" = ( +/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/item/stack/cable_coil, +/obj/structure/closet/crate/engineering/electrical, +/turf/open/floor/glass/reinforced, +/area/station/solars/starboard/fore) "kMj" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) @@ -37665,6 +40112,35 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/tcommsat/server) +"kMl" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/east, +/obj/item/toy/plush/lizard_plushie/green{ + name = "Endures-The-Blast"; + pixel_y = 10; + pixel_x = -8 + }, +/obj/structure/sign/warning/explosives/directional/east, +/obj/structure/closet/crate/robust{ + name = "Risk Management Supply Crate"; + anchored = 1 + }, +/obj/item/clothing/suit/utility/bomb_suit/white{ + pixel_x = 5; + pixel_y = 5; + name = "Personal Liability Mitigation Suit" + }, +/obj/item/clothing/head/utility/bomb_hood/white{ + pixel_x = -7; + pixel_y = -2; + name = "Cranial Hazard Guard" + }, +/obj/item/clothing/mask/gas{ + pixel_x = 5; + name = "Controlled Atmosphere Mask" + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) "kMq" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -37683,6 +40159,13 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/port) +"kMF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "kMI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/fax{ @@ -37706,9 +40189,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"kNc" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/lobby) "kNf" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"kNj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "kNl" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37723,6 +40220,20 @@ }, /turf/open/floor/iron/textured, /area/station/security/brig) +"kNE" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "kNI" = ( /obj/structure/lattice/catwalk, /obj/effect/decal/cleanable/glass, @@ -37743,6 +40254,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"kOi" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/emcloset, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) +"kOj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/dark/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "kOk" = ( /turf/closed/wall/r_wall, /area/station/engineering/lobby) @@ -37756,6 +40281,14 @@ /obj/effect/mapping_helpers/airlock/access/all/science/general, /turf/open/floor/plating, /area/station/science/research) +"kOo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "kOv" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, @@ -37769,10 +40302,13 @@ /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/flip{ +/obj/structure/disposalpipe/sorting/mail{ dir = 2 }, -/obj/effect/mapping_helpers/mail_sorting/science/robotics, +/obj/effect/mapping_helpers/mail_sorting/medbay/virology, +/obj/effect/mapping_helpers/mail_sorting/medbay/general, +/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry, +/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office, /turf/open/floor/iron, /area/station/hallway/primary/aft) "kOI" = ( @@ -37780,6 +40316,10 @@ /obj/effect/decal/cleanable/plasma, /turf/open/floor/iron, /area/station/construction/storage_wing) +"kOK" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/plating/airless, +/area/station/maintenance/aft) "kOO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -37819,6 +40359,13 @@ }, /turf/open/floor/plating, /area/station/cargo/storage) +"kPe" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/duct, +/turf/open/floor/grass, +/area/station/commons/dorms) "kPg" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -37834,53 +40381,48 @@ /obj/machinery/light/small/red/dim/directional/west, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) -"kPF" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +"kPC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"kPD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/item/mop, +/obj/item/grenade/chem_grenade/cleaner, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"kPF" = ( /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/eva) +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "kPH" = ( /obj/machinery/firealarm/directional/west, /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/wood/large, /area/station/medical/psychology) "kPI" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase/secure{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/head/soft/blue{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/neck/stethoscope{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) -"kPL" = ( -/obj/effect/landmark/transport/transport_id{ - specific_transport_id = "catwalk_engi" - }, -/obj/structure/transport/linear{ - radial_travel = 0 +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" }, -/turf/open/openspace, -/area/station/engineering/break_room) +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "kPN" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/checkpoint/customs) +"kPO" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "kPQ" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -37908,6 +40450,16 @@ }, /turf/open/openspace, /area/station/command/gateway) +"kPR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kPX" = ( +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "kPZ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -37930,42 +40482,7 @@ /obj/structure/toilet, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"kQf" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/rack, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/under/color/red, -/obj/item/clothing/neck/tie/red{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/soft/red, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kQh" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/storage/box/masks{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/effect/turf_decal/tile/blue/full, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","medbay"); - c_tag = "Medbay - Central West" - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/area/station/ai/satellite/foyer) "kQn" = ( /obj/structure/sign/picture_frame/portrait{ pixel_y = 33 @@ -37976,17 +40493,6 @@ /obj/structure/table, /turf/open/floor/iron/dark/smooth_edge, /area/station/service/library) -"kQy" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "kQC" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line, /obj/effect/turf_decal/tile/dark_blue{ @@ -37995,26 +40501,17 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/cytology) -"kQD" = ( -/obj/effect/spawner/structure/window, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kQV" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kRd" = ( -/obj/machinery/door/airlock/maintenance, +"kQE" = ( +/obj/item/flashlight/lamp/green{ + pixel_y = 5 + }, +/obj/structure/table/wood, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/obj/effect/spawner/random/food_or_drink/booze{ + pixel_x = -7 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/cmo) "kRf" = ( /obj/structure/cable/layer3, /obj/structure/cable, @@ -38024,7 +40521,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "kRk" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -38037,6 +40534,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"kRv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kRD" = ( /obj/effect/spawner/random/vending/snackvend, /obj/structure/disposalpipe/segment{ @@ -38058,20 +40559,33 @@ }, /turf/open/floor/iron/stairs/left, /area/station/hallway/secondary/construction) +"kRN" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/wall, +/area/station/maintenance/port) "kRR" = ( /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/prison) -"kSc" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/engine/hull/air, -/area/station/medical/medbay/central) +"kRX" = ( +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/maintenance/aft) "kSg" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/iron/stairs/medium, /area/station/science/cytology) +"kSk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) "kSo" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -38087,13 +40601,15 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "kSB" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/item/kirbyplants/organic/plant19{ - pixel_x = -6; - pixel_y = 2 +/obj/machinery/porta_turret/ai{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/structure/sign/plaques/kiddie{ + pixel_y = 32; + dir = 1 + }, +/turf/open/floor/circuit/red, +/area/station/ai/upload/chamber) "kSD" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end{ dir = 1 @@ -38102,35 +40618,31 @@ /obj/structure/flora/bush/jungle/b/style_2, /turf/open/floor/grass/fairy, /area/station/maintenance/hallway/abandoned_recreation) -"kSL" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - 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/openspace, -/area/station/engineering/lobby) -"kSN" = ( -/obj/structure/railing{ - dir = 6 +"kSI" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + name = "SS13: Common Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/meta; + shuttle_id = "commonmining_home"; + width = 7 }, -/turf/open/floor/grass, -/area/station/hallway/primary/starboard) +/turf/open/floor/plating, +/area/station/hallway/secondary/construction) "kSP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"kSS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 8 +"kSR" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "kSY" = ( /obj/structure/table, /obj/item/blood_filter{ @@ -38145,22 +40657,23 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/wood/large, /area/station/hallway/primary/central) +"kTe" = ( +/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/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/engineering/lobby) "kTi" = ( /turf/open/floor/engine/vacuum, /area/station/science/ordnance/bomb) -"kTq" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) +"kTm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "kTw" = ( /turf/closed/wall/r_wall, /area/station/security/brig) @@ -38194,25 +40707,24 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"kTN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/item/storage/medkit/toxin, -/obj/structure/table, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +"kTQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "kTW" = ( /obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) -"kUf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 +"kUk" = ( +/obj/effect/turf_decal/siding{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "kUq" = ( /turf/closed/wall/r_wall, /area/station/maintenance/port) @@ -38235,14 +40747,14 @@ "kUO" = ( /turf/open/openspace, /area/station/security/courtroom) -"kUW" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 1; - initialize_directions = 1 +"kVf" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) "kVj" = ( /obj/effect/turf_decal/bot_white, /turf/open/floor/iron/dark/textured_large, @@ -38251,24 +40763,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"kVu" = ( -/obj/structure/table, -/obj/item/stack/medical/mesh{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 4 - }, -/obj/item/stack/medical/suture{ - pixel_x = -1; - pixel_y = -12 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "kVE" = ( /obj/machinery/power/solar_control, /obj/structure/cable, @@ -38310,10 +40804,10 @@ name = "Medbay Maintenance" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/medical/abandoned) "kVV" = ( @@ -38322,6 +40816,16 @@ }, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) +"kVZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) "kWe" = ( /obj/structure/table, /obj/item/hfr_box/corner{ @@ -38348,18 +40852,14 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/cargo/storage) -"kWo" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 +"kWp" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "kWr" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -38367,31 +40867,34 @@ }, /turf/open/floor/iron, /area/station/science/explab) +"kWs" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "kWv" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 6 - }, +/obj/structure/cable, /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/textured_large, -/area/station/medical/medbay/central) -"kWx" = ( -/obj/structure/table/reinforced, -/obj/item/wirecutters, -/obj/item/screwdriver, -/obj/item/stack/cable_coil, -/obj/item/crowbar, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "kWF" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/firealarm/directional/east, -/turf/open/openspace, -/area/station/medical/storage) +/obj/machinery/airalarm/directional/east, +/obj/machinery/iv_drip, +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms/room_a) +"kWL" = ( +/obj/item/cigbutt{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "kWO" = ( /obj/structure/broken_flooring/singular/directional/east, /turf/open/floor/plating, @@ -38405,27 +40908,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kXa" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor/heavy, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"kXt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"kXy" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/medical_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/area/station/ai/satellite/interior) "kXB" = ( /obj/effect/turf_decal/delivery, /obj/structure/table, @@ -38443,9 +40926,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"kXI" = ( -/turf/closed/wall/r_wall, -/area/station/medical/cryo) "kXQ" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -38454,14 +40934,16 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron, /area/station/science/lab) -"kXT" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" +"kXW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/station/engineering/storage_shared) +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "kYd" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -38469,16 +40951,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/robotics) -"kYe" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) "kYf" = ( /turf/open/floor/engine/o2, /area/station/engineering/atmos/upper) @@ -38486,35 +40958,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured_large, /area/station/science/robotics/lab) +"kYk" = ( +/obj/structure/girder, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"kYz" = ( +/obj/structure/sign/warning/yes_smoking/circle/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "kYK" = ( -/obj/structure/closet/crate/science, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/item/reagent_containers/cup/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/cup/bottle/epinephrine{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/reagent_containers/cup/bottle/multiver{ - pixel_x = -2; - pixel_y = -7 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = 2; - pixel_y = -11 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, +/obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"kYM" = ( +/obj/structure/table/reinforced, +/obj/item/toy/redbutton{ + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "kYN" = ( /obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, @@ -38544,17 +41008,41 @@ /obj/structure/flora/rock/pile/jungle/style_5, /obj/structure/flora/grass/jungle/b/style_5, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kZo" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"kZq" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"kZs" = ( +/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, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "kZv" = ( /obj/structure/broken_flooring/pile/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"kZw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kZV" = ( /obj/machinery/door/airlock/security/glass{ name = "Courtroom Access" @@ -38587,39 +41075,6 @@ /obj/structure/broken_flooring/side/always_floorplane/directional/north, /turf/open/floor/carpet/blue, /area/station/maintenance/port/aft) -"lai" = ( -/obj/effect/mine/explosive, -/obj/effect/decal/cleanable/wrapping{ - pixel_y = 3 - }, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/stack/package_wrap{ - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"laj" = ( -/obj/item/book/granter/action/spell/smoke/lesser{ - name = "mysterious old book of cloud-chasing" - }, -/obj/structure/table/wood, -/obj/structure/light_construct/directional/east{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"lan" = ( -/obj/machinery/door/airlock/engineering/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/general, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "lav" = ( /obj/machinery/power/shieldwallgen/xenobiologyaccess, /obj/structure/window/reinforced/spawner/directional/south, @@ -38633,10 +41088,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) +"laz" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "laB" = ( /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"laC" = ( +/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) "laD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38646,38 +41119,12 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"laK" = ( -/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, -/area/station/commons/dorms) -"laQ" = ( -/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/commons/fitness/recreation) -"lbe" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, +"laO" = ( +/obj/structure/lattice/catwalk, /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/science/lab) +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/space/openspace, +/area/space/nearstation) "lbh" = ( /obj/structure/chair{ dir = 8 @@ -38691,6 +41138,21 @@ }, /turf/open/floor/iron/chapel, /area/station/service/chapel) +"lbk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard) +"lbp" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "lbw" = ( /obj/structure/closet/lasertag, /obj/effect/decal/cleanable/dirt, @@ -38717,78 +41179,61 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"lbN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"lbJ" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/maintenance/aft) "lbT" = ( -/obj/effect/turf_decal/siding/green, /obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/smooth_large, +/obj/effect/turf_decal/tile/dark_green{ + dir = 8 + }, +/turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"lbW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "lca" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/medical/virology, /obj/machinery/door/airlock/virology/glass{ name = "Entrance to Malpractice Tower" }, +/obj/machinery/door/firedoor, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"lcb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) "lce" = ( /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, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lcs" = ( -/obj/item/storage/box/aquarium_props{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lcy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lcE" = ( -/obj/structure/lattice/catwalk, -/obj/structure/closet/emcloset, -/obj/effect/spawner/random/maintenance, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"lcN" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/hallway/primary/aft) +"lcs" = ( +/obj/item/storage/box/aquarium_props{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "lcO" = ( /obj/structure/table, /obj/item/clothing/suit/hazardvest, /turf/open/floor/wood, /area/station/commons/storage/tools) +"lcS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "lcU" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /obj/machinery/meter, @@ -38809,29 +41254,49 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"ldp" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/sorting) +"ldr" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/structure/grille, +/obj/structure/grille/broken, +/turf/open/space/openspace, +/area/space/nearstation) "ldv" = ( /obj/machinery/status_display/ai/directional/south, /obj/structure/closet/emcloset, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ldL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - n2o Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos/upper) +/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/textured_large, +/area/station/medical/virology) "ldN" = ( /obj/structure/lattice/catwalk, /obj/machinery/oven/range, /turf/open/openspace, /area/station/service/kitchen) +"ldV" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/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, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "ldX" = ( /obj/machinery/door/airlock{ - id_tag = "commissarydoor"; + id_tag = "officecommissarydoor"; name = "Vacant Office" }, /obj/effect/turf_decal/tile/green/fourcorners, @@ -38855,11 +41320,10 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) "leu" = ( -/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/meeting_room/council) +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "ley" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -38898,20 +41362,30 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/tcommsat/server) -"leJ" = ( -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","medbay"); - c_tag = "Medbay - Upper Storage East Hallway" +"leK" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/turf/open/openspace, -/area/station/medical/chemistry) +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "leL" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/rd) -"leR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"leN" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat Space Access Airlock" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "AI-Transit-Tube-Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/minisat, +/obj/machinery/door/poddoor/preopen{ + id = "transitlockdown" + }, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) +"leR" = ( /turf/open/floor/wood, /area/station/maintenance/starboard/central) "leS" = ( @@ -38920,87 +41394,70 @@ /area/station/science/breakroom) "leT" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/structure/closet/wardrobe/miner, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 + dir = 8 }, +/obj/machinery/vending/wardrobe/cargo_wardrobe, /turf/open/floor/iron, -/area/station/cargo/miningoffice) -"lff" = ( -/obj/machinery/power/terminal{ - dir = 1; - cable_layer = 1 - }, -/obj/structure/cable/multilayer/layer1, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) +/area/station/cargo/storage) "lfi" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) -"lfx" = ( -/obj/effect/landmark/event_spawn, +/area/station/security/armory) +"lfl" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/service/chapel) +/area/station/medical/medbay/central) "lfD" = ( /obj/structure/cable, /obj/machinery/power/smes/full, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"lfG" = ( -/obj/structure/stairs/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/stairs/medium, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/chamber) "lfK" = ( /obj/structure/ladder, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"lfT" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/starboard/aft) +"lfX" = ( +/obj/machinery/light/directional/south, +/obj/structure/lattice/catwalk, +/obj/machinery/airalarm/directional/south, +/turf/open/openspace, +/area/station/security/checkpoint/supply) "lgb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/commons/storage/primary) -"lge" = ( -/turf/open/floor/wood, -/area/station/engineering/lobby) +"lgg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "abandoned_kitchen"; + name = "Kitchen Shudders"; + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "lgi" = ( /obj/structure/chair/office, /turf/open/floor/carpet/stellar, /area/station/service/library) "lgo" = ( -/obj/item/storage/box/silver_ids{ - pixel_x = -4; - pixel_y = 21 - }, -/obj/item/storage/box/ids{ - pixel_x = -14; - pixel_y = 15 - }, -/obj/item/storage/box/pdas{ - pixel_x = 8; - pixel_y = 17 - }, /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/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) +"lgt" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/solars/starboard/fore) "lgv" = ( /obj/item/hfr_box/corner{ pixel_x = -10; @@ -39008,19 +41465,27 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"lgx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "lgA" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space/openspace, /area/space/nearstation) -"lgF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/gravity_generator) -"lgN" = ( -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +"lgC" = ( +/obj/machinery/light/small/directional/west, +/turf/open/openspace, +/area/station/engineering/storage/tech) +"lgK" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/office) "lgV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -39034,13 +41499,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/construction/storage_wing) -"lgZ" = ( -/obj/item/pickaxe{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "lhg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39051,23 +41509,31 @@ /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/machinery/computer/cargo/request{ - dir = 8 +/obj/machinery/light/directional/east, +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 }, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/green/opposingcorners{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 1 }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"lhq" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "lhw" = ( /turf/open/floor/glass/reinforced, /area/station/science/ordnance) "lhy" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/event_spawn, @@ -39082,22 +41548,28 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"lhX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +"lhJ" = ( +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/turf/open/floor/iron/smooth, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) +"lhP" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/closed/wall/r_wall, /area/station/engineering/atmos/upper) -"lhY" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" - }, -/obj/structure/railing{ +"lhR" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"lhY" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, /turf/open/floor/iron, /area/station/cargo/miningoffice) "lia" = ( @@ -39114,16 +41586,17 @@ /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark/textured_large, /area/station/science/robotics/lab) +"lik" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/locker) "lim" = ( /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"lio" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) "liy" = ( /obj/item/kirbyplants/random, /obj/item/radio/intercom/directional/south, @@ -39135,6 +41608,10 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"liE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) "liH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/graffiti, @@ -39146,14 +41623,32 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"liY" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room" +"liN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/firecloset, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"liP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Virology Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, -/area/station/engineering/atmos/project) +/area/station/maintenance/port) +"lja" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "ljc" = ( /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) @@ -39162,13 +41657,25 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/hallway/secondary/entry) -"ljh" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/turf/open/openspace, -/area/station/engineering/lobby) "lji" = ( /turf/closed/wall/r_wall, /area/station/security/evidence) +"ljq" = ( +/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/medical/pharmacy, +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/full, +/obj/effect/mapping_helpers/airlock_note_placer{ + note_info = "Looking for your chem factory area? Go upstairs and you will find it above the Pharmacy. You also have a new Controlled Hazard Chamber"; + note_name = "Projects" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "ljt" = ( /obj/structure/chair/office{ dir = 8 @@ -39192,15 +41699,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/office) -"ljW" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargocatwalkmaint" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "ljY" = ( /obj/structure/lattice/catwalk, /obj/item/clothing/mask/gas/clown_hat{ @@ -39218,11 +41716,21 @@ /obj/structure/closet/crate/cardboard, /turf/open/openspace, /area/station/maintenance/port/aft) +"lkf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "lkj" = ( -/obj/structure/lattice/catwalk, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, /obj/structure/cable, -/turf/open/water, -/area/station/maintenance/port/fore) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) "lkt" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -39241,7 +41749,7 @@ /area/station/security/prison/mess) "lkC" = ( /obj/machinery/light/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "lkP" = ( /obj/effect/turf_decal/bot/right, @@ -39253,31 +41761,31 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"llg" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"llh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 +"lle" = ( +/obj/structure/curtain/cloth, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/patients_rooms/room_a) +"llf" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/east, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 7 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/yellow, +/obj/item/stack/package_wrap, /turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/commons/storage/primary) "lll" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" + }, +/obj/structure/cable, /turf/open/floor/plating, /area/station/command/heads_quarters/captain/private) -"llv" = ( -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/port/fore) "llA" = ( /obj/machinery/door/airlock/external{ name = "Arrival Airlock"; @@ -39288,6 +41796,16 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"llC" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/analyzer, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "llD" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -39298,21 +41816,51 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"llG" = ( +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/meter{ + name = "N2O meter" + }, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "N2O Multideck Adapter"; + dir = 2 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "llK" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, /turf/open/floor/iron/freezer, /area/station/engineering/atmos/pumproom) +"llM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"llO" = ( +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/obj/machinery/elevator_control_panel/directional/south{ + linked_elevator_id = "catwalk_engi"; + preset_destination_names = list("2"="Lower Engine","3"="Upper Engine.") + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "llP" = ( -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 }, -/obj/docking_port/stationary/mining_home{ +/obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "llY" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -39328,27 +41876,22 @@ }, /turf/open/floor/iron, /area/station/science/lab) -"lmt" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 +"lml" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 }, -/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/stack/package_wrap, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"lmv" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"lmn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "lmz" = ( /obj/machinery/conveyor{ dir = 4; @@ -39358,22 +41901,18 @@ id = "Disposal Exit"; name = "Disposal Exit Vent" }, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "lmA" = ( -/obj/structure/table/wood, -/obj/item/melee/chainofcommand, -/obj/machinery/recharger{ - pixel_y = 4 - }, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "lmB" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port) "lmH" = ( @@ -39387,6 +41926,12 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"lmR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 9 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "lmT" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/glass/reinforced, @@ -39398,28 +41943,21 @@ /area/station/security/detectives_office/private_investigators_office) "lnd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/science/directional/west{ - pixel_y = -6 - }, -/obj/structure/sign/directions/supply/directional/west{ - dir = 1 - }, -/obj/structure/sign/directions/engineering/directional/west{ - dir = 1; - pixel_y = 6 - }, /obj/effect/landmark/start/hangover, /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"lnf" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "lng" = ( /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/service/chapel) +"lnm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "lnv" = ( /obj/machinery/status_display/supply, /turf/closed/wall, @@ -39428,6 +41966,11 @@ /obj/machinery/light/cold/directional/west, /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) +"lnB" = ( +/obj/structure/sign/warning/docking/directional/south, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) "lnC" = ( /obj/machinery/light/directional, /obj/structure/railing{ @@ -39435,6 +41978,20 @@ }, /turf/open/floor/iron/dark, /area/station/security/range) +"lnE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=17-Dorms"; + location = "16-Laundry" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/commons/dorms) "lnH" = ( /obj/structure/railing{ dir = 1 @@ -39443,16 +42000,11 @@ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"lnO" = ( -/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/general, -/turf/open/floor/iron, -/area/station/engineering/main) "lnV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/layer3, @@ -39461,9 +42013,15 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"lnZ" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "loc" = ( -/obj/machinery/photocopier/prebuilt, /obj/machinery/light_switch/directional/south{ pixel_x = 3; pixel_y = -27 @@ -39472,27 +42030,32 @@ /obj/machinery/firealarm/directional/south{ pixel_x = -6 }, -/turf/open/floor/carpet, +/obj/structure/table/wood, +/obj/item/storage/box/ids{ + pixel_x = -14; + pixel_y = 8 + }, +/obj/item/storage/box/silver_ids{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/storage/box/pdas{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "lof" = ( /obj/structure/chair/office, /obj/effect/landmark/start/librarian, /turf/open/floor/wood, /area/station/service/library/printer) -"loh" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "lon" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 4 +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/turf/open/openspace, -/area/station/medical/cryo) +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) "low" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -39500,6 +42063,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/openspace, /area/station/science/research) +"loz" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "loI" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -39509,6 +42076,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"loJ" = ( +/obj/machinery/firealarm/directional/north, +/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) "loN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/multilayer/multiz, @@ -39516,12 +42089,22 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "loO" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"loR" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/poster/official/safety_internals/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "loT" = ( /obj/structure/disposalpipe/trunk/multiz, /turf/open/floor/plating, @@ -39542,14 +42125,29 @@ /obj/structure/fake_stairs/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"lps" = ( +/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/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "lpw" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma to Port" - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/structure/sign/poster/contraband/power/directional/north, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"lpA" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/maintenance, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) +"lpE" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "lpG" = ( /obj/machinery/door/poddoor/massdriver_chapel, /obj/machinery/atmos_shield_gen/active{ @@ -39560,6 +42158,23 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"lpW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/openspace, +/area/station/medical/virology) +"lpX" = ( +/obj/machinery/duct, +/obj/structure/sign/departments/maint/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"lqa" = ( +/obj/machinery/rnd/production/protolathe/department/engineering, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "lqd" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -39574,6 +42189,12 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"lqf" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "lqg" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -39585,14 +42206,6 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) -"lqp" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/machinery/chem_heater/withbuffer, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_corner, -/area/station/medical/pharmacy) "lqr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -39602,26 +42215,34 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"lqv" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/pipedispenser/disposal, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"lqw" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "lqA" = ( /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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/smooth, /area/station/engineering/main) "lqB" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/effect/landmark/firealarm_sanity, -/turf/open/openspace, -/area/station/hallway/primary/central) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/computer/accounting{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) "lqD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39666,44 +42287,18 @@ /turf/open/floor/engine, /area/station/science/xenobiology) "lqS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 4; - pixel_y = 11 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"lqZ" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 9 +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/machinery/iv_drip, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) -"lrb" = ( -/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/starboard/lesser) -"lrl" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "O2 Multideck Adapter"; +/obj/effect/turf_decal/trimline/brown/arrow_cw{ dir = 8 }, -/obj/machinery/meter{ - name = "O2 meter" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"lqZ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/medical/office) "lrp" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -39722,35 +42317,29 @@ /obj/structure/cable, /turf/open/floor/engine/hull, /area/space/nearstation) -"lrT" = ( -/turf/open/floor/glass, -/area/station/maintenance/starboard/lesser) -"lrW" = ( -/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/glass/reinforced, -/area/station/solars/starboard/fore) -"lse" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, +"lrQ" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"lrX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/engineering/supermatter/room/upper) +"lrZ" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"lsa" = ( +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "lsg" = ( /obj/machinery/door/window/brigdoor/security/cell/left/directional/east{ id = "Cell 2"; @@ -39762,10 +42351,51 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"lsl" = ( +/obj/machinery/mecha_part_fabricator/maint{ + name = "forgotten exosuit fabricator"; + drop_direction = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "lsp" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/glass/reinforced/airless, /area/station/solars/starboard/aft) +"lst" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) +"lsu" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) +"lsv" = ( +/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/catwalk_floor/iron_smooth, +/area/station/engineering/main) +"lsy" = ( +/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/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "lsA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -39774,17 +42404,6 @@ "lsQ" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"lsV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname/directional/east, -/obj/machinery/light_switch/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) "lsW" = ( /obj/structure/table, /obj/effect/spawner/random/maintenance, @@ -39801,17 +42420,21 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "ltE" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"ltG" = ( -/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"ltF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "ltQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39833,6 +42456,11 @@ "lul" = ( /turf/closed/wall/r_wall, /area/space/nearstation) +"lum" = ( +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) "luw" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -39865,20 +42493,24 @@ "luY" = ( /turf/closed/wall, /area/station/commons/storage/art) +"lva" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "space-outpost" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "lvj" = ( /obj/machinery/status_display/ai/directional/north, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/engine/hull/air, -/area/station/command/meeting_room/council) -"lvv" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/machinery/computer/rdconsole/unlocked, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "lvE" = ( -/obj/machinery/roulette, +/obj/machinery/modular_computer/preset/id{ + dir = 4 + }, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) "lvR" = ( @@ -39887,6 +42519,12 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/space/basic, /area/station/solars/starboard/aft) +"lwd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "lwf" = ( /turf/open/floor/glass, /area/station/security/brig) @@ -39897,11 +42535,14 @@ /turf/open/floor/iron/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lwu" = ( /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"lwA" = ( +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "lwB" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -39916,21 +42557,32 @@ /turf/open/floor/iron/white/smooth_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lwJ" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/red, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central) +"lxa" = ( +/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/yellow/opposingcorners{ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"lwT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ +/area/station/engineering/storage/tech) +"lxb" = ( +/obj/machinery/modular_computer/preset/id{ dir = 1 }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos/upper) +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "lxh" = ( /obj/machinery/newscaster/directional/north, /obj/machinery/deepfryer, @@ -39952,6 +42604,12 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"lxq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "lxs" = ( /obj/effect/turf_decal/trimline/yellow/corner, /obj/item/storage/toolbox/electrical{ @@ -39973,6 +42631,15 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) +"lxy" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/service_all, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "lxz" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/machinery/power/smes{ @@ -39980,16 +42647,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"lxJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"lxN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/foyer) "lxQ" = ( /obj/machinery/smartfridge/extract/preloaded, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -40007,18 +42665,24 @@ /obj/machinery/light/small/blacklight/directional/north, /turf/open/floor/carpet/stellar, /area/station/maintenance/hallway/abandoned_recreation) +"lxV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "lxW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 + dir = 8 }, -/obj/structure/closet/secure_closet/miner, /turf/open/floor/iron, /area/station/cargo/miningoffice) -"lxX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) "lxY" = ( /obj/effect/turf_decal/bot_white, /obj/effect/decal/cleanable/dirt, @@ -40027,37 +42691,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"lyd" = ( -/obj/structure/broken_flooring/corner/directional/east, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "lys" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/floor/engine, /area/station/service/hydroponics) -"lyw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/table, -/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/folder/yellow{ - pixel_x = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +"lyv" = ( +/turf/open/floor/plating/elevatorshaft, +/area/station/engineering/atmos) "lyx" = ( /obj/machinery/door/window/brigdoor/security/cell/left/directional/east{ id = "Cell 3"; @@ -40069,24 +42709,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"lyz" = ( -/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) "lyA" = ( /obj/structure/table, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - name = "AI Upload Turret Control"; - pixel_x = 25; - req_access = list("minisat") - }, /obj/item/book/manual/wiki/security_space_law{ pixel_x = -4; pixel_y = 2 @@ -40100,11 +42724,25 @@ pixel_y = 7 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/autoname/directional/north{ - network = list("aiupload") - }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) +"lyM" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Project Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor/heavy, +/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/engineering/storage_shared) +"lyO" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "lyP" = ( /obj/structure/railing/corner, /obj/structure/cable, @@ -40130,28 +42768,60 @@ }, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"lzg" = ( +/obj/structure/table, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/stamp/granted{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "lzk" = ( /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/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "lzp" = ( -/obj/machinery/photocopier/prebuilt, -/obj/item/storage/toolbox/electrical, +/obj/machinery/light_switch/directional/east, +/obj/machinery/flasher/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) -"lzG" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 +/area/station/ai/upload/chamber) +"lzy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"lzH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/station/maintenance/aft) "lzO" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 @@ -40161,34 +42831,46 @@ }, /turf/open/floor/iron, /area/station/science/research) -"lzP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "lzR" = ( /obj/structure/closet/crate/trashcart/filled, /obj/machinery/light/very_dim/directional/north, /turf/open/floor/plating, /area/station/maintenance/disposal) -"lzZ" = ( -/obj/item/statuebust{ - pixel_y = 12 +"lzW" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/stack/sticky_tape/surgical{ + pixel_x = -4; + pixel_y = 5 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) +/turf/open/floor/iron/dark/textured_half, +/area/station/medical/surgery) "lAf" = ( /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) "lAg" = ( /obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "lAl" = ( /turf/closed/wall, /area/station/science/robotics/lab) +"lAn" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"lAo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "lAs" = ( /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, @@ -40201,11 +42883,6 @@ /obj/item/circuitboard/aicore, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"lAE" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "lAF" = ( /obj/machinery/light/warm/dim/directional/south, /obj/effect/turf_decal/tile/dark_green{ @@ -40242,10 +42919,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"lAJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "lAN" = ( /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) @@ -40271,8 +42944,9 @@ id = "CargowatchShutter"; name = "Outside Shutter" }, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/area/station/command/heads_quarters/qm) "lAS" = ( /obj/structure/transit_tube/horizontal, /obj/structure/lattice/catwalk, @@ -40328,28 +43002,12 @@ }, /turf/open/floor/iron, /area/station/science/lobby) -"lBo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/pen/blue{ - pixel_x = -9; - pixel_y = 9 - }, -/obj/structure/fluff/paper/stack{ - desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; - dir = 1 +"lBy" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 }, -/obj/structure/fluff/paper/corner, -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lBw" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/purple/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "lBA" = ( /obj/structure/table/reinforced/rglass, /obj/item/mod/module/plasma_stabilizer{ @@ -40366,33 +43024,10 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"lBF" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lBQ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/fax{ - fax_name = "Engineering Lobby"; - name = "Engineering Lobby Fax Machine" - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) -"lBS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"lBD" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "lBX" = ( /obj/machinery/quantum_server, /obj/effect/decal/cleanable/dirt/dust, @@ -40407,15 +43042,6 @@ /obj/item/paperplane/syndicate, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"lCf" = ( -/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 = 2 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "lCl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/west, @@ -40423,28 +43049,6 @@ /obj/structure/closet/crate/trashcart/filled, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"lCw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lCO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/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) "lCX" = ( /obj/structure/railing{ dir = 1 @@ -40455,6 +43059,27 @@ /obj/effect/turf_decal/tile/dark_red, /turf/open/floor/iron/dark, /area/station/science/cytology) +"lCY" = ( +/obj/structure/table, +/obj/item/paper{ + pixel_y = 4 + }, +/obj/item/phone{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/stamp/granted{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/machinery/computer/security/telescreen/aiupload/directional/north, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai/upload/foyer) "lDc" = ( /turf/closed/wall, /area/station/security/prison) @@ -40477,16 +43102,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai) -"lDh" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "Plasma Multideck Adapter" - }, -/obj/machinery/meter{ - name = "Plasma meter" - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/ai/satellite/chamber) "lDj" = ( /obj/structure/chair/office{ dir = 1 @@ -40514,35 +43130,41 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lDE" = ( /turf/closed/wall, /area/station/commons/vacant_room/commissary) -"lEe" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/station/medical/medbay/central) -"lEf" = ( -/obj/structure/railing{ +"lDH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"lDI" = ( +/obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"lEi" = ( -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lEj" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 8 +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/lobby) +"lEd" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/openspace, +/area/station/commons/toilet/restrooms) +"lEe" = ( +/obj/structure/bed/medical/emergency, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"lEl" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"lEm" = ( +/obj/machinery/roulette, +/obj/effect/turf_decal/delivery/white{ + color = "#ff6600" }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/light/directional/south, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "lEo" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ @@ -40556,18 +43178,9 @@ dir = 4 }, /area/station/hallway/primary/fore) -"lEy" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/hidden/layer2, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/openspace, -/area/station/engineering/atmos/project) "lEB" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/service/library) "lEC" = ( @@ -40594,24 +43207,11 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"lEJ" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "SM_shutters"; - name = "Supermatter Radiation Shutters" - }, -/obj/structure/cable/layer1, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"lEO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk/multiz/down{ - 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/textured_large, -/area/station/maintenance/port) +"lEH" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "lEP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/directions/lavaland/directional/south, @@ -40668,7 +43268,10 @@ }, /obj/structure/sign/poster/official/nanotrasen_logo/directional/north, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"lFF" = ( +/turf/open/floor/wood, +/area/station/maintenance/starboard) "lFH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40684,13 +43287,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/library/printer) -"lFW" = ( -/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, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "lFZ" = ( /obj/machinery/power/terminal{ dir = 1 @@ -40701,7 +43297,7 @@ name = "AI Chamber Requests Console" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lGy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -40716,18 +43312,39 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 9 }, -/obj/structure/table/reinforced, -/obj/item/pai_card{ - pixel_x = 6; - pixel_y = 12 - }, /obj/machinery/light/directional/west, -/obj/effect/spawner/random/food_or_drink/donkpockets{ - pixel_y = -3; - pixel_x = -5 +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, /turf/open/floor/iron/textured, /area/station/cargo/storage) +"lGC" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Showers" + }, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/engineering/main) +"lGE" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"lGO" = ( +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) "lGT" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -40738,6 +43355,15 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"lGV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "lHa" = ( /obj/structure/bed/medical/emergency, /obj/machinery/iv_drip, @@ -40746,11 +43372,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/medical) -"lHi" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "lHp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -40765,10 +43386,28 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/port) +"lHz" = ( +/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, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "lHE" = ( /obj/machinery/holopad, /turf/open/floor/glass, /area/station/service/kitchen) +"lHI" = ( +/obj/structure/chair/office, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "lHK" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -40781,19 +43420,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) -"lHT" = ( -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lHY" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 8 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "lIi" = ( /obj/item/cigbutt{ pixel_x = -12; @@ -40801,55 +43427,25 @@ }, /turf/open/floor/wood, /area/station/maintenance/port/aft) -"lIk" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lIm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/computer/atmos_control/air_tank, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"lIp" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "lIr" = ( /turf/closed/wall, /area/station/maintenance/port/aft) -"lIw" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "Plasma Multideck Adapter"; - dir = 8 - }, -/obj/machinery/meter{ - name = "Plasma meter" - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "lIA" = ( /obj/effect/decal/cleanable/blood/oil/slippery, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"lIC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lIF" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 9 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/effect/spawner/random/bureaucracy/paper, +/obj/structure/fluff/paper{ + dir = 1 + }, +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft) "lIM" = ( /obj/machinery/door/airlock/public/glass{ name = "Courtroom" @@ -40860,21 +43456,20 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) +"lIP" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "lIS" = ( -/obj/effect/landmark/navigate_destination/chemfactory, -/turf/open/floor/engine/hull/air, -/area/station/medical/chemistry) -"lIT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "Privacy Shutter" }, /obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/cmo) "lJe" = ( /obj/effect/turf_decal/siding/thinplating_new/light/corner, /obj/effect/turf_decal/trimline/purple/corner, @@ -40931,6 +43526,13 @@ }, /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) +"lJK" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) "lJM" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/landmark/start/hangover, @@ -40952,49 +43554,32 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/turf/open/floor/carpet, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) -"lKm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lKl" = ( +/obj/machinery/atmospherics/components/binary/pump/on/pink/visible/layer2{ + dir = 4; + name = "Incinerator Output" }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"lKG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/trunk/multiz, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "lKK" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/engine, /area/station/science/xenobiology) -"lKV" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lKZ" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/oven{ - pixel_y = 3 - }, -/obj/item/circuitboard/machine/oven, -/obj/item/circuitboard/machine/oven{ - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lLa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "lLe" = ( -/obj/machinery/button/door/directional/west{ - id = "Disposal Exit"; - name = "Disposal Vent Control" +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" }, +/obj/effect/turf_decal/stripes/white/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "lLh" = ( @@ -41030,7 +43615,7 @@ /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/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lLF" = ( /obj/structure/filingcabinet/security, /obj/effect/spawner/random/food_or_drink/booze{ @@ -41040,11 +43625,37 @@ /obj/item/clothing/mask/animal/frog, /turf/open/floor/iron/grimy, /area/station/security/detectives_office/private_investigators_office) +"lLG" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "lLI" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"lLN" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"lLR" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/sign/poster/official/safety_internals/directional/east, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"lLT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Waste Release"; + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "lLY" = ( /obj/effect/turf_decal/siding/thinplating_new, /obj/effect/turf_decal/loading_area{ @@ -41065,6 +43676,11 @@ /obj/effect/mapping_helpers/mail_sorting/service/bar, /turf/open/floor/wood, /area/station/hallway/secondary/service) +"lMj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "lMt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, @@ -41072,19 +43688,13 @@ /turf/open/floor/iron, /area/station/construction/storage_wing) "lMx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ - dir = 1 - }, -/turf/open/openspace, -/area/station/medical/cryo) +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) "lMy" = ( -/obj/structure/bed/dogbed/ian, /mob/living/basic/pet/dog/corgi/ian, -/turf/open/floor/wood, +/obj/structure/bed/dogbed/ian, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "lMD" = ( /obj/structure/bed, @@ -41101,7 +43711,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lMJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -41113,28 +43723,30 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/security/prison) -"lMS" = ( -/obj/effect/turf_decal/siding/wood{ +"lMT" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; dir = 8 }, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Cargo Desk"; + req_access = list("cargo") + }, /obj/structure/table/reinforced, -/obj/item/binoculars, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) -"lMT" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = -10; + pixel_y = 9 }, -/obj/machinery/disposal/bin/tagger, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 1 }, +/obj/item/pen, /turf/open/floor/iron, /area/station/cargo/storage) -"lMU" = ( -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) "lNc" = ( /obj/item/toy/plush/moth{ name = "Spanner 2, her sibling"; @@ -41178,21 +43790,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lNp" = ( /obj/structure/lattice, /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/maintenance/port/aft) -"lNs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/item/toy/foamfinger, -/obj/item/toy/foamfinger, -/obj/item/toy/foamfinger, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "lNx" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -41260,17 +43863,20 @@ pixel_x = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"lOf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner, +/obj/machinery/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "lOg" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"lOh" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "lOy" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -41284,21 +43890,33 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/port) +"lOD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/hallway/abandoned_recreation) "lPc" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_y = 4; + pixel_x = 5 }, -/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ - dir = 1 +/obj/item/reagent_containers/dropper{ + pixel_y = -4 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 7 }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"lPi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "lPm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -41308,8 +43926,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, -/obj/machinery/light_switch/directional/north, -/obj/machinery/light/directional/north, /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, @@ -41317,7 +43933,7 @@ "lPo" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lPt" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -41328,13 +43944,58 @@ /turf/open/floor/iron/dark, /area/station/science/ordnance) "lPw" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/turf/open/floor/grass, -/area/station/hallway/primary/central) +/obj/structure/sign/directions/engineering{ + dir = 4 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -10 + }, +/turf/closed/wall/r_wall, +/area/station/science/lab) +"lPI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "Cabin8"; + name = "Cabin 8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"lPP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/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/atmos/glass{ + name = "Atmospherics" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosengimainttriangle" + }, +/obj/effect/landmark/navigate_destination/atmos, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"lPR" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "lPS" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/security/warden) +"lQc" = ( +/obj/structure/table/optable, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "lQd" = ( /obj/structure/table/wood, /obj/machinery/recharger{ @@ -41370,21 +44031,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"lQE" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/structure/statue/bronze/marx{ - pixel_x = 5; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "lQV" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 6 +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/machinery/holopad, -/turf/open/floor/iron/white/textured_large, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "lRd" = ( /obj/structure/railing, @@ -41407,6 +44061,7 @@ pixel_x = 5 }, /obj/structure/railing, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) "lRj" = ( @@ -41440,32 +44095,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"lRr" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 +"lRs" = ( +/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/suit_storage_unit/engine, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"lRz" = ( -/obj/structure/safe/floor, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c20, -/obj/item/stack/spacecash/c20, -/obj/item/stack/spacecash/c20, -/obj/item/stack/spacecash/c20, -/obj/item/stack/spacecash/c1, -/obj/item/stack/spacecash/c1, -/obj/item/stack/spacecash/c1, -/obj/item/stack/spacecash/c1, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"lRD" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/fore/upper) "lRP" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 8 @@ -41478,6 +44122,36 @@ dir = 8 }, /area/station/hallway/primary/fore) +"lRQ" = ( +/obj/item/reagent_containers/cup/coffeepot, +/obj/machinery/coffeemaker, +/obj/structure/sign/poster/official/soft_cap_pop_art/directional/west, +/obj/item/storage/box/coffeepack, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 14; + pixel_x = 8 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 14 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 14; + pixel_x = -8 + }, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"lRX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/upper) +"lRY" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/courtroom) "lSe" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -41507,16 +44181,31 @@ /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) "lSJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/directional/east, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "lSL" = ( -/obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"lSM" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "lSP" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/wood, @@ -41531,6 +44220,14 @@ }, /turf/open/floor/iron/large, /area/station/hallway/primary/central) +"lTd" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/components/binary/pump/on/cyan/visible/layer5, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "lTw" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/dark_blue{ @@ -41561,19 +44258,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/wood/large, /area/station/service/theater_dressing) -"lTA" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/obj/machinery/disposal/bin/tagger, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "lTD" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/textured_large, @@ -41582,13 +44266,15 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/courtroom) -"lTX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 9 +"lUg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "lUk" = ( /obj/structure/railing, /obj/structure/cable, @@ -41598,60 +44284,48 @@ dir = 1 }, /turf/open/floor/catwalk_floor/iron_white, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lUn" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/cable, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 10 }, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"lUp" = ( -/obj/machinery/door/airlock/external, -/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/starboard/lesser) "lUC" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, /area/station/engineering/lobby) +"lUD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/floor/broken, +/turf/open/floor/eighties, +/area/station/maintenance/hallway/abandoned_recreation) "lUI" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 8 +/obj/machinery/shower/directional/east, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/digital_clock/directional/west, +/obj/effect/turf_decal/siding/blue/end{ + dir = 4 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/item/hemostat{ - pixel_x = 4 +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery) +"lUJ" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/item/hemostat, -/obj/item/clothing/gloves/latex{ - pixel_y = 6 +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, -/obj/item/clothing/gloves/latex, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) -"lUM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/table, +/obj/item/toy/figure/paramedic{ + pixel_x = null }, -/turf/closed/wall/r_wall, -/area/station/engineering/lobby) -"lUO" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter/monitored/distro_loop, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) +/turf/open/floor/glass, +/area/station/medical/medbay/central) "lUV" = ( /obj/machinery/camera/directional/east{ c_tag = "Prison Isolation Cell"; @@ -41664,11 +44338,13 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "lVc" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, /obj/machinery/pdapainter/supply, -/obj/structure/light_construct/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/machinery/keycard_auth/wall_mounted/directional/north, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "lVn" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -41684,11 +44360,18 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) "lVs" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 8 +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 14 }, -/turf/closed/wall, -/area/station/maintenance/port) +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "lVt" = ( /obj/effect/turf_decal/tile/dark{ dir = 8 @@ -41704,16 +44387,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/wood/large, /area/station/medical/psychology) -"lVA" = ( -/obj/machinery/meter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/door/window/brigdoor/left/directional/east{ - name = "Air Pump Room"; - req_access = list("atmospherics") - }, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) "lVD" = ( /obj/machinery/door/airlock/engineering/glass, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41722,16 +44395,18 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"lVH" = ( -/obj/machinery/computer/records/security{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/minisat/directional/south{ - name = "AI Ministat Camera Monitor" +"lVF" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"lVG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "lVK" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, @@ -41746,6 +44421,16 @@ "lVM" = ( /turf/open/floor/plating, /area/station/construction/mining/aux_base) +"lVR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/cigbutt{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "lWc" = ( /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/dark/smooth_large, @@ -41753,27 +44438,19 @@ "lWf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/maintenance, -/obj/item/radio/intercom/directional/south, /turf/open/floor/iron/textured, /area/station/cargo/warehouse) -"lWg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - external_pressure_bound = 120; - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) "lWn" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"lWs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "lWw" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -41786,17 +44463,23 @@ }, /turf/open/openspace, /area/station/maintenance/port/fore) +"lWD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 2 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "lWK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/glass, /area/station/security/brig) -"lWQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, +"lWS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) "lWZ" = ( /obj/structure/railing{ dir = 1 @@ -41825,50 +44508,57 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"lXl" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) "lXz" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"lXC" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "lXD" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ +/obj/machinery/holopad, +/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, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/openspace, -/area/station/medical/cryo) +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) "lXG" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer/blood, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"lXK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 4 +/obj/item/clothing/gloves/color/blue{ + desc = "An old pair of nitrile gloves, with no sterile properties."; + name = "old nitrile gloves" }, -/turf/open/floor/wood, -/area/station/engineering/lobby) +/obj/structure/rack, +/obj/item/wrench/medical, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "lXM" = ( -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/blue/arrow_cw{ + dir = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "lXQ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, @@ -41877,18 +44567,11 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "lXX" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 4 - }, -/obj/machinery/defibrillator_mount/directional/east, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/machinery/airalarm/directional/north, +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/white/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/office) "lYe" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -41928,16 +44611,20 @@ /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"lYw" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/foyer) "lYy" = ( -/obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/obj/machinery/fax{ + fax_name = "Medical"; + name = "Medical Fax Machine" + }, +/obj/structure/table, +/obj/structure/cable, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "lYB" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 4 @@ -41949,19 +44636,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lYC" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) -"lYT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/terminal{ - dir = 4 +/area/station/ai/satellite/maintenance/storage) +"lYH" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +/turf/open/floor/iron/dark, +/area/station/commons/locker) "lYW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -41970,6 +44659,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"lYY" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/firealarm/directional/east, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "lZj" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/clown/directional/south, @@ -41982,19 +44676,39 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) +"lZm" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/end, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "lZn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/secure_safe/directional/north{ - pixel_x = -23; - pixel_y = 0 +/obj/machinery/light_switch/directional/west, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/item/mod/module/longfall{ - pixel_x = 8; - pixel_y = 20 +/obj/item/storage/photo_album{ + pixel_x = -6; + pixel_y = 2 }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/carpet, +/obj/item/camera{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) +"lZt" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/service/chapel) "lZM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/south, @@ -42004,23 +44718,38 @@ /turf/open/floor/catwalk_floor, /area/station/maintenance/starboard/fore) "lZV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/cigbutt{ - pixel_x = 6; - pixel_y = 17 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/item/lighter{ - pixel_x = -7; - pixel_y = 5 +/obj/effect/turf_decal/stripes/line, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/station/cargo/storage) +"lZW" = ( +/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ + pixel_x = 5; + pixel_y = 9 }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/structure/table, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "mae" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, /area/station/security/office) +"mam" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "mas" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -42058,31 +44787,28 @@ /turf/open/misc/asteroid, /area/station/science/xenobiology/hallway) "maO" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/effect/turf_decal/stripes{ + dir = 9 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"maS" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/button/door/directional/north{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + req_access = list("command") }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/turf/open/floor/iron/textured, +/area/station/command/eva) +"mbj" = ( +/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/maintenance/starboard) "mbk" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/station/maintenance/department/science/central) -"mbv" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "mbz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42097,14 +44823,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/secondary/entry) -"mbC" = ( -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) "mbK" = ( /obj/machinery/door/airlock/maintenance{ name = "Virology Maintenance" @@ -42134,6 +44852,7 @@ pixel_x = -4; pixel_y = 5 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "mcb" = ( @@ -42144,6 +44863,12 @@ /obj/item/wrench, /turf/open/openspace, /area/station/construction/storage_wing) +"mch" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/fore/upper) "mcj" = ( /obj/structure/railing/corner{ dir = 4 @@ -42177,32 +44902,18 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "mcC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table/glass, -/obj/item/wrench/medical{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/reagent_containers/cup/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/reagent_containers/cup/beaker/cryoxadone{ - pixel_x = 10; - pixel_y = 6 +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/obj/item/reagent_containers/cup/beaker/cryoxadone{ - pixel_x = -7; - pixel_y = 4 +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 }, -/turf/open/openspace, -/area/station/medical/cryo) -"mcR" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) "mcT" = ( /obj/structure/lattice, /obj/effect/spawner/structure/window/reinforced/plasma, @@ -42215,14 +44926,9 @@ pixel_y = 10 }, /obj/item/pen, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"mcY" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/machinery/shower/directional/east, -/obj/item/mail/junkmail, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "mdf" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 8 @@ -42291,6 +44997,18 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"mdW" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, +/area/station/commons/fitness/recreation) +"mej" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/computer/security/telescreen/ce/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "mek" = ( /obj/effect/turf_decal/tile/green/full, /obj/machinery/biogenerator, @@ -42314,20 +45032,6 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"men" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/stack/package_wrap{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "meo" = ( /obj/item/kirbyplants/photosynthetic, /obj/effect/turf_decal/trimline/dark_blue/filled/line{ @@ -42346,30 +45050,20 @@ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"meE" = ( -/obj/machinery/camera/autoname/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/layer1, -/obj/machinery/button/door/directional/east{ - id = "SM_shutters"; - name = "Radiation Shutters"; - req_access = list("engineering") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/area/station/ai/satellite/interior) "meK" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/status_display/evac/directional/west, /obj/machinery/light/directional/west, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "meU" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "meW" = ( @@ -42381,7 +45075,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "meX" = ( /obj/effect/mapping_helpers/airlock/access/all/service/general, /obj/structure/disposalpipe/segment{ @@ -42392,10 +45086,31 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"meY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "mff" = ( /obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, +/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, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) +"mfh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "mfi" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -42403,7 +45118,7 @@ name = "AI Core Shutters" }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mfn" = ( /obj/structure/table, /obj/item/stack/sheet/plasteel/fifty, @@ -42417,14 +45132,11 @@ /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) "mfs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/textured_corner{ - dir = 8 +/obj/effect/turf_decal/siding/dark_blue/inner_corner{ + dir = 1 }, -/area/station/medical/surgery) +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "mfw" = ( /obj/structure/cannon{ dir = 8 @@ -42442,18 +45154,55 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) +"mfF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "mfO" = ( -/obj/structure/chair/comfy/brown{ +/obj/structure/table/reinforced/rglass, +/obj/machinery/button/door/directional/south{ + id = "bridge blast"; + name = "Bridge Window Blast Doors"; + req_access = list("command"); + pixel_y = 5 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/machinery/button/door/directional/south{ + id = "bridge blast-2"; + name = "Bridge Access Blast Doors"; + req_access = list("command"); + pixel_y = -5 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mfR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing, +/turf/open/floor/engine/hull/air, +/area/station/medical/medbay/central) "mfS" = ( -/obj/structure/chair/comfy/brown{ +/obj/structure/table/reinforced/rglass, +/obj/structure/secure_safe/caps_spare, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mfT" = ( +/obj/structure/sign/warning/radiation/rad_area/directional/east, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "mga" = ( /obj/structure/cable, /obj/machinery/requests_console/directional/east{ @@ -42463,19 +45212,19 @@ /obj/effect/mapping_helpers/requests_console/assistance, /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) -"mgh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) "mgu" = ( /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) +"mgA" = ( +/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/engine, +/area/station/engineering/supermatter/room) "mgJ" = ( /obj/structure/ladder, /obj/structure/lattice/catwalk, @@ -42489,11 +45238,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/security/execution/education) -"mgM" = ( -/obj/item/radio/headset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"mgN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"mgR" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - co2 Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos/upper) "mgS" = ( /obj/structure/table, /obj/item/analyzer{ @@ -42506,12 +45266,20 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"mgT" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/wood, +/area/station/commons/dorms) "mgU" = ( /obj/machinery/door/airlock/silver{ name = "Bathroom" }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mgY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -42531,6 +45299,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/glass/reinforced, /area/station/construction/storage_wing) +"mht" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 2 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "mhI" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -42542,19 +45318,19 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) +"mhO" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/station/cargo/miningoffice) "mhP" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/storage/belt/utility{ - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/pod/old/mass_driver_controller/trash{ + pixel_x = 25 }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/cargo/storage) +/obj/structure/chair/stool/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "mhQ" = ( /obj/machinery/telecomms/server/presets/science, /obj/effect/turf_decal/tile/purple/fourcorners, @@ -42581,15 +45357,19 @@ /turf/open/floor/engine/hull, /area/space/nearstation) "mie" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/chair/office{ +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; dir = 8 }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, +/turf/open/floor/plating, /area/station/cargo/storage) +"mig" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "mik" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -42597,34 +45377,15 @@ }, /turf/open/floor/iron, /area/station/science/explab) -"mil" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"mip" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/machinery/airalarm/directional/north, -/obj/effect/landmark/start/assistant, -/obj/machinery/camera/autoname/directional/north, -/turf/open/openspace, -/area/station/commons/dorms) "miB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"miE" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/item/clothing/shoes/magboots{ - pixel_x = 7; - pixel_y = 16 +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "miL" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/power/apc/auto_name/directional/east, @@ -42656,29 +45417,29 @@ /obj/structure/ladder, /turf/open/space/basic, /area/station/solars/starboard/fore) -"miZ" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase/secure{ - pixel_x = 3 +"miY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 +/obj/effect/turf_decal/tile/red{ + dir = 4 }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"miZ" = ( /obj/machinery/firealarm/directional/south, -/turf/open/floor/wood, +/obj/item/assembly/flash/handheld{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "mjc" = ( /turf/open/openspace, /area/station/service/library/private) -"mjh" = ( -/obj/structure/broken_flooring/corner/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mjm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "mju" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -42687,28 +45448,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"mjy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/obj/effect/turf_decal/trimline/yellow, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mjB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mjN" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) -"mjV" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating/airless, -/area/station/maintenance/port/aft) "mkd" = ( /obj/effect/decal/cleanable/dirt, /obj/item/banner/red{ @@ -42722,22 +45461,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/space_hut) -"mkq" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"mkv" = ( -/obj/structure/table, -/obj/structure/bedsheetbin/empty{ - pixel_y = 6 +"mkt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"mkI" = ( /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, /turf/open/floor/iron, /area/station/commons/dorms) "mkK" = ( @@ -42753,33 +45482,40 @@ dir = 4 }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mkR" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 +/obj/structure/sign/poster/random/directional/north, +/obj/structure/railing{ + dir = 4 }, -/obj/structure/table/wood/fancy/orange, -/obj/item/reagent_containers/cup/glass/bottle/whiskey{ - pixel_x = -5; - pixel_y = 18 +/obj/effect/turf_decal/stripes/end{ + dir = 1 }, -/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ - pixel_x = -4; - pixel_y = 4 +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"mlc" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) +"mlj" = ( +/obj/structure/table, +/obj/item/aicard, +/obj/item/ai_module/reset, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/obj/item/food/fortunecookie{ - pixel_x = 10; - pixel_y = 4 +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"mlx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/warm/directional/north, /turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"mkV" = ( -/obj/machinery/light_switch/directional/west, -/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/engineering/break_room) +/area/station/engineering/lobby) "mlL" = ( /obj/structure/kitchenspike, /obj/machinery/power/apc/auto_name/directional/west, @@ -42790,12 +45526,11 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/commons/vacant_room/office) -"mmb" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +"mma" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, +/turf/open/floor/iron, /area/station/commons/fitness/recreation) "mmi" = ( /obj/machinery/camera/directional/north{ @@ -42815,23 +45550,55 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"mmt" = ( +"mmM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) +"mmO" = ( /obj/structure/lattice/catwalk, -/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, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"mmM" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/broken_flooring/side/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/duct, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"mmP" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/storage/briefcase/secure{ + pixel_x = 3 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/toy/figure/hop{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/toy/figure/ian{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) "mmS" = ( -/obj/machinery/light/small/broken, -/turf/closed/wall/r_wall, -/area/station/maintenance/central) +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "mmU" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42839,6 +45606,17 @@ /obj/structure/sign/painting/large/library, /turf/open/openspace, /area/station/maintenance/port/fore) +"mmW" = ( +/obj/machinery/door/poddoor/massdriver_ordnance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmos_shield_gen/active, +/obj/machinery/atmos_shield_gen/active{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "mmX" = ( /obj/effect/turf_decal/tile/dark_red{ dir = 1 @@ -42860,6 +45638,13 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"mnf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) "mnn" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/effect/mapping_helpers/airlock/welded, @@ -42895,6 +45680,10 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/wood/tile, /area/station/security/detectives_office/private_investigators_office) +"mnK" = ( +/obj/structure/sign/departments/restroom/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "mnQ" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -42919,17 +45708,9 @@ /turf/open/floor/iron/dark/textured_large, /area/station/science/zoo) "moq" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/machinery/brm, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" - }, -/obj/structure/railing{ - dir = 1 - }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/closet/secure_closet/miner, +/obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/cargo/miningoffice) "mox" = ( @@ -42955,7 +45736,11 @@ /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/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"moO" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "mpd" = ( /obj/machinery/vatgrower{ dir = 4 @@ -42975,18 +45760,33 @@ /obj/effect/turf_decal/siding/blue{ dir = 9 }, -/obj/machinery/computer/rdconsole, /obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/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/command/meeting_room/council) "mpm" = ( /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/interrogation) +"mpp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) "mpt" = ( /obj/structure/table, /obj/item/multitool{ @@ -43011,16 +45811,21 @@ /obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/iron/dark, /area/station/command/gateway) +"mpK" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "mpT" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) -"mpX" = ( -/obj/structure/table/reinforced, -/obj/item/binoculars, -/obj/item/binoculars, +"mpW" = ( +/obj/item/trash/can, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/port) "mqa" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -43044,11 +45849,6 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/iron/dark, /area/station/security/warden) -"mqb" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "mqc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43060,18 +45860,31 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "mqm" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/turf/open/floor/carpet, +/obj/machinery/light_switch/directional/west{ + pixel_x = -24 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "mqt" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/structure/sign/poster/official/obey/directional/north, /turf/open/floor/iron/dark, /area/station/maintenance/port) +"mqu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + 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/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "mqv" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/structure/railing/corner, @@ -43094,14 +45907,23 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet, /area/station/security/courtroom) +"mqN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/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) "mqQ" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/effect/landmark/navigate_destination/med, -/mob/living/basic/bot/medbot, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "mqT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/shuttle/mining/common{ @@ -43153,12 +45975,6 @@ }, /turf/open/floor/plating/elevatorshaft, /area/station/service/kitchen) -"mrq" = ( -/obj/structure/chair/sofa/corner/brown{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "mrs" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/north, @@ -43166,15 +45982,21 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/space_hut) +"mrA" = ( +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "mrC" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance/storage) -"mrE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) "mrM" = ( /obj/machinery/light/directional/south, /obj/structure/disposalpipe/segment{ @@ -43193,7 +46015,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/eva, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mrS" = ( /obj/structure/ladder, /obj/effect/decal/cleanable/dirt, @@ -43210,11 +46032,23 @@ dir = 1 }, /area/station/science/robotics/lab) -"msm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"msd" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"msq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "msr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/girder, @@ -43239,22 +46073,48 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"msC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Loop to Freezer" + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "msF" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 4 +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "msK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"mtg" = ( -/obj/structure/sign/poster/official/soft_cap_pop_art/directional/west, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +"msQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/cigbutt{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"mtd" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "mth" = ( /obj/machinery/holopad, /turf/open/floor/wood, @@ -43301,12 +46161,13 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"mtw" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +"mtv" = ( +/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/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central) "mtz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43327,11 +46188,16 @@ pixel_y = 2 }, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "mtC" = ( /obj/structure/closet/crate/goldcrate, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) +"mtM" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/holopad, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "mtP" = ( /obj/item/knife/kitchen{ pixel_x = 10; @@ -43371,9 +46237,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/kitchen, /area/station/maintenance/port/aft) -"mur" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/storage) "mus" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -43422,18 +46285,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) -"muE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"muF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "muG" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; @@ -43448,6 +46299,16 @@ }, /turf/open/floor/iron/dark, /area/station/security/medical) +"muK" = ( +/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/engineering{ + name = "Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "muN" = ( /obj/machinery/computer/mecha{ dir = 1 @@ -43465,27 +46326,25 @@ /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, /area/station/hallway/secondary/entry) -"muW" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2{ - dir = 8 +"mva" = ( +/obj/structure/sign/warning/directional/west, +/turf/open/space/basic, +/area/space/nearstation) +"mvd" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "mvf" = ( /obj/machinery/door/window/right/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/greater) "mvq" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/cell_charger, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "mvu" = ( /obj/effect/turf_decal/trimline/dark, /obj/machinery/airalarm/directional/west, @@ -43508,29 +46367,30 @@ /obj/machinery/holopad, /turf/open/floor/wood/large, /area/station/service/library) +"mvT" = ( +/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/catwalk_floor, +/area/station/maintenance/starboard/fore) +"mvU" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room/upper) "mwd" = ( -/obj/structure/railing/corner{ - dir = 1 - }, /obj/machinery/door/airlock/medical{ - name = "Medbay Storage" + name = "Patient Room" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/full, /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/medical/general, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/storage) -"mwh" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"mwj" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms/room_a) "mwm" = ( /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/plating, @@ -43558,6 +46418,12 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/lawoffice) +"mwK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "mwL" = ( /obj/effect/turf_decal/bot_white/left, /turf/open/floor/iron/dark/textured_large, @@ -43575,20 +46441,10 @@ /turf/open/floor/wood, /area/station/maintenance/port/aft) "mwS" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" - }, -/obj/machinery/door/firedoor, -/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/computer/cargo/request, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /turf/open/floor/iron, -/area/station/cargo/storage) +/area/station/hallway/primary/starboard) "mwY" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/effect/turf_decal/siding/red/corner{ @@ -43596,6 +46452,27 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) +"mxj" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"mxl" = ( +/obj/item/food/sandwich/cheese, +/obj/structure/table/wood, +/obj/machinery/computer/records/medical/laptop, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/cmo) +"mxp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "mxF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -43619,19 +46496,23 @@ }, /obj/effect/spawner/random/clothing, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mxM" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/area/station/ai/satellite/interior) +"mxJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/fluff/paper{ + dir = 9 }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"mxM" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/medkit/regular, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "mxO" = ( /obj/machinery/door/airlock/hatch{ name = "Telecomms Server Room" @@ -43653,19 +46534,13 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "myh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - 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 +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "mym" = ( /obj/effect/turf_decal/siding/dark, @@ -43674,19 +46549,27 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"myt" = ( -/obj/structure/lattice/catwalk, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) +/area/station/ai/satellite/chamber) "myx" = ( /turf/closed/wall, /area/station/service/library/private) "myD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/obj/structure/table/wood, +/obj/item/pen{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/toy/cards/deck/wizoff{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/dark_blue, +/obj/item/flashlight/lamp{ + pixel_y = 5; + pixel_x = -2 + }, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) "myJ" = ( /obj/structure/railing{ dir = 8 @@ -43703,38 +46586,47 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"myP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "myR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - dir = 1; - name = "decommissioned sleeper" - }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/obj/structure/table/wood, +/obj/machinery/status_display/evac/directional/south, +/obj/item/pai_card, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"mze" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "mzh" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, +/obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/maintenance/disposal) +"mzm" = ( +/obj/structure/table, +/obj/machinery/coffeemaker, +/obj/item/reagent_containers/cup/coffeepot, +/obj/item/storage/box/coffeepack, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "mzA" = ( /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_large, /area/station/science/xenobiology) -"mzN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 +"mzH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "mzT" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, @@ -43743,6 +46635,13 @@ /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) +"mAa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "mAe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/south, @@ -43765,11 +46664,9 @@ /area/station/security/brig) "mAr" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L2" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "mAt" = ( @@ -43803,13 +46700,40 @@ /obj/structure/railing, /turf/open/floor/glass, /area/station/science/zoo) +"mAC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"mAH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "CE's Maintenance Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/turf/open/floor/plating, +/area/station/engineering/lobby) "mAO" = ( /obj/item/clothing/head/costume/shrine_wig, /turf/open/floor/plating/airless, /area/space/nearstation) +"mAR" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/urinal/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) +"mAY" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "mBb" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner, /area/station/hallway/primary/central) "mBd" = ( /obj/effect/decal/cleanable/dirt, @@ -43854,6 +46778,17 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/maintenance/port/aft) +"mBZ" = ( +/obj/structure/table/reinforced, +/obj/item/radio/headset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"mCa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "mCb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -43875,6 +46810,15 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"mCi" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "mCj" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance, @@ -43891,6 +46835,18 @@ }, /turf/open/floor/wood/large, /area/station/commons/lounge) +"mCG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "mCM" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -43898,12 +46854,31 @@ /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ dir = 8 }, -/obj/machinery/shower/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"mCN" = ( +/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/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"mCO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mCR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/station/medical/virology) "mDd" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/structure/rack, @@ -43912,50 +46887,21 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) -"mDk" = ( -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"mDo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mDv" = ( -/obj/machinery/vending/coffee{ - pixel_x = -3 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"mDz" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades{ - pixel_y = 1 - }, -/obj/item/book/manual/wiki/plumbing{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ +/area/station/ai/satellite/maintenance/storage) +"mDr" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/medical/chemistry) +/area/station/medical/medbay/lobby) +"mDs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/meter, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"mDv" = ( +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "mDD" = ( /obj/machinery/atmospherics/pipe/multiz/orange/visible{ dir = 4 @@ -43963,6 +46909,10 @@ /obj/machinery/meter, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"mDE" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall, +/area/station/maintenance/starboard/central/upper) "mDF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -43976,33 +46926,25 @@ /area/space/nearstation) "mDS" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/item/kirbyplants/random, +/obj/machinery/modular_computer/preset/cargochat/cargo{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, /turf/open/floor/iron, /area/station/cargo/storage) -"mDV" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "mDX" = ( -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_exterior"; - name = "Malpractice Tower Exterior Airlock" +/obj/structure/bed/pod{ + desc = "An old medical bed, just waiting for replacement with something up to date."; + name = "medical bed"; + dir = 1 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-passthrough" +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/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/defibrillator_mount/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/door/firedoor, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "mDZ" = ( @@ -44019,11 +46961,20 @@ dir = 4 }, /obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) +"mEo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/elevator/directional/east{ + id = "catwalk_atmos"; + name = "Elevator Button" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/engine, +/area/station/engineering/atmos) "mEv" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/firealarm_sanity, @@ -44034,32 +46985,37 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/iron/dark, /area/station/service/chapel) -"mEG" = ( -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "mEO" = ( /obj/machinery/computer/monitor, /obj/effect/turf_decal/tile/dark_blue/opposingcorners{ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"mFv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/sign/warning/electric_shock/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "mFA" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/dim/directional/south, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) +"mFE" = ( +/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, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "mFR" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -44068,8 +47024,17 @@ dir = 8 }, /obj/effect/landmark/start/depsec/medical, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/med_sec/directional/north, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) +"mFU" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) "mGb" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -44094,12 +47059,24 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"mGx" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/engine/hull, -/area/station/maintenance/starboard/lesser) +"mGi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/machinery/camera/autoname/directional/east, +/turf/open/openspace, +/area/station/medical/medbay/central) +"mGj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "mGO" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 @@ -44113,11 +47090,6 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/checkpoint/science) -"mGV" = ( -/obj/structure/marker_beacon/indigo, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "mHd" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/turf_decal/trimline/purple/filled, @@ -44126,41 +47098,39 @@ "mHf" = ( /turf/closed/wall, /area/station/security/checkpoint/supply) -"mHi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/smooth, -/area/station/science/robotics) "mHt" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"mHv" = ( /obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, /turf/open/openspace, -/area/station/medical/chemistry) -"mHx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/commons/dorms) "mHC" = ( /obj/structure/table, /obj/item/camera, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"mHD" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 +"mHF" = ( +/obj/effect/turf_decal/arrows, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mHH" = ( -/obj/item/stack/sheet/cotton{ - pixel_x = -6; - pixel_y = 10 +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/delivery, +/obj/structure/disposaloutlet{ + name = "Outside Cargo" }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) "mHJ" = ( /obj/structure/table, /obj/item/paint_palette{ @@ -44196,32 +47166,15 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mHZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/ai/satellite/interior) +"mHX" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/engine/hull/air, +/area/station/medical/medbay/central) "mIa" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"mId" = ( -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) -"mIg" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/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/engineering/storage_shared) "mIi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -44236,34 +47189,45 @@ /turf/open/space/openspace, /area/space/nearstation) "mIp" = ( -/obj/structure/railing{ +/obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 1 }, -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/vending/games, /turf/open/floor/iron/textured, /area/station/cargo/storage) "mIq" = ( -/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, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/structure/bed/dogbed/renault, +/mob/living/basic/pet/fox/renault, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) +"mIx" = ( +/obj/machinery/light/directional/west, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) "mID" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mining Maintenance Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) +"mIE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "mIJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -44287,14 +47251,7 @@ "mIO" = ( /obj/structure/ladder, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) -"mIR" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/area/station/command/vault) "mIX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/frame/computer{ @@ -44305,45 +47262,21 @@ "mJa" = ( /turf/open/floor/iron/dark, /area/station/tcommsat/server) -"mJb" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/fluff/paper{ - dir = 9 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "mJd" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"mJe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/reagent_containers/cup/glass/bottle/vermouth{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_containers/cup/glass/bottle/ale, -/obj/item/reagent_containers/cup/glass/bottle/beer{ - pixel_x = 6 - }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "mJg" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Medbay - Lower South Hallway" +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "chemshutters"; + name = "Pharmacy Shutters" }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/turf/open/floor/plating, +/area/station/medical/pharmacy) "mJl" = ( /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, @@ -44369,10 +47302,50 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"mJI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "mJL" = ( /obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/station/maintenance/port/aft) +"mJO" = ( +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/plunger{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"mJP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"mJT" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/encryptionkey/headset_service{ + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"mJY" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"mKb" = ( +/obj/machinery/door/airlock{ + name = "Abandoned Chapel" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "mKk" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, @@ -44392,29 +47365,44 @@ /turf/open/floor/iron/dark, /area/station/science/ordnance/storage) "mKs" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 8 - }, -/obj/structure/bed/pod{ - desc = "An old medical bed, just waiting for replacement with something up to date."; - name = "medical bed" +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 }, -/obj/machinery/defibrillator_mount/directional/south, -/turf/open/floor/iron/white/textured_large, +/obj/effect/turf_decal/trimline/white/filled/warning, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "mKv" = ( -/obj/effect/landmark/firealarm_sanity, -/turf/open/floor/engine/hull/air, -/area/station/medical/chemistry) +/obj/structure/closet/secure_closet/chief_medical, +/obj/item/screwdriver, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/cmo) +"mKz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8; + pixel_y = -2 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "mKF" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"mKH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "mKN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -44430,15 +47418,26 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"mKV" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) +"mKQ" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) "mKZ" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"mLd" = ( +/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/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/main) "mLg" = ( /obj/machinery/mass_driver/chapelgun{ dir = 1 @@ -44452,12 +47451,6 @@ /obj/effect/turf_decal/stripes/end, /turf/open/floor/iron/dark, /area/station/service/chapel) -"mLk" = ( -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "mLl" = ( /obj/machinery/vending/cigarette, /turf/open/floor/carpet, @@ -44465,15 +47458,15 @@ "mLm" = ( /turf/closed/wall, /area/station/hallway/secondary/construction) -"mLH" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/table/reinforced, -/obj/item/training_toolbox{ - pixel_y = 6 - }, -/obj/item/training_toolbox, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"mLp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/glass, +/area/station/maintenance/aft/upper) +"mLv" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "mLN" = ( /obj/item/chair, /obj/effect/decal/cleanable/blood/old, @@ -44487,25 +47480,26 @@ /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"mLS" = ( -/turf/open/openspace, -/area/station/engineering/break_room) +"mLP" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "mMb" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ dir = 4 }, /turf/open/openspace, -/area/station/command/bridge) -"mMx" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) +/area/station/command/meeting_room/council) +"mMs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "mMA" = ( /obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "mMC" = ( /obj/effect/turf_decal/siding/wood{ @@ -44531,17 +47525,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"mMX" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 +"mMZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mNj" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, +/area/station/maintenance/starboard/central) +"mNi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central) "mNn" = ( /obj/structure/chair/stool/directional/south{ dir = 8 @@ -44558,11 +47557,20 @@ /obj/structure/ladder, /turf/open/space/basic, /area/space/nearstation) -"mNC" = ( +"mNt" = ( /obj/structure/lattice/catwalk, -/obj/structure/sign/warning/radiation/rad_area/directional/south, +/obj/structure/railing, +/obj/item/reagent_containers/blood/ethereal{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/cigbutt{ + pixel_x = 9; + pixel_y = 14 + }, +/obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/west, /turf/open/openspace, -/area/station/engineering/break_room) +/area/station/maintenance/department/crew_quarters/dorms) "mND" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -44570,13 +47578,21 @@ }, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) +"mNK" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) "mNN" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -44587,45 +47603,44 @@ name = "Gateway Shutter Control"; pixel_x = 24; pixel_y = 0; - req_access = list("command") + req_access = list("command"); + dir = 4 }, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"mOg" = ( -/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/stripes/corner, +/turf/open/floor/iron/edge{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/area/station/hallway/primary/central) +"mOc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/spawner/random/techstorage/custom_shuttle, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"mOk" = ( /turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"mOo" = ( -/obj/effect/turf_decal/trimline/yellow/filled, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 +/area/station/maintenance/starboard/aft/upper) +"mOz" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"mOB" = ( +/obj/structure/transport/linear{ + radial_travel = 0 }, -/obj/item/kirbyplants/random/fullysynthetic, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"mOx" = ( -/obj/structure/bed/dogbed/runtime, -/obj/item/toy/figure/cmo{ - pixel_x = -7; - pixel_y = -4 +/obj/machinery/elevator_control_panel/directional/south{ + linked_elevator_id = "catwalk_atmos"; + preset_destination_names = list("2"="Lower Atmos","3"="Upper Atmos") }, -/mob/living/basic/pet/cat/runtime, -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/camera/autoname/directional/south{ - c_tag = "Medbay - Upper Chief Medical Office South"; - network = list("ss13","medbay") +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "catwalk_atmos" }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/turf/open/openspace, +/area/station/engineering/atmos/upper) "mOE" = ( /obj/effect/turf_decal/trimline/yellow/warning, /obj/structure/railing, @@ -44659,7 +47674,22 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"mOO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mOU" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "mOW" = ( /obj/structure/rack, /obj/item/book/manual/wiki/engineering_construction, @@ -44683,16 +47713,44 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel) -"mPn" = ( -/obj/effect/landmark/start/hangover, +"mPa" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mPf" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table/wood, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central) +"mPt" = ( +/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{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/main) "mPw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"mPx" = ( +/obj/machinery/electrolyzer, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "mPB" = ( /obj/machinery/camera/directional/south{ c_tag = "Holodeck - Aft"; @@ -44702,11 +47760,35 @@ name = "Holodeck Projector Floor" }, /area/station/holodeck/rec_center) +"mPK" = ( +/obj/structure/cable, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 13 + }, +/obj/item/cigbutt{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"mPO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "mPP" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/machinery/light/floor, +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/food/chocolatebar{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "mPQ" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/dark, @@ -44714,77 +47796,84 @@ network = list("minisat") }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mPV" = ( -/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/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) +/area/station/ai/satellite/interior) "mQh" = ( /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/construction) -"mQS" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +"mQA" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/rack, +/obj/item/encryptionkey/headset_sci{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/encryptionkey/headset_med, +/obj/item/encryptionkey/headset_eng{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mQT" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"mQH" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"mQX" = ( -/obj/machinery/mineral/ore_redemption{ - dir = 4; - input_dir = 4; - output_dir = 8 + dir = 4 }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/machinery/status_display/supply{ - pixel_y = -32 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mRf" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) +"mQK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"mQX" = ( +/obj/effect/turf_decal/trimline/brown/arrow_ccw, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "mRg" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, /area/station/hallway/secondary/entry) +"mRj" = ( +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/obj/machinery/light/warm/dim/directional/west, +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "mRn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt/cigarbutt, -/obj/effect/spawner/random/trash/mess, /obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"mRq" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Laundromat" +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, /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/cafeteria, -/area/station/commons/locker) +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"mRs" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "mRt" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/landmark/blobstart, @@ -44807,72 +47896,58 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/research) -"mRI" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) "mRJ" = ( /obj/structure/cable, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) +"mRO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Ordnance Gas Storage Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, +/turf/open/floor/plating, +/area/station/maintenance/aft) "mRQ" = ( /obj/machinery/airalarm/directional/north, /obj/item/radio/intercom/directional/east, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"mRU" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/railing/corner, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/flora/tree/jungle, +/obj/effect/turf_decal/siding/thinplating/corner, +/turf/open/floor/grass, +/area/station/hallway/primary/starboard) "mSa" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/closet/secure_closet/hop, /obj/item/bedsheet/ian, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, /obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "mSd" = ( /turf/closed/wall, /area/station/commons/lounge) -"mSq" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"mSe" = ( +/obj/effect/decal/cleanable/vomit/old, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/upper) "mSt" = ( /obj/effect/landmark/start/mime, /turf/open/floor/carpet/black, /area/station/service/theater) "mSA" = ( -/obj/structure/bed, -/obj/item/bedsheet/qm, -/obj/item/stack/spacecash/c10{ - pixel_x = -5 - }, -/obj/item/stack/spacecash/c10{ - pixel_x = -5 - }, -/obj/item/stack/spacecash/c10{ - pixel_x = -5 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Quartermaster's Room" - }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) -"mSE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/obj/machinery/meter{ - name = "Mixed Air Tank In" +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "mSF" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44882,38 +47957,69 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/hallway/primary/fore) +"mSG" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) +"mSL" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"mSN" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/statue/bronze/marx{ + pixel_x = 5; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"mSQ" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/locker) +"mSU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "mTi" = ( /obj/item/banhammer, /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) -"mTp" = ( -/obj/structure/table, -/obj/machinery/status_display/evac/directional/north, -/obj/item/paper{ - pixel_y = 4 - }, -/obj/item/phone{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/stamp{ - pixel_x = 13; - pixel_y = 12 +"mTo" = ( +/obj/item/cigbutt{ + pixel_x = -11; + pixel_y = 14 }, -/obj/machinery/computer/security/telescreen/aiupload/directional/west, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "mTq" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/security/courtroom) +"mTv" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/commons/locker) "mTx" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -44923,46 +48029,41 @@ }, /turf/open/floor/wood/large, /area/station/service/kitchen) -"mTz" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/atmos/upper) -"mTH" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) -"mTL" = ( -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body" +"mTJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mUi" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/sepia, -/area/station/hallway/secondary/construction) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"mTP" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/medical/medbay/central) +"mTT" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "mUm" = ( -/obj/machinery/chem_heater/withbuffer, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, -/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/clothing/glasses/science, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"mUv" = ( -/obj/structure/lattice/catwalk, -/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/openspace, -/area/station/medical/storage) +"mUt" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/commons/dorms) "mUC" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -44971,30 +48072,15 @@ /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) "mUD" = ( -/obj/structure/chair/office{ - name = "CMO's Chair" - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mUN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "mUR" = ( /turf/closed/wall, /area/station/service/bar/backroom) -"mUS" = ( -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "mUY" = ( /obj/structure/railing{ dir = 1 @@ -45007,11 +48093,12 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "mVm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/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/any/command/maintenance, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/central) "mVp" = ( @@ -45026,17 +48113,11 @@ }, /turf/open/openspace, /area/station/command/gateway) -"mVu" = ( -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) -"mVw" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/modular_computer/preset/engineering{ - dir = 8 - }, +"mVv" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/landmark/start/chemist, /turf/open/floor/iron/dark, -/area/station/engineering/hallway) +/area/station/medical/chemistry) "mVC" = ( /obj/structure/lattice, /obj/effect/spawner/random/maintenance, @@ -45047,10 +48128,35 @@ /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output, /turf/open/floor/engine/air, /area/station/engineering/atmos/upper) -"mWu" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +"mWg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron, +/area/station/commons/dorms) +"mWB" = ( +/obj/structure/table, +/obj/item/storage/box/metalfoam{ + pixel_y = 2; + pixel_x = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"mWC" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/booze, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "mWF" = ( /obj/structure/railing/corner{ dir = 4 @@ -45073,17 +48179,7 @@ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mWI" = ( -/obj/structure/table, -/obj/item/toy/gun{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/interior) "mWQ" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/gambling{ @@ -45117,13 +48213,13 @@ dir = 8 }, /area/station/science/cytology) -"mWX" = ( -/obj/effect/decal/cleanable/dirt, +"mXa" = ( +/obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/ripped/directional/south, /obj/structure/cable, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/medical) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/medical/medbay/central) "mXl" = ( /obj/structure/broken_flooring/singular/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45131,6 +48227,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/storage_shared) +"mXq" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "mXs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -45140,6 +48244,15 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"mXI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "mXL" = ( /obj/effect/turf_decal/weather/snow, /turf/open/floor/plating, @@ -45193,80 +48306,31 @@ "mYf" = ( /obj/structure/chair/comfy/brown, /obj/structure/plaque/static_plaque/golden/captain{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, -/obj/structure/cable, /obj/effect/landmark/start/captain, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"mYh" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table/glass, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/openspace, -/area/station/engineering/break_room) -"mYm" = ( -/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/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "mYo" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/space/nearstation) -"mYy" = ( -/obj/structure/sign/poster/contraband/power/directional/north, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"mYK" = ( -/obj/machinery/door/airlock{ - name = "Emergency 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/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mYN" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "mYV" = ( /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/science/cytology) "mYZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/reagent_containers/cup/bottle/morphine{ - pixel_x = -1; - pixel_y = 4 +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 }, -/obj/item/reagent_containers/cup/bottle/toxin{ - pixel_x = 5; - pixel_y = 3 +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/full, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 1; - id = "chemshutters"; - name = "Chemistry Shutters" +/obj/structure/disposalpipe/segment{ + dir = 5 }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) @@ -45277,24 +48341,9 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"mZf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mZo" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "mZq" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -45322,53 +48371,42 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/hallway/primary/central) -"naa" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "nah" = ( /obj/structure/cable, /turf/closed/wall/r_wall, /area/station/maintenance/port/aft) -"nak" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/east{ - name = "Cargo Desk"; - req_access = list("cargo") +"nai" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/vending/assist, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"nak" = ( /obj/effect/landmark/navigate_destination/cargo, /turf/open/floor/iron, -/area/station/cargo/storage) -"naq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 1 +/area/station/hallway/primary/starboard) +"nar" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nar" = ( -/obj/structure/railing/corner{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"nax" = ( +/obj/structure/toilet{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nav" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/auxiliary) "naC" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hydropony_shutters"; @@ -45377,10 +48415,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/kitchen) -"naR" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "naS" = ( /turf/open/openspace, /area/station/science/xenobiology) @@ -45402,20 +48436,21 @@ }, /turf/open/floor/wood, /area/station/security/detectives_office) -"nbb" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp{ - pixel_y = 7 - }, -/obj/item/stamp/head/qm{ - pixel_x = -5 +"nba" = ( +/obj/structure/sign/clock/directional/east, +/obj/machinery/rnd/production/techfab/department/cargo, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 }, -/obj/item/stamp/denied{ - pixel_x = 6 +/turf/open/floor/iron, +/area/station/cargo/storage) +"nbb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "nbj" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -45432,19 +48467,35 @@ }, /turf/open/floor/wood/large, /area/station/commons/lounge) -"nbY" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/wood{ - dir = 5 +"nbE" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics Room" }, -/obj/effect/turf_decal/siding/wood{ +/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/blue/full, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"nbQ" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"nbU" = ( +/obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/item/modular_computer/laptop/preset/civilian{ - pixel_y = 3 +/turf/open/floor/iron/edge{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/engineering/lobby) +/area/station/hallway/primary/central) "nct" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45456,30 +48507,25 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"ncF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"ncI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +"ncC" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/hallway/primary/central) "ncO" = ( /turf/open/floor/glass/reinforced, /area/station/hallway/secondary/entry) -"ncT" = ( -/obj/machinery/electrolyzer, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"ncS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ncV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -45490,9 +48536,25 @@ dir = 4 }, /area/station/engineering/main) -"nde" = ( +"nda" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/stack{ + desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging." + }, +/obj/structure/fluff/paper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, /turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/area/station/maintenance/aft) +"nde" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "ndl" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/module_duplicator, @@ -45512,7 +48574,11 @@ "ndK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "ndQ" = ( /obj/machinery/door/airlock{ @@ -45539,6 +48605,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"neh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/commons/dorms) "nej" = ( /obj/machinery/nuclearbomb/beer{ pixel_x = -2; @@ -45546,23 +48619,23 @@ }, /obj/structure/table/reinforced, /obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) -"nem" = ( +"nev" = ( /obj/structure/lattice/catwalk, -/obj/machinery/power/tracker, -/turf/open/space/basic, -/area/station/solars/starboard/fore) -"nen" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" +/obj/effect/turf_decal/stripes/corner{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/railing{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"new" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "ney" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 @@ -45577,7 +48650,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"neA" = ( +/obj/machinery/door/airlock/external, +/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/starboard/aft/upper) "neB" = ( /obj/structure/railing{ dir = 4 @@ -45596,12 +48677,6 @@ pixel_y = 26; preset_destination_names = list("2"="Lower Deck","3"="Upper Deck") }, -/obj/structure/sign/directions/upload/directional/north{ - desc = "It stands for Up Le Dable"; - dir = 2; - name = "Button Indicator"; - pixel_y = 40 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -45617,57 +48692,55 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"neN" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/button/door/directional/west{ + id = "Cabin10"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms) "nfa" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"nfd" = ( +/obj/structure/bed, +/obj/effect/spawner/random/bedsheet, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms) "nfe" = ( /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/multiz/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nfg" = ( -/obj/structure/railing{ - dir = 8 - }, /obj/effect/turf_decal/siding/blue{ dir = 8 }, -/obj/structure/chair/office{ - dir = 4; - name = "HoP's Chair" - }, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/obj/structure/railing/corner/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nfB" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"nfE" = ( /obj/structure/railing{ dir = 8 }, -/obj/structure/railing/corner/end, -/obj/structure/railing/corner/end{ +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 8 }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/stairs/left, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "nfG" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -45675,10 +48748,10 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, /area/station/science/lobby) -"nfM" = ( -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) +"nfO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/upper) "nfR" = ( /turf/closed/wall, /area/station/medical/break_room) @@ -45712,7 +48785,7 @@ /turf/open/floor/iron/white/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ngp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45732,37 +48805,33 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ngF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/confetti, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"ngH" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/break_room) -"ngQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "ngZ" = ( /obj/effect/turf_decal/delivery, /obj/structure/table, /obj/effect/spawner/random/entertainment/cigarette_pack, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"nhc" = ( +/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, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "nhg" = ( /turf/open/floor/iron/smooth_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"nhh" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/openspace, -/area/station/solars/starboard/fore) +/area/station/ai/satellite/foyer) "nhj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45771,33 +48840,51 @@ dir = 2 }, /obj/effect/mapping_helpers/mail_sorting/service/law_office, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"nhE" = ( -/obj/structure/sign/poster/contraband/communist_state/directional/north, -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_x = 12; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"nhG" = ( -/obj/effect/turf_decal/siding/wood{ +"nht" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 }, -/obj/structure/railing{ +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"nhv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) +"nhG" = ( /obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"nhP" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/obj/effect/turf_decal/stripes/end, +/obj/structure/table, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "nhQ" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 8 @@ -45815,22 +48902,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"nhU" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"nhY" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "nia" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ @@ -45843,7 +48914,7 @@ dir = 9 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nir" = ( /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/dark, @@ -45852,19 +48923,19 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"niv" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/openspace, -/area/station/medical/storage) "niy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /obj/structure/rack, -/obj/item/plunger, -/turf/open/floor/wood, -/area/station/medical/medbay/central) +/obj/item/wheelchair{ + pixel_y = 3 + }, +/obj/item/emergency_bed{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) "niN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -45880,30 +48951,48 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"njc" = ( +/obj/structure/table, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/airlock_painter/decal{ + pixel_y = 12 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"njf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/commons/dorms) "njh" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet1"; name = "Unit 1" }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "njk" = ( /turf/closed/wall, /area/station/engineering/main) -"njA" = ( -/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/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "njH" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/medical) @@ -45911,13 +49000,9 @@ /obj/structure/chair{ dir = 1 }, +/obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"njY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "nkh" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark/smooth_large, @@ -45929,7 +49014,7 @@ }, /obj/machinery/light/directional/west, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nky" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 8 @@ -45943,7 +49028,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nkD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, @@ -45955,17 +49040,21 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"nkE" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "nkF" = ( /obj/machinery/light/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner{ + dir = 8 + }, /area/station/hallway/primary/central) +"nkW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/item/toy/foamfinger, +/obj/item/toy/foamfinger, +/obj/item/toy/foamfinger, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nkZ" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -45980,32 +49069,26 @@ }, /turf/open/space/basic, /area/space/nearstation) -"nli" = ( -/obj/structure/railing/corner, -/obj/structure/table/wood, -/obj/item/camera{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/tape, -/obj/item/pen/fourcolor{ - pixel_x = 8; - pixel_y = 7 - }, +"nlk" = ( /obj/structure/cable, -/turf/open/floor/wood/large, -/area/station/service/library/private) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "nlm" = ( /turf/open/space/openspace, /area/space) -"nlo" = ( -/obj/machinery/photocopier/prebuilt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "nlt" = ( /turf/open/floor/iron/dark/textured, /area/station/engineering/supermatter/room) +"nlw" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/engineering/lobby) "nlD" = ( /turf/closed/wall/r_wall, /area/station/medical/abandoned) @@ -46016,7 +49099,7 @@ network = list("aicore") }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nlO" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -46028,41 +49111,22 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"nlP" = ( -/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{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "nmf" = ( /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"nmk" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/east, -/turf/open/openspace, -/area/station/engineering/atmos/project) "nml" = ( /obj/machinery/button/door/directional/east{ id = "qm_cargobay"; - name = "Cargo Bay Door Control" + name = "Cargo Bay Inner Shutters" }, /obj/machinery/camera/directional/east{ c_tag = "Cargo Bay - Reception" }, -/obj/machinery/fax{ - fax_name = "Cargo Office"; - name = "Cargo Office Fax Machine" - }, -/obj/structure/table, /obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /turf/open/floor/iron, /area/station/cargo/storage) "nmn" = ( @@ -46074,40 +49138,18 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) -"nmx" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/upper) "nmB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/confetti, /obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"nmF" = ( -/obj/structure/cable, -/obj/structure/rack, -/obj/item/circuitboard/computer/apc_control{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/stock_parts/power_store/cell{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"nmH" = ( -/obj/item/pushbroom, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) -"nmO" = ( -/obj/effect/spawner/random/entertainment/arcade{ +"nmE" = ( +/obj/structure/chair{ dir = 1 }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nmQ" = ( /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 1 @@ -46123,37 +49165,39 @@ }, /turf/open/floor/wood/large, /area/station/service/library) +"nmW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"nnf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/security/courtroom) "nng" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/obj/effect/landmark/start/depsec/medical, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - name = "Security Requests Console"; - pixel_x = -30; - pixel_y = 0 - }, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/mapping_helpers/requests_console/supplies, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) -"nns" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "nny" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/hallway/primary/central) -"nnB" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +"nnD" = ( +/obj/machinery/firealarm/directional/south, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "nnH" = ( /turf/closed/wall, /area/station/commons/storage/primary) @@ -46190,50 +49234,26 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) +"nnQ" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nnS" = ( /obj/structure/table/reinforced, /turf/open/floor/engine/hull, /area/space/nearstation) "nnW" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/folder/yellow{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/stamp{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/stamp/denied{ - pixel_x = 6; - pixel_y = 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/carpet, -/area/station/command/meeting_room/council) -"nog" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/folder/yellow{ - pixel_x = 2; - pixel_y = -12 +/obj/machinery/computer/security/telescreen/normal/directional/west, +/obj/structure/chair/comfy/carp{ + name = "Captain's Chair" }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nnX" = ( +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "noi" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/spawner/random/structure/table_or_rack, @@ -46243,14 +49263,12 @@ /turf/open/floor/iron, /area/station/service/kitchen/abandoned) "nol" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/button/door/directional/north{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - req_access = list("command") +/obj/effect/turf_decal/siding/dark{ + dir = 5 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "nom" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46258,6 +49276,19 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"now" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"nox" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/vending/engivend, +/obj/structure/sign/poster/official/moth_delam/directional/north, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "noz" = ( /obj/structure/chair/office/light{ dir = 8 @@ -46266,14 +49297,6 @@ /obj/effect/landmark/start/research_director, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"noC" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "noF" = ( /obj/effect/turf_decal/stripes/asteroid/corner{ dir = 1 @@ -46342,17 +49365,38 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "npf" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"npj" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light_switch/directional/north, -/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/engineering/storage_shared) +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"npo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"nps" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/science/lobby) +"npt" = ( +/obj/machinery/shower/directional/west, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"npw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/aft) "npx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -46369,19 +49413,6 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/wood, /area/station/command/teleporter) -"npG" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "npH" = ( /obj/machinery/door/firedoor, /obj/structure/cable, @@ -46403,8 +49434,10 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "npR" = ( -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "npS" = ( /obj/item/stack/sheet/mineral/wood{ pixel_x = -12; @@ -46420,6 +49453,11 @@ }, /turf/open/floor/iron/dark, /area/station/security/evidence) +"nqf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "nqg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46435,29 +49473,17 @@ }, /turf/open/floor/iron/dark, /area/station/science/server) -"nqm" = ( -/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/maintenance/disposal/incinerator) +"nqo" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + anchored = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "nqt" = ( /turf/open/floor/plating/elevatorshaft, /area/station/engineering/supermatter/room) -"nqu" = ( -/obj/structure/light_construct/directional/east{ - dir = 1 - }, -/obj/structure/closet/secure_closet/bar/all_access{ - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"nqy" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/medical/medbay/central) "nqC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -46516,28 +49542,31 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/breakroom) +"nqW" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/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/machinery/camera/autoname/directional/west{ + c_tag = "Medbay - Upper Plumbing Area West" + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "nrg" = ( /obj/machinery/holopad, /turf/open/floor/carpet, /area/station/command/corporate_showroom) "nrw" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/arrows{ - dir = 1 + dir = 5 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/turf/open/floor/iron/dark/smooth_corner{ dir = 8 }, -/turf/open/floor/iron/dark, /area/station/command/gateway) -"nrO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/oven, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "nrP" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -46548,8 +49577,33 @@ /obj/structure/railing{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) +"nrT" = ( +/obj/structure/rack, +/obj/item/storage/crayons{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 5 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"nrZ" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"nsn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/aft) "nsp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/meter, @@ -46557,14 +49611,27 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"nsx" = ( +"nsr" = ( /obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ + dir = 6 + }, +/turf/open/floor/iron/corner{ dir = 1 }, +/area/station/hallway/secondary/exit/departure_lounge) +"nsD" = ( +/obj/machinery/power/tracker, /obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/turf/open/space/basic, +/area/station/solars/starboard/fore) "nsI" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 8 @@ -46577,7 +49644,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nsM" = ( /obj/structure/chair{ dir = 1 @@ -46585,14 +49652,6 @@ /obj/effect/landmark/start/prisoner, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"nsN" = ( -/obj/structure/cable, -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "nsO" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/green/opposingcorners{ @@ -46636,40 +49695,22 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/wood/tile, /area/station/science/robotics) -"nts" = ( -/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/fitness/recreation) -"ntw" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Dormitories - Lower Entrance" - }, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) "ntx" = ( /obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron, /area/station/cargo/storage) -"ntA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"ntE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"ntz" = ( +/obj/structure/ladder, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "ntJ" = ( /obj/structure/railing, /obj/machinery/camera/autoname/directional/north{ network = list("aicore") }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ntN" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) @@ -46680,14 +49721,23 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/explab) -"ntW" = ( -/obj/structure/cable, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"ntV" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"nuh" = ( +/obj/machinery/light/floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "nuw" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -46700,22 +49750,32 @@ /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/construction) "nuz" = ( -/obj/effect/turf_decal/siding/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/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes, +/turf/open/floor/iron/textured, +/area/station/command/eva) "nuG" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"nuP" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Abandoned Bar" +"nuJ" = ( +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"nuR" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "nuT" = ( /obj/machinery/status_display/evac/directional/east, /obj/machinery/light/directional/east, @@ -46730,11 +49790,23 @@ }, /area/station/hallway/primary/fore) "nuU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/window/reinforced/spawner/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/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/window/reinforced/spawner/directional/south, +/obj/machinery/door/window/right/directional/west{ + name = "First Aid Supplies"; + req_access = list("medical") + }, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "nuZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -46757,17 +49829,19 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "nvn" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, /area/station/medical/chemistry) "nvp" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nvt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -46792,12 +49866,6 @@ /obj/machinery/light/floor, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"nvA" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/science/server) "nvB" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/power/terminal{ @@ -46808,12 +49876,9 @@ /area/station/solars/starboard/aft) "nvG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/courtroom) -"nvM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) "nvO" = ( /obj/structure/barricade/wooden, /obj/effect/spawner/random/maintenance/two, @@ -46850,55 +49915,43 @@ /obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/plating, /area/station/maintenance/central) -"nwd" = ( -/obj/effect/turf_decal/tile/purple/half{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/white/textured_half, -/area/station/science/robotics) -"nwe" = ( -/obj/machinery/vatgrower, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "nwo" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/wood, /area/station/commons/storage/tools) -"nws" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) -"nwC" = ( +"nwG" = ( /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/commons/storage/primary) -"nwG" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"nwH" = ( +/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/bridge) +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "nwJ" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"nwK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central) "nwQ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 +/obj/machinery/conveyor{ + dir = 6; + id = "mining" }, -/obj/structure/chair/sofa/corner/brown, -/obj/effect/spawner/random/maintenance, /turf/open/floor/iron/textured, /area/station/cargo/storage) "nwT" = ( @@ -46938,35 +49991,18 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"nxi" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 +"nxq" = ( +/obj/machinery/power/turbine/turbine_outlet{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "nxr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"nxs" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/service_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"nxv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/clothing/head/wig/random, -/obj/item/bodypart/head/lizard, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) "nxG" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner/end{ @@ -46982,14 +50018,6 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /turf/open/floor/plating, /area/station/security/execution/education) -"nxN" = ( -/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/effect/landmark/start/depsec/engineering, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "nxR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47012,27 +50040,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nyb" = ( /obj/structure/closet, /obj/effect/spawner/random/clothing/funny_hats, /turf/open/floor/plating, /area/station/maintenance/port) -"nym" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/pen, -/obj/structure/sign/poster/contraband/missing_gloves/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) -"nyq" = ( -/turf/open/floor/iron/dark/smooth_half, -/area/station/service/library) -"nyz" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, +"nye" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, /turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/engineering/atmos) +"nyh" = ( +/obj/item/stack/rods{ + amount = 7 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "nyA" = ( /obj/machinery/camera/motion{ c_tag = "Vault - Lower"; @@ -47045,11 +50074,17 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "nyB" = ( /obj/structure/chair/stool/bar/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) +"nyF" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nyG" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -47085,32 +50120,46 @@ /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) "nzd" = ( -/obj/structure/chair{ - dir = 8 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 }, /obj/machinery/light/directional/east, -/obj/structure/sign/directions/medical/directional/east{ - dir = 2 - }, /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "nzj" = ( -/obj/machinery/chem_master, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 4 }, -/obj/machinery/firealarm/directional/east, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/folder/white{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 9 + }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"nzx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "nzy" = ( /obj/structure/closet/crate/trashcart/filled, /obj/structure/sign/poster/contraband/random/directional/west, @@ -47127,16 +50176,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) -"nzG" = ( -/obj/structure/transport/linear{ - radial_travel = 0 - }, -/turf/open/openspace, -/area/station/engineering/break_room) -"nzZ" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "nAc" = ( /obj/structure/fans/tiny/invisible, /obj/effect/turf_decal/stripes/line{ @@ -47150,8 +50189,8 @@ /obj/machinery/door/airlock/grunge{ name = "Under The Stairs" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "nAf" = ( @@ -47172,14 +50211,19 @@ /obj/structure/closet/crate/trashcart/filled, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"nAA" = ( -/obj/structure/sign/poster/random/directional/north, -/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, +"nAv" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/locker) +"nAx" = ( +/obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/area/station/maintenance/starboard/fore/upper) "nAB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -47188,23 +50232,13 @@ }, /turf/open/floor/plating, /area/station/science/cytology) -"nAN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release"; - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"nAS" = ( -/obj/item/cigbutt{ - pixel_x = 7; - pixel_y = 14 +"nAM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "nAY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -47212,51 +50246,18 @@ }, /turf/open/floor/iron, /area/station/construction/storage_wing) -"nBg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "nBi" = ( /obj/structure/barricade/sandbags, /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"nBq" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"nBr" = ( -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 +"nBm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"nBs" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/engineering/supermatter/room/upper) "nBu" = ( /obj/structure/closet/crate/trashcart/laundry, /turf/open/floor/plating, @@ -47271,7 +50272,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "nBE" = ( /obj/effect/spawner/random/trash/graffiti{ pixel_y = 32 @@ -47288,6 +50289,20 @@ }, /turf/open/floor/iron/white/smooth_corner, /area/station/hallway/secondary/entry) +"nBR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) +"nBS" = ( +/obj/structure/closet, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "nCc" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating, @@ -47307,10 +50322,20 @@ /turf/open/floor/iron, /area/station/science/lab) "nCg" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/chair/sofa/left/brown{ + dir = 1 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) +"nCh" = ( +/obj/structure/cable, +/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) "nCo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/dark_blue{ @@ -47319,6 +50344,11 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"nCp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/aft) "nCt" = ( /obj/machinery/modular_computer/preset/civilian{ dir = 1 @@ -47336,38 +50366,12 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "nCw" = ( +/obj/effect/decal/cleanable/generic, /obj/structure/railing{ - dir = 1 - }, -/obj/structure/rack, -/obj/effect/spawner/random/aimodule/harmless{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/spawner/random/aimodule/harmless{ - pixel_x = -3; - pixel_y = -2 + dir = 5 }, -/obj/effect/decal/cleanable/generic, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) -"nCx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1 - }, -/obj/effect/mapping_helpers/mail_sorting/science/genetics, -/obj/effect/mapping_helpers/mail_sorting/science/rd_office, -/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, -/obj/effect/mapping_helpers/mail_sorting/science/research, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"nCC" = ( -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/obj/structure/closet/wardrobe/white, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/area/station/ai/upload/chamber) "nCI" = ( /obj/machinery/component_printer, /obj/effect/turf_decal/bot_white, @@ -47377,14 +50381,16 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/station/maintenance/port) -"nCO" = ( -/obj/machinery/airalarm/directional/south, -/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, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"nCT" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + listening = 0; + name = "Station Intercom (Court)" + }, +/turf/open/floor/carpet, +/area/station/security/courtroom) "nDe" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47410,41 +50416,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/security/courtroom) -"nDB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/table, -/obj/item/pai_card, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) -"nDK" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Medbay - Upper Medical Storage North" - }, -/obj/machinery/light_switch/directional/north, -/turf/open/openspace, -/area/station/medical/storage) -"nDM" = ( -/obj/item/reagent_containers/cup/glass/bottle/wine_voltaic{ - pixel_y = 5; - pixel_x = 7 - }, -/obj/structure/table, -/obj/item/reagent_containers/cup/glass/shaker{ - pixel_y = 6; - pixel_x = -6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "nDS" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/siding/blue{ @@ -47453,6 +50424,10 @@ /obj/effect/turf_decal/arrows{ dir = 4 }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + location = "Head of Personnel" + }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "nDX" = ( @@ -47469,15 +50444,27 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/fore) -"nEq" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"nEA" = ( +"nEn" = ( +/obj/structure/railing, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) +"nEr" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"nEt" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "nEM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47487,64 +50474,64 @@ /area/station/maintenance/starboard/central) "nEO" = ( /obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/tile/brown/fourcorners, /obj/machinery/camera/autoname/directional/west, /obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "nEQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nES" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/area/station/ai/satellite/interior) +"nEW" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"nFx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/area/station/maintenance/starboard) +"nEX" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/pen, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"nFp" = ( +/obj/effect/landmark/firealarm_sanity, +/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/dorms) +"nFz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "nFA" = ( -/obj/machinery/airalarm/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 }, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "nFB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/machinery/button/door/incinerator_vent_ordmix{ + pixel_y = 8; + pixel_x = -8 + }, /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) -"nFD" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) -"nFE" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - dir = 8 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "nFI" = ( /obj/effect/spawner/random/maintenance, /obj/effect/mapping_helpers/burnt_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/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "nFL" = ( /turf/closed/wall/r_wall, /area/station/security/execution/transfer) @@ -47582,13 +50569,10 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"nGp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +"nGq" = ( +/obj/structure/sign/poster/ripped/directional/south, +/turf/closed/wall, +/area/station/maintenance/department/medical) "nGr" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -47597,8 +50581,9 @@ /obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "nGs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47624,32 +50609,27 @@ /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"nGB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +"nGA" = ( +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "nGH" = ( -/obj/effect/turf_decal/siding/red{ - dir = 6 - }, -/obj/structure/filingcabinet{ - pixel_x = 4 - }, /obj/structure/railing{ dir = 6 }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/turf/open/floor/iron/dark, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) -"nGI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"nGP" = ( +/obj/machinery/button/door/directional/west{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -10 + }, +/turf/closed/wall, +/area/station/maintenance/disposal) "nGR" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -47657,6 +50637,21 @@ }, /turf/open/openspace, /area/station/command/gateway) +"nGV" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/newscaster/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "nGW" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -47708,6 +50703,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"nHG" = ( +/obj/item/training_toolbox{ + pixel_y = 6 + }, +/obj/item/training_toolbox, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/structure/rack, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "nHL" = ( /mob/living/basic/slime, /turf/open/floor/engine, @@ -47716,6 +50723,11 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"nIa" = ( +/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/engineering/storage/tech) "nIo" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters" @@ -47726,14 +50738,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"nIq" = ( -/obj/effect/turf_decal/siding/brown/end{ - dir = 8 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "nIu" = ( /obj/structure/table, /obj/item/reagent_containers/cup/beaker/large{ @@ -47751,20 +50759,16 @@ /obj/item/folder/red, /turf/open/floor/iron/dark/smooth_large, /area/station/security/courtroom) -"nID" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"nIH" = ( -/obj/structure/weightmachine, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"nIC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft/upper) "nIL" = ( /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -47784,6 +50788,13 @@ }, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"nIX" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nIY" = ( /obj/machinery/portable_atmospherics/canister/plasma, /obj/effect/turf_decal/box/red, @@ -47822,7 +50833,7 @@ pixel_y = 2 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nJS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/disposal/bin, @@ -47832,9 +50843,12 @@ /turf/open/floor/iron/freezer, /area/station/commons/toilet/auxiliary) "nJU" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" }, +/obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron, /area/station/cargo/storage) "nJV" = ( @@ -47842,43 +50856,90 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"nJW" = ( +/obj/structure/sign/warning/no_smoking/directional/west, +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"nKe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/lobby) +"nKf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "nKj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/sandbags, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"nKk" = ( +/obj/effect/decal/cleanable/blood/old, +/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, +/area/station/maintenance/starboard/central/upper) "nKn" = ( /obj/structure/stairs/south, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"nKp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "nKr" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 5 }, -/obj/structure/rack, /obj/machinery/firealarm/directional/east, +/obj/structure/rack, +/obj/item/pushbroom, /turf/open/floor/iron, /area/station/cargo/storage) -"nKz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nKB" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_x = 5; - pixel_y = 10 +"nKs" = ( +/obj/machinery/digital_clock/directional/south, +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/red/box, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/window/brigdoor/left/directional/north{ + name = "Chem Factory"; + req_access = list("plumbing") }, -/obj/item/pen, -/turf/open/floor/wood, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"nKB" = ( +/obj/machinery/shower/directional/south, +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/siding/blue/end, +/turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/central) -"nKD" = ( -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable/layer1, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +"nKE" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin2"; + name = "Decomissioned Cabin" + }, +/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/dark/textured_large, +/area/station/commons/dorms) "nKJ" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -47887,7 +50948,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nKP" = ( /obj/structure/sign/departments/restroom/directional/east, /obj/effect/turf_decal/trimline/dark_blue/warning, @@ -47897,7 +50958,11 @@ /turf/open/floor/iron/white/smooth_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"nKW" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "nLl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -47916,6 +50981,10 @@ "nLp" = ( /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"nLt" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "nLC" = ( /obj/effect/turf_decal/siding/brown, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -47942,32 +51011,29 @@ }, /area/station/science/robotics/lab) "nLU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/textured_corner{ - dir = 4 +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rear_surgery"; + name = "Surgery Shutters"; + dir = 1 }, +/turf/open/floor/plating, /area/station/medical/surgery) -"nMp" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/chair/sofa/corp/left{ - dir = 1 +"nLZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nMu" = ( -/obj/machinery/holopad, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"nMr" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "nMC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/slippery, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "nML" = ( @@ -47975,13 +51041,6 @@ /obj/structure/closet/l3closet/scientist, /turf/open/openspace, /area/station/command/gateway) -"nMV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/atmos/project) "nNd" = ( /obj/structure/railing/corner{ dir = 8 @@ -48001,10 +51060,35 @@ /obj/machinery/light/floor, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"nNg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"nNi" = ( +/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/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosengimainttriangle" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "nNj" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Bridge Escape" + }, +/obj/machinery/door/firedoor, /obj/structure/cable, -/turf/closed/wall, -/area/station/maintenance/central) +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "nNt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/mecha_wreckage/ripley{ @@ -48014,15 +51098,21 @@ /turf/open/floor/iron, /area/station/maintenance/starboard/central) "nNu" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes{ + dir = 4 }, -/obj/structure/railing{ +/obj/effect/turf_decal/stripes{ dir = 8 }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/textured, +/area/station/command/eva) +"nNA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "nNC" = ( /obj/machinery/power/smes, /obj/structure/cable, @@ -48058,27 +51148,33 @@ /turf/open/floor/iron/smooth_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nNY" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, /turf/open/floor/iron/smooth, /area/station/engineering/main) -"nNZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/textured_corner{ - dir = 1 - }, -/area/station/medical/surgery) "nOe" = ( -/obj/structure/statue/sandstone/venus, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nOm" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/button/door/directional/east{ + id = "Cabin9"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/wood, -/area/station/command/meeting_room/council) +/area/station/commons/dorms) "nOo" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/dirt, @@ -48104,32 +51200,50 @@ /obj/machinery/airalarm/directional/south, /obj/machinery/washing_machine, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nOF" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "HoPsToy"; - name = "Loading Conveyor"; - pixel_x = -13; - pixel_y = 8 - }, -/obj/structure/chair/comfy/brown{ +/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/wood/corner{ dir = 8 }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) +"nOK" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"nOT" = ( +/obj/item/statuebust, +/obj/machinery/light/cold/no_nightlight/directional/east, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) +"nOV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) "nPb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank, /obj/structure/sign/poster/contraband/space_cola/directional/north, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "nPe" = ( /obj/structure/railing{ dir = 4 }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "nPf" = ( /obj/effect/decal/cleanable/dirt, @@ -48149,61 +51263,16 @@ /obj/machinery/suit_storage_unit/security, /turf/open/floor/iron/dark/smooth_large, /area/station/security/eva) -"nPA" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/medkit/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/brute, -/obj/item/storage/medkit/brute{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/structure/lattice/catwalk, -/obj/machinery/door/window/right/directional/west{ - name = "First Aid Supplies"; - req_access = list("medical") - }, -/turf/open/openspace, -/area/station/medical/storage) -"nPB" = ( -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "nPN" = ( /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"nPP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nPS" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump/on/layer5{ - name = "N2 to Airmix" - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "nPW" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "nPY" = ( /obj/effect/decal/cleanable/dirt, @@ -48232,15 +51301,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"nQs" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ +"nQu" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "nQw" = ( /obj/structure/railing/corner/end{ dir = 4 @@ -48256,6 +51323,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/construction/storage_wing) +"nQE" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "nQG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48279,13 +51355,6 @@ }, /turf/open/floor/grass, /area/station/science/genetics) -"nRk" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "nRm" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/tile, @@ -48301,12 +51370,10 @@ /turf/open/floor/iron/dark, /area/station/security/checkpoint/customs) "nRz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "nRE" = ( /turf/open/openspace, /area/station/medical/medbay/central) @@ -48318,6 +51385,12 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) +"nRN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "nRP" = ( /obj/machinery/power/solar_control{ dir = 1; @@ -48327,25 +51400,6 @@ /obj/structure/cable, /turf/open/floor/glass/reinforced, /area/station/solars/starboard/fore) -"nRS" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/minisat/directional/west, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"nSk" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 9 - }, -/obj/machinery/vending/drugs, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) -"nSp" = ( -/obj/structure/closet/radiation, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "nSs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48363,16 +51417,10 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "nSu" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 14 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -1; - pixel_y = 7 +/obj/structure/bodycontainer/morgue{ + dir = 1 }, -/obj/machinery/status_display/ai/directional/south, +/obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) "nSx" = ( @@ -48380,20 +51428,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/station/service/abandoned_gambling_den) -"nSS" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +"nSK" = ( +/obj/structure/table/reinforced, +/obj/item/trash/candle{ + pixel_x = 11; + pixel_y = 11 }, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" +/obj/item/trash/candle{ + pixel_x = 7; + pixel_y = 3 }, -/obj/machinery/bouldertech/refinery, -/obj/structure/railing{ - dir = 1 +/obj/item/trash/candle{ + pixel_x = -9; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"nSS" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 }, +/obj/structure/sign/poster/random/directional/west, /turf/open/floor/iron, /area/station/cargo/miningoffice) "nSX" = ( @@ -48410,6 +51467,23 @@ }, /turf/open/floor/iron, /area/station/science/explab) +"nTf" = ( +/obj/machinery/computer/atmos_control/nitrous_tank, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"nTg" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) "nTj" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/siding/dark{ @@ -48422,7 +51496,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nTl" = ( /obj/structure/table, /obj/item/clothing/head/soft/grey{ @@ -48439,16 +51513,6 @@ }, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"nTp" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/tank_dispenser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "nTv" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -48464,6 +51528,9 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"nTy" = ( +/turf/open/floor/engine/hull/air, +/area/station/commons/fitness/recreation) "nTA" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, @@ -48481,49 +51548,41 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/science/lab) -"nTM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) +"nTU" = ( +/obj/item/ammo_casing/spent{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "nTX" = ( /obj/structure/lattice/catwalk, /obj/machinery/airalarm/directional/south, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) "nUd" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/wrapping, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing/corner/end{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"nUj" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/break_room) -"nUk" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/oil/slippery, +/obj/structure/closet/crate, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"nUi" = ( +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) "nUo" = ( /obj/structure/lattice/catwalk, /obj/effect/spawner/random/maintenance, @@ -48532,7 +51591,18 @@ "nUq" = ( /obj/structure/ladder, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"nUr" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/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/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "nUw" = ( /mob/living/carbon/human/species/monkey, /obj/effect/turf_decal/weather/dirt{ @@ -48551,15 +51621,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/science/lobby) -"nUB" = ( -/obj/structure/lattice/catwalk, -/obj/item/kirbyplants/random/dead{ - desc = "You guys had ONE job."; - name = "the community's plant" - }, -/obj/structure/railing, -/turf/open/openspace, -/area/station/commons/dorms) "nUC" = ( /obj/machinery/newscaster/directional/east{ pixel_y = 2 @@ -48580,6 +51641,13 @@ }, /turf/open/floor/iron/dark/smooth_edge, /area/station/commons/lounge) +"nUF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "nUV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -48591,11 +51659,12 @@ /turf/open/floor/iron/dark, /area/station/science/xenobiology) "nVc" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, /obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, +/obj/structure/chair/plastic, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "nVg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, @@ -48617,9 +51686,21 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison) +"nVz" = ( +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "nVE" = ( /turf/closed/wall/r_wall, /area/station/service/abandoned_gambling_den) +"nVV" = ( +/obj/item/banner/command/mundane, +/turf/open/floor/plating, +/area/station/maintenance/port) +"nVY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/recharge_floor, +/area/station/maintenance/starboard/aft/upper) "nWe" = ( /obj/structure/cable, /obj/machinery/power/emitter/welded{ @@ -48638,14 +51719,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"nWs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 11 +"nWu" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/directional/west, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) "nWD" = ( /obj/structure/railing{ dir = 8 @@ -48664,7 +51747,7 @@ pixel_y = 8 }, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nWI" = ( /obj/effect/spawner/random/contraband/permabrig_weapon, /obj/effect/spawner/random/structure/crate_loot, @@ -48680,8 +51763,11 @@ /turf/open/floor/wood/large, /area/station/commons/lounge) "nWO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, +/obj/machinery/light/directional/east, +/obj/effect/landmark/start/captain, +/obj/structure/bed/double, +/obj/item/bedsheet/captain/double, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "nWS" = ( /obj/effect/turf_decal/stripes/line{ @@ -48700,16 +51786,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"nWV" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/lattice/catwalk, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo Bay - Security Post (High)"; - pixel_x = 14 - }, -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/security/checkpoint/supply) +"nWX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "nWY" = ( /obj/structure/disposalpipe/trunk/multiz/down{ dir = 2 @@ -48726,6 +51808,14 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) +"nXh" = ( +/obj/structure/cable, +/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, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "nXi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48742,18 +51832,31 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nXp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nXr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +/area/station/ai/satellite/interior) +"nXq" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"nXw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) +/turf/open/floor/plating, +/area/station/medical/medbay/central) +"nXB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "nXQ" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -48768,7 +51871,15 @@ name = "AI Core Access" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"nXR" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/horrific_experiment, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "nXY" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -48779,7 +51890,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nYc" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance/no_decals/six, @@ -48818,7 +51929,17 @@ network = list("minisat") }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"nYA" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) "nYD" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "SM_shutters"; @@ -48828,47 +51949,31 @@ /area/station/engineering/supermatter) "nYQ" = ( /turf/open/floor/iron/smooth_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"nYR" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/ai/satellite/foyer) "nYT" = ( +/obj/structure/ladder, /obj/structure/railing{ dir = 4 }, -/obj/structure/ladder, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/stripes{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) -"nYZ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) -"nZa" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/turf/open/floor/iron/textured, +/area/station/command/eva) +"nYV" = ( +/obj/machinery/atmospherics/components/unary/passive_vent, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"nZb" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/jungle{ - pixel_y = -7 - }, -/obj/structure/flora/bush/pale/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) +/obj/structure/sign/warning/hot_temp/directional/west, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"nYZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) "nZd" = ( /obj/machinery/mass_driver/ordnance{ dir = 4; @@ -48878,6 +51983,14 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"nZq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "nZt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -48971,36 +52084,47 @@ "oaj" = ( /turf/closed/wall, /area/station/security/medical) -"oaA" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) +"oam" = ( +/turf/open/floor/engine/hull/air, +/area/station/medical/medbay/central) +"oan" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "oaF" = ( -/obj/structure/window/reinforced/spawner/directional/north, /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, /obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "oaQ" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, /turf/closed/wall/r_wall, /area/station/science/xenobiology) +"oaX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/chief_engineer, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "obn" = ( /turf/closed/wall/r_wall, /area/station/hallway/primary/central) -"obp" = ( -/obj/machinery/fax{ - fax_name = "Chief Engineer's Office"; - name = "Chief Engineer's Fax Machine" - }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "obu" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /obj/effect/turf_decal/trimline/yellow, @@ -49011,7 +52135,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "obv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/holopad, @@ -49024,22 +52148,36 @@ /obj/structure/flora/rock/style_4, /obj/structure/flora/bush/flowers_br/style_3, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "obJ" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "miningshuttleexit" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, /turf/open/floor/iron, /area/station/cargo/miningoffice) +"obM" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ + pixel_x = 5; + pixel_y = 9 + }, +/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/supermatter/room/upper) "obQ" = ( +/obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, -/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch/directional/north, +/obj/structure/bed/medical/emergency{ + dir = 4 + }, /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, @@ -49051,10 +52189,6 @@ /obj/effect/landmark/start/research_director, /turf/open/floor/glass/reinforced, /area/station/command/heads_quarters/rd) -"oce" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "ocj" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -49066,11 +52200,17 @@ /turf/open/floor/wood, /area/station/commons/storage/tools) "ocq" = ( -/obj/machinery/plumbing/receiver{ +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, -/turf/open/floor/wood, -/area/station/medical/medbay/central) +/obj/machinery/door/window/left/directional/north{ + name = "Anti Assistant Protection Door"; + req_access = list("medical") + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/cryo) "ocy" = ( /obj/machinery/door/airlock/silver{ name = "Freezer" @@ -49084,14 +52224,6 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"ocF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "ocG" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -49104,16 +52236,13 @@ /turf/open/floor/iron/grimy, /area/station/security/detectives_office/private_investigators_office) "ocL" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 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/carpet, -/area/station/command/meeting_room/council) +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "ocN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49141,11 +52270,24 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) +"ocW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "Cabin9"; + name = "Cabin 9" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) "odd" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/ladder, +/obj/effect/turf_decal/stripes/white/box, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "odg" = ( @@ -49162,17 +52304,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/service/chapel/office) -"odB" = ( -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -2 - }, +"odo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"odE" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/area/station/maintenance/starboard/upper) "odM" = ( /obj/item/bodypart/head/lizard, /obj/effect/decal/cleanable/blood/old, @@ -49184,7 +52322,7 @@ }, /obj/machinery/light/directional/south, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "odZ" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue{ @@ -49193,6 +52331,15 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"oef" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) "oey" = ( /obj/structure/broken_flooring/singular/directional/east, /turf/open/floor/plating, @@ -49214,34 +52361,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood/tile, /area/station/science/robotics) -"oeF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/lattice/catwalk, +"oeH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"oeQ" = ( +/obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"oeR" = ( -/obj/structure/table, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) -"oeV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "O2 Multideck Adapter"; - dir = 8 - }, -/obj/machinery/meter{ - name = "O2 meter" +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "ofc" = ( /obj/machinery/digital_clock/directional/west, /obj/structure/disposalpipe/trunk{ @@ -49268,27 +52403,16 @@ }, /area/station/hallway/primary/fore) "ofr" = ( -/obj/structure/closet, -/obj/item/clothing/gloves/radio, -/obj/item/clothing/suit/jacket/straight_jacket, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 3 - }, -/obj/item/storage/box/rxglasses, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/item/reagent_containers/cup/beaker/cryoxadone, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, /turf/open/floor/iron/dark, /area/station/medical/cryo) +"ofs" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "ofE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49297,6 +52421,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood/large, /area/station/service/bar) +"ofK" = ( +/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/atmos/office) "ofL" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -49313,6 +52444,15 @@ dir = 4 }, /area/station/science/robotics) +"ofY" = ( +/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/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "ogc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -49331,31 +52471,22 @@ /obj/structure/sign/warning/yes_smoking/circle/directional/west, /turf/open/floor/iron, /area/station/science/research) -"ogn" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) -"ogB" = ( -/obj/machinery/power/turbine/core_rotor{ - dir = 8; - mapping_id = "main_turbine" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "ogF" = ( /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/hallway/primary/central) -"ogG" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/station/commons/dorms) +"ogR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/plasma_tank, +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ohb" = ( /obj/machinery/airalarm/directional/south, /obj/item/toy/crayon/white{ @@ -49372,9 +52503,20 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"ohd" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "ohh" = ( /turf/open/floor/grass, /area/station/science/cytology) +"ohi" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "ohp" = ( /obj/effect/spawner/random/trash/graffiti{ pixel_y = 32 @@ -49393,13 +52535,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"ohw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "ohy" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49408,13 +52543,20 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, /area/station/hallway/primary/port) -"ohJ" = ( -/obj/structure/disposalpipe/trunk/multiz/down{ +"ohG" = ( +/turf/closed/wall, +/area/station/maintenance/aft) +"ohH" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 4 }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +/obj/structure/cable, +/obj/machinery/light_switch/directional/west{ + pixel_y = -6 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "ohP" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -49439,18 +52581,38 @@ /obj/structure/sign/departments/virology/directional/east, /turf/open/floor/plating, /area/station/medical/virology) +"oim" = ( +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "oio" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/machinery/light/warm/directional/south, /obj/structure/flora/grass/jungle/a/style_2, /obj/structure/flora/bush/flowers_br/style_2, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oip" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/brown/filled/line, /turf/open/floor/iron, /area/station/cargo/storage) +"oit" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"oiw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "oiz" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -49462,13 +52624,19 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "oiH" = ( -/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 +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 }, -/obj/structure/cable, -/turf/open/floor/iron/dark, /area/station/medical/cryo) "oiM" = ( /obj/structure/table, @@ -49479,11 +52647,6 @@ /obj/item/electronics/apc, /turf/open/floor/wood, /area/station/commons/storage/tools) -"oiQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "oiR" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -49493,6 +52656,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"oiV" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "oiW" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -49510,19 +52680,13 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "ojj" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 +/turf/open/floor/iron/edge{ + dir = 1 }, -/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"ojr" = ( -/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) "ojx" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron/dark/smooth_large, @@ -49552,23 +52716,36 @@ /turf/open/floor/wood/tile, /area/station/science/robotics) "ojU" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/wood, /area/station/service/library) +"ojV" = ( +/obj/structure/lattice/catwalk, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/structure/table, +/obj/machinery/newscaster/directional/south, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "ojW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/closed/wall, /area/station/service/chapel/office) -"ojZ" = ( -/obj/structure/bed, -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/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) "okc" = ( /obj/structure/lattice/catwalk, /obj/structure/window/reinforced/spawner/directional/south, @@ -49590,17 +52767,13 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/exit/departure_lounge) -"okm" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored{ - cable_layer = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 5 +"okt" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + dir = 8 }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/turf/open/openspace, +/area/station/maintenance/aft/upper) "oky" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -49612,14 +52785,14 @@ /turf/open/floor/wood/large, /area/station/hallway/secondary/service) "okC" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/machinery/flasher/directional/east{ - id = "hopflash" +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "Lcommissaryshutter"; + name = "Vacant Commissary Shutter" }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) "okE" = ( /obj/structure/railing{ dir = 9 @@ -49634,6 +52807,21 @@ }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) +"okG" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"okJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "okM" = ( /obj/structure/closet/crate{ name = "Spare Chairs" @@ -49650,22 +52838,17 @@ /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/wood, /area/station/service/library/printer) -"okO" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"okP" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/autoname/directional/east, -/turf/open/openspace, -/area/station/engineering/lobby) "olm" = ( /obj/structure/stairs/west, /obj/structure/railing, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"oln" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "olv" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49673,48 +52856,49 @@ /obj/effect/landmark/navigate_destination/court, /turf/open/floor/carpet, /area/station/security/courtroom) -"olL" = ( -/obj/effect/turf_decal/trimline/white/corner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 +"olB" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/paper/pamphlet/gateway{ + pixel_x = -13; + pixel_y = 4 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"olM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/poster/contraband/missing_gloves/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"olG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, /turf/open/floor/iron, -/area/station/science/breakroom) -"olU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/area/station/commons/fitness/recreation) +"olH" = ( +/obj/machinery/duct, /obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) -"omc" = ( -/obj/effect/turf_decal/trimline/yellow/filled, -/obj/item/kirbyplants/random/fullysynthetic, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "omu" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/mineral/stacking_unit_console{ - pixel_x = 32 - }, +/obj/item/storage/bag/trash/filled, /turf/open/floor/plating, /area/station/maintenance/disposal) -"omx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/vending/colavend, -/obj/effect/mapping_helpers/broken_machine, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) +"omw" = ( +/obj/machinery/door/window/brigdoor/left/directional/north{ + req_access = list("command"); + name = "Conference Room" + }, +/turf/open/floor/iron/stairs/medium{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"omF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) "omG" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/effect/turf_decal/siding/purple/corner{ @@ -49725,6 +52909,10 @@ }, /turf/open/floor/iron, /area/station/science/lab) +"omU" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "omX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -49733,13 +52921,6 @@ /obj/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"onh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "onj" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/newscaster/directional/north, @@ -49748,24 +52929,11 @@ }, /turf/open/floor/wood/large, /area/station/medical/psychology) -"onm" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/machinery/door/airlock/command{ - name = "Abandoned Lab" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "onn" = ( /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 8 }, -/obj/effect/decal/cleanable/generic, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) "onv" = ( @@ -49776,16 +52944,11 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/cargo/storage) -"onG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"onB" = ( +/obj/structure/sign/poster/contraband/donk_co/directional/east, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/port) "onV" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49793,11 +52956,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/port) -"oob" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/layer1, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +"onW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "ood" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, @@ -49812,35 +52979,14 @@ /obj/structure/frame/machine, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) +"oov" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "oox" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/carpet, /area/station/security/courtroom) -"ooy" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ooF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ooK" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/multitool{ - pixel_x = 7; - pixel_y = -4 - }, -/obj/structure/disposalpipe/trunk/multiz, -/obj/item/stamp/head/qm{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "ooS" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 1 @@ -49848,7 +52994,7 @@ /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/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ooY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -49866,19 +53012,18 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) "opj" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/carpet, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"ops" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "opu" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating/airless, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/plating, /area/station/maintenance/port/aft) "opA" = ( /obj/effect/turf_decal/siding/wood/corner{ @@ -49901,35 +53046,25 @@ /area/station/maintenance/port/fore) "opJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer/blood, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"opL" = ( -/obj/machinery/door/airlock/mining{ - name = "Deliveries" - }, -/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/all/supply/shipping, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + dir = 1; + name = "decommissioned sleeper" }, -/turf/open/floor/iron, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"opL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/station/cargo/sorting) "opO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/large, +/area/station/medical/break_room) "opU" = ( /obj/structure/table, /obj/item/camera{ @@ -49942,6 +53077,16 @@ }, /turf/open/floor/glass, /area/station/science/zoo) +"opV" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "opW" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -49963,10 +53108,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"oqd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "oqi" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hydropony_shutters"; @@ -49975,6 +53116,17 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/hydroponics) +"oql" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "oqq" = ( /obj/structure/table, /obj/item/folder/red, @@ -49988,18 +53140,9 @@ /turf/open/floor/plating, /area/station/construction/storage_wing) "oqA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/fake_stairs/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) -"oqW" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "ora" = ( /obj/structure/railing/corner/end, /obj/effect/turf_decal/stripes/corner{ @@ -50014,31 +53157,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/robotics/lab) -"orb" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"orm" = ( +"ork" = ( /obj/structure/cable, -/obj/structure/sign/poster/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/firealarm_sanity, -/turf/open/floor/iron, -/area/station/engineering/main) -"orn" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/table/reinforced, -/obj/item/storage/briefcase/secure{ - pixel_x = -1; - pixel_y = 4 +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/obj/item/paper/monitorkey, -/obj/item/clipboard, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "orr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/graffiti, @@ -50076,6 +53201,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/research) +"orR" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"osf" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) "osp" = ( /obj/machinery/door/airlock/public/glass{ name = "Departure Balcony" @@ -50083,21 +53225,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/fore) -"osu" = ( -/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/lobby) "osx" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_cargobay"; - name = "Cargo Bay Shutters" +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/right/directional/south{ + req_access = list("maint_tunnels"); + name = "Danger: Conveyor Access" }, -/obj/effect/spawner/random/maintenance, -/obj/machinery/door/firedoor, /turf/open/floor/plating, -/area/station/cargo/storage) +/area/station/maintenance/disposal) "osC" = ( /obj/structure/table, /obj/item/clipboard{ @@ -50121,6 +53256,10 @@ /obj/machinery/light/directional/east, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) +"osD" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "osO" = ( /turf/open/floor/engine{ name = "Holodeck Projector Floor" @@ -50145,25 +53284,29 @@ /turf/open/space/openspace, /area/space/nearstation) "osZ" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) -"otb" = ( -/obj/structure/sign/directions/command/directional/west{ - dir = 2; - pixel_y = 5 +/obj/item/clothing/gloves/radio, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/glasses/eyepatch, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 3 }, -/obj/structure/sign/directions/evac/directional/west{ - dir = 2; - pixel_y = -3 +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 3 }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"otf" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/medical/cryo) +/obj/item/storage/box/rxglasses, +/obj/item/reagent_containers/cup/beaker/cryoxadone, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/item/radio/intercom/directional/west, +/obj/item/storage/box/syringes{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "oti" = ( /obj/machinery/door/airlock/virology{ name = "Genetics Lab" @@ -50189,14 +53332,27 @@ dir = 8 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"otW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mop_bucket, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "ouo" = ( -/obj/machinery/holopad, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "ouq" = ( /obj/structure/lattice/catwalk, /obj/machinery/vending/cigarette, @@ -50208,6 +53364,10 @@ }, /turf/open/openspace, /area/station/hallway/secondary/construction) +"ouC" = ( +/obj/structure/sign/departments/medbay/alt/directional/south, +/turf/open/openspace, +/area/station/medical/medbay/central) "ouE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -50222,15 +53382,11 @@ }, /turf/open/floor/iron/kitchen, /area/station/hallway/secondary/service) -"ouH" = ( +"ouJ" = ( /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/trunk/multiz{ - dir = 4 - }, +/obj/effect/decal/cleanable/blood/footprints, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "ouK" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -50240,13 +53396,26 @@ /area/station/hallway/secondary/service) "ouW" = ( /obj/structure/sign/plaques/kiddie/library{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/structure/railing{ dir = 4 }, /turf/open/floor/iron/stairs/right, /area/station/service/library) +"ovh" = ( +/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/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "ovq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output, /turf/open/floor/engine/co2, @@ -50273,16 +53442,26 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/greater) -"ovN" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/engine_smes) +"ovJ" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "ovQ" = ( /obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"ovV" = ( +/obj/machinery/shower/directional/west, +/obj/structure/fluff/shower_drain, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/engineering/main) "owf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/north, @@ -50295,6 +53474,10 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/engine, /area/station/service/hydroponics) +"owk" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "own" = ( /turf/closed/wall, /area/station/hallway/secondary/service) @@ -50303,14 +53486,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/hallway/primary/starboard) -"ows" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/plating, -/area/station/medical/cryo) "owv" = ( /obj/machinery/status_display/door_timer{ id = "brig3"; @@ -50327,10 +53502,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"owz" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) "owK" = ( /obj/structure/mineral_door/wood, /turf/open/floor/plating, @@ -50354,11 +53525,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"oxe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/glass, -/area/station/maintenance/starboard/aft) +"oxc" = ( +/obj/machinery/holopad, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "oxg" = ( /obj/machinery/photocopier/prebuilt, /obj/structure/railing{ @@ -50366,48 +53537,31 @@ }, /turf/open/floor/wood/large, /area/station/service/library/private) -"oxi" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/wood, -/obj/item/paper/crumpled{ - pixel_x = 2; - pixel_y = 7 +"oxo" = ( +/obj/item/cigbutt{ + pixel_x = 8; + pixel_y = -2 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"oxn" = ( -/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/plating, +/area/station/maintenance/starboard/aft/upper) +"oxy" = ( /obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/landmark/navigate_destination/atmos, -/turf/open/floor/iron/freezer, -/area/station/engineering/main) -"oxp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" +/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/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) +"oxC" = ( /obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/maintenance/port) -"oxu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/maintenance/starboard) "oxG" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -50421,21 +53575,21 @@ name = "Teleporter Shutters" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) +"oxH" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/ammo_casing/spent{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "oxJ" = ( /obj/structure/table/reinforced, /obj/item/wrench, /obj/item/crowbar, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"oxM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/chamber) "oxS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/shower/directional/east, @@ -50449,20 +53603,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"oyi" = ( -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"oys" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 4 +"oym" = ( +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5; + pixel_y = -3 }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"oyp" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "oyy" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/box/white, @@ -50470,6 +53622,22 @@ dir = 4 }, /area/station/science/ordnance/storage) +"oyz" = ( +/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/iron, +/area/station/engineering/lobby) +"oyA" = ( +/obj/effect/mapping_helpers/burnt_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/iron/dark, +/area/station/engineering/atmos/office) "oyB" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/warning/explosives/alt/directional/west, @@ -50481,17 +53649,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"oyG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" +"oyJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Office Maintenance" }, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"oyS" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"oyU" = ( +/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/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "ozh" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -50519,9 +53697,6 @@ /obj/effect/mapping_helpers/airlock/access/all/command/gateway, /turf/open/floor/wood, /area/station/command/gateway) -"ozp" = ( -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "ozt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -50532,30 +53707,14 @@ /obj/effect/mapping_helpers/mail_sorting/science/research, /turf/open/floor/iron, /area/station/science/research) -"ozw" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ozE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "ozK" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 }, /obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "ozL" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -50583,11 +53742,29 @@ }, /turf/open/space/openspace, /area/space/nearstation) +"ozS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "oAa" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/open/space/basic, /area/station/solars/starboard/aft) +"oAf" = ( +/obj/structure/light_construct/directional/east{ + dir = 1 + }, +/obj/structure/closet/secure_closet/bar/all_access{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "oAo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/kirbyplants/photosynthetic, @@ -50598,14 +53775,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"oAJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2o{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/area/station/ai/upload/foyer) "oAL" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -50637,14 +53807,10 @@ dir = 1 }, /area/station/science/robotics/lab) -"oBa" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"oBl" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "oBo" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 1" @@ -50659,6 +53825,13 @@ /obj/structure/window/reinforced/plasma/spawner/directional/south, /turf/open/floor/engine/co2, /area/station/engineering/atmos/upper) +"oBr" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random/medical/memeorgans, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "oBy" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -50683,10 +53856,15 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood/large, /area/station/service/library) -"oBM" = ( -/obj/machinery/portable_atmospherics/canister, +"oBO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, /turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/area/station/engineering/supermatter/room/upper) "oBT" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -50723,30 +53901,11 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"oCr" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"oCs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"oCA" = ( -/obj/effect/decal/cleanable/dirt, +"oCp" = ( +/obj/effect/turf_decal/stripes/line, /obj/structure/cable, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "oCE" = ( /obj/machinery/door/airlock/maintenance{ name = "Delinquent Confiscation Storage" @@ -50758,17 +53917,16 @@ /obj/structure/girder, /turf/open/space/basic, /area/space/nearstation) +"oCN" = ( +/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/lobby) "oCO" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"oCS" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "oCT" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 @@ -50776,17 +53934,6 @@ /obj/item/clothing/head/cone, /turf/open/floor/engine/hull, /area/space/nearstation) -"oCU" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "oCX" = ( /obj/structure/railing{ dir = 1 @@ -50812,13 +53959,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"oDg" = ( -/obj/structure/table, -/obj/item/reagent_containers/cup/coffeepot, -/obj/item/storage/box/coffeepack, -/obj/machinery/coffeemaker, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "oDj" = ( /obj/machinery/power/port_gen/pacman/pre_loaded, /obj/structure/cable, @@ -50828,14 +53968,62 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"oDp" = ( +/obj/item/book/manual/wiki/atmospherics, +/obj/structure/table, +/obj/item/book/manual/wiki/atmospherics{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"oDq" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/obj/item/screwdriver{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/radio/off{ + pixel_x = 10 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) "oDs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/ce) +"oDu" = ( +/obj/item/stack/sheet/mineral/wood{ + pixel_x = -5; + pixel_y = -6 }, -/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/starboard/central) +/area/station/security/detectives_office/private_investigators_office) +"oDx" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/obj/effect/decal/remains/human, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"oDB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/dorms) "oDC" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -50867,7 +54055,7 @@ /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/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oDN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -50877,6 +54065,20 @@ /obj/machinery/light/floor, /turf/open/floor/iron/textured, /area/station/security/brig) +"oDZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"oEh" = ( +/obj/structure/table/glass, +/obj/item/flashlight/flare/candle{ + pixel_x = 9; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "oEi" = ( /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, @@ -50899,17 +54101,15 @@ /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/maintenance/port/aft) -"oEN" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/lattice/catwalk, -/turf/open/floor/engine/hull/air, -/area/station/engineering/break_room) "oET" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/structure/chair/plastic{ + dir = 4 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "oEU" = ( /obj/structure/lattice/catwalk, @@ -50919,19 +54119,28 @@ /obj/machinery/vending/games, /turf/open/openspace, /area/station/construction/storage_wing) +"oFa" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/duct, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "oFg" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/textured_large, /area/station/medical/virology) "oFh" = ( -/obj/structure/rack, -/obj/item/tattoo_kit, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "oFj" = ( /obj/machinery/door/airlock/mining/glass{ name = "Bitrunning Den" @@ -50960,6 +54169,11 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"oFo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) "oFw" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -50971,24 +54185,29 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"oFI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "oFQ" = ( /turf/closed/wall/r_wall, /area/station/security/prison/rec) -"oFU" = ( -/obj/structure/rack, -/obj/item/pai_card, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"oGj" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ +"oGb" = ( +/obj/effect/turf_decal/tile/purple/half{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "Plasma Multideck Adapter"; dir = 4 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/machinery/meter{ + name = "Plasma meter" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "oGu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -51021,42 +54240,40 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "oGH" = ( -/obj/structure/chair{ - dir = 8 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 }, /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) -"oGO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"oGW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +"oGX" = ( +/obj/item/kirbyplants/random/dead{ + name = "dead plant" + }, +/obj/machinery/button/door/directional/east{ + id = "Cabin2"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "oHf" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 10 }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"oHs" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "oHu" = ( /obj/structure/sign/departments/restroom/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "oHw" = ( /obj/effect/decal/cleanable/dirt, @@ -51069,10 +54286,14 @@ /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) "oHE" = ( -/obj/machinery/holopad/secure, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) +"oHF" = ( +/turf/open/floor/plating, +/area/station/maintenance/aft) "oHH" = ( /turf/open/openspace, /area/station/maintenance/port) @@ -51083,6 +54304,18 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"oHY" = ( +/obj/structure/table/wood, +/obj/item/book/bible{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"oIe" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "oIi" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 5 @@ -51092,10 +54325,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"oIk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "oIv" = ( /obj/structure/table, /obj/item/flashlight/lamp{ @@ -51103,12 +54332,49 @@ }, /turf/open/floor/wood/large, /area/station/medical/psychology) -"oII" = ( +"oIA" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/structure/table, +/obj/item/bodybag{ + pixel_y = 8; + pixel_x = -1 + }, +/obj/item/bodybag{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/storage/medkit/emergency{ + pixel_z = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"oIB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"oID" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"oII" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/arrows/red{ + dir = 8 + }, +/obj/effect/turf_decal/box/red, /turf/open/floor/iron/dark/textured, -/area/station/cargo/warehouse) +/area/station/cargo/sorting) "oIR" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, @@ -51119,7 +54385,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oIU" = ( /obj/item/canvas/twentythree_nineteen, /obj/item/canvas/nineteen_nineteen, @@ -51131,31 +54397,24 @@ }, /obj/structure/closet/crate, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/service/library) "oJd" = ( -/obj/effect/turf_decal/trimline/brown/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, -/obj/machinery/light/warm/dim/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/keycard_auth/wall_mounted/directional/east, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/effect/spawner/random/maintenance, +/turf/open/floor/engine/hull/air, +/area/station/cargo/storage) "oJe" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 9 +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay-office"; + name = "Medbay Shutters"; + dir = 1 }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/turf/open/floor/plating, +/area/station/medical/office) "oJh" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 @@ -51168,7 +54427,10 @@ }, /obj/structure/cable, /obj/machinery/keycard_auth/wall_mounted/directional/south, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "oJj" = ( /obj/structure/table/reinforced, @@ -51181,18 +54443,7 @@ pixel_y = 11 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) -"oJr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/openspace, -/area/station/medical/storage) +/area/station/command/vault) "oJs" = ( /obj/structure/table/reinforced, /obj/structure/displaycase/forsale{ @@ -51210,24 +54461,28 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"oJt" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Lower Entrance" + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "oJv" = ( -/obj/effect/turf_decal/siding/blue/corner, /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/textured_large, -/area/station/medical/medbay/central) -"oJx" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/area/station/medical/medbay/central) "oJy" = ( /obj/effect/turf_decal/trimline/yellow/line{ dir = 4 @@ -51236,7 +54491,7 @@ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "oJz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/warning/vacuum/directional/west, @@ -51245,18 +54500,42 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"oJK" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/commons/dorms) "oJX" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"oKe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "oKg" = ( /turf/closed/wall, /area/station/engineering/storage/tcomms) +"oKk" = ( +/obj/machinery/button/elevator{ + id = "catwalk_engi"; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oKr" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "oKt" = ( /obj/structure/falsewall, /obj/effect/decal/cleanable/blood/tracks{ @@ -51270,10 +54549,10 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/central) -"oKx" = ( -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +"oKy" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "oKA" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 @@ -51283,7 +54562,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oKD" = ( /obj/structure/filingcabinet/chestdrawer, /obj/structure/disposalpipe/segment{ @@ -51291,18 +54570,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/explab) -"oKI" = ( -/obj/effect/turf_decal/tile/neutral/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/dark, -/area/station/medical/chemistry) -"oKN" = ( -/obj/structure/broken_flooring/singular/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "oLa" = ( /obj/structure/table/wood, /obj/item/book/bible{ @@ -51324,8 +54591,24 @@ /turf/open/floor/iron/freezer, /area/station/security/prison/shower) "oLi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/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/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast-2"; + name = "Bridge Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + id_tag = "innerbridge" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, /area/station/command/bridge) "oLj" = ( /obj/effect/turf_decal/trimline/yellow/warning, @@ -51350,7 +54633,7 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oLv" = ( /obj/machinery/door/airlock/public/glass{ name = "Arrivals Lounge" @@ -51364,18 +54647,11 @@ /obj/effect/landmark/navigate_destination/dockarrival, /turf/open/floor/iron/white/side, /area/station/hallway/primary/aft) -"oLx" = ( -/obj/structure/broken_flooring/side/directional/east, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) "oLA" = ( /obj/structure/closet/firecloset, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"oLE" = ( -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "oLH" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -51383,7 +54659,7 @@ }, /obj/structure/railing, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "oLJ" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 4 @@ -51411,7 +54687,9 @@ /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "oLW" = ( /obj/structure/railing/corner{ @@ -51419,18 +54697,17 @@ }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"oLX" = ( -/obj/structure/cable/layer1, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oMd" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/item/grown/bananapeel{ - name = "stealthy banana peel" +"oMr" = ( +/obj/structure/plasticflaps/kitchen, +/obj/machinery/door/airlock/medical{ + name = "Medical Cold Room" }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/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) +/area/station/medical/coldroom) "oMI" = ( /obj/machinery/door/airlock/command{ name = "Teleport Access" @@ -51469,20 +54746,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/stellar, /area/station/maintenance/hallway/abandoned_recreation) -"oNb" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "oNc" = ( /obj/structure/closet/lasertag/red, /obj/effect/decal/cleanable/dirt, @@ -51497,10 +54760,6 @@ /obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, /turf/open/floor/glass/reinforced, /area/station/service/library) -"oNp" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "oNs" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -51510,7 +54769,20 @@ "oNu" = ( /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"oNy" = ( +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "O2 Multideck Adapter"; + dir = 8 + }, +/obj/machinery/meter{ + name = "O2 meter" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "oNA" = ( /obj/item/clothing/head/cone{ pixel_x = -6; @@ -51518,40 +54790,31 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"oNM" = ( -/obj/effect/turf_decal/siding/white{ - dir = 10 +"oNB" = ( +/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, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) -"oNP" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/photocopier/prebuilt, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"oNH" = ( +/obj/item/kirbyplants/photosynthetic, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) +"oNM" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "oOc" = ( /obj/machinery/light/floor, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"oOd" = ( -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - name = "decommissioned sleeper" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) -"oOm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "oOs" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -51567,28 +54830,21 @@ /obj/structure/chair, /obj/effect/landmark/start/hangover, /obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"oOz" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "holodeck" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "oOB" = ( /obj/machinery/power/shieldwallgen, /obj/effect/turf_decal/stripes/line, /turf/open/floor/wood, /area/station/command/teleporter) +"oOE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/item/storage/medkit/toxin, +/obj/structure/rack, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "oON" = ( /obj/effect/turf_decal/box/white{ color = "#52B4E9" @@ -51602,10 +54858,8 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","medbay"); - c_tag = "Medbay - Lower Central Hallway" - }, +/obj/effect/mapping_helpers/mail_sorting/medbay/general, +/obj/structure/disposalpipe/sorting/mail/flip, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "oOY" = ( @@ -51626,11 +54880,17 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/security/brig) -"oPd" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) +"oPf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosmaintedge" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "oPh" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/dark_blue{ @@ -51639,11 +54899,21 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"oPu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) +"oPm" = ( +/obj/machinery/computer/security/telescreen/engine/directional/south{ + name = "Engine Camera Monitor" + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"oPH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "oPM" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -51655,7 +54925,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) +"oPO" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "oPP" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 6 @@ -51663,12 +54942,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"oPW" = ( -/obj/effect/mob_spawn/corpse/human/assistant, -/obj/structure/closet/crate/trashcart, -/obj/effect/mob_spawn/corpse/human/monkey, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "oPY" = ( /obj/structure/table, /obj/item/hand_labeler{ @@ -51681,10 +54954,6 @@ /obj/item/hand_tele, /turf/open/floor/wood, /area/station/command/teleporter) -"oQk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "oQn" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -51703,9 +54972,18 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/station/maintenance/port/aft) -"oRp" = ( -/turf/open/floor/iron/textured_large, -/area/space/nearstation) +"oRi" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "oRs" = ( /obj/structure/chair/plastic{ dir = 1 @@ -51713,6 +54991,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/service/cafeteria) +"oRA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"oRD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/central) "oRG" = ( /obj/structure/railing, /obj/structure/rack, @@ -51726,8 +55015,17 @@ /obj/item/circuitboard/machine/exoscanner{ pixel_y = -3 }, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) +"oRH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "oRI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/dark_blue/opposingcorners{ @@ -51742,7 +55040,7 @@ pixel_y = 16 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oRM" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -51751,36 +55049,16 @@ /obj/machinery/airalarm/directional/east, /turf/open/openspace, /area/station/command/gateway) -"oRU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "oSb" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, /obj/machinery/keycard_auth/wall_mounted/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"oSo" = ( -/obj/machinery/door/airlock/command{ - name = "Auxiliary E.V.A. Storage" +/obj/machinery/computer/communications{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) "oSq" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /obj/structure/cable, @@ -51798,42 +55076,25 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"oSE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "oSI" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/station/hallway/primary/central) "oST" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/arrows{ - dir = 1 - }, /obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"oSU" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/machinery/computer/station_alert{ - dir = 8 +/obj/effect/turf_decal/stripes/red/end, +/obj/effect/turf_decal/siding/red/end, +/turf/open/floor/iron/textured_corner{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"oSX" = ( -/obj/structure/urinal/directional/north, +/area/station/command/gateway) +"oSV" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/contraband/narcotics, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"oSZ" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) "oTd" = ( /obj/structure/lattice, /turf/open/openspace, @@ -51844,81 +55105,111 @@ }, /turf/open/floor/glass, /area/station/science/zoo) +"oTg" = ( +/obj/structure/lattice, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"oTi" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "oTn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/medbay/central) -"oTp" = ( -/obj/structure/sign/warning/yes_smoking/circle/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oTq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/simple/supply{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"oTr" = ( -/obj/structure/railing/corner{ +/obj/structure/chair/office/light{ dir = 8 }, -/obj/machinery/duct, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"oTq" = ( +/obj/structure/sink/directional/east, +/obj/machinery/iv_drip, +/obj/structure/mirror/directional/west, +/turf/open/floor/iron/dark/textured_corner, +/area/station/medical/surgery) "oTu" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/pale/style_random, /obj/machinery/camera/autoname/directional/south, /turf/open/floor/grass, /area/station/hallway/secondary/entry) -"oTE" = ( -/obj/structure/broken_flooring/singular/directional/north, -/obj/item/stack/sheet/cotton{ - pixel_x = 8; - pixel_y = 10 +"oTF" = ( +/obj/structure/sign/directions/engineering/directional/north{ + dir = 8; + pixel_y = 0 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oTJ" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/closed/wall, +/area/station/maintenance/starboard/aft) "oTK" = ( -/obj/machinery/button/door/directional/north{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/east{ id = "gateshutter"; name = "Gateway Shutter Control"; - pixel_x = 24; - pixel_y = 0; req_access = list("command") }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, +/turf/open/floor/carpet/purple, /area/station/command/gateway) "oTO" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ dir = 4 }, -/obj/effect/landmark/start/chemist, +/obj/machinery/chem_mass_spec, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "oTQ" = ( -/obj/machinery/chem_master, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 7 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -3 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -3 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -3 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -3 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -3 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -3 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -3 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -3 + }, +/obj/item/reagent_containers/dropper, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/stack/cable_coil{ + pixel_x = -12 + }, +/obj/item/multitool, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "oTR" = ( @@ -51932,6 +55223,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"oTS" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 8 + }, +/obj/item/stack/medical/mesh, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "oTZ" = ( /obj/structure/table, /obj/structure/railing{ @@ -51973,17 +55280,14 @@ /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"oUo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 1; - cable_layer = 1 +"oUr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/cable/multilayer/layer1, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "oUC" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -52013,25 +55317,35 @@ /obj/structure/table/wood/fancy, /turf/open/openspace, /area/station/maintenance/port/fore) -"oUO" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/directions/evac/directional/north{ - dir = 8; - pixel_y = 28 - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +"oUL" = ( +/obj/machinery/bookbinder, +/turf/open/floor/wood, +/area/station/service/library/printer) "oUQ" = ( /obj/machinery/telecomms/processor/preset_two, /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"oVg" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ +"oUS" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) +"oVe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"oVh" = ( +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "oVn" = ( /obj/machinery/dna_scannernew, /obj/machinery/firealarm/directional/south, @@ -52049,13 +55363,6 @@ /obj/structure/cable, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"oVF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "oVK" = ( /obj/structure/chair/office{ dir = 4 @@ -52066,30 +55373,43 @@ /obj/structure/displaycase/trophy, /turf/open/floor/wood/large, /area/station/service/library) -"oVY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/table, -/obj/item/reagent_containers/cup/soda_cans/thirteenloko{ - pixel_x = 14; +"oVQ" = ( +/obj/machinery/photocopier/prebuilt, +/obj/machinery/firealarm/directional/east{ pixel_y = 3 }, -/obj/item/book/manual/wiki/engineering_construction, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/machinery/light_switch/directional/east{ + pixel_y = -8 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) +"oWt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "oWy" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/engine/hull/reinforced/air, /area/station/maintenance/port) +"oWD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"oWJ" = ( +/obj/structure/rack, +/obj/item/pai_card, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "oWL" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"oWN" = ( -/obj/machinery/camera/autoname/directional/west, -/turf/open/openspace, -/area/station/engineering/lobby) "oWO" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -52109,7 +55429,7 @@ dir = 10 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oWU" = ( /obj/item/wrench, /turf/open/floor/plating, @@ -52124,10 +55444,6 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) -"oXh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "oXn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner{ @@ -52135,11 +55451,37 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"oXp" = ( +/mob/living/basic/turtle{ + name = "John Arbuckle" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/mapping_helpers/mob_buckler, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) +"oXv" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) +"oXB" = ( +/obj/structure/ladder, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "oXE" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "oXJ" = ( @@ -52147,20 +55489,11 @@ dir = 1 }, /obj/machinery/camera/autoname/directional/south{ - dir = 5; - network = list("aicore") + network = list("aicore"); + pixel_x = 24 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"oXO" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/ai/satellite/chamber) "oXQ" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -52170,20 +55503,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/maintenance/port/aft) -"oXS" = ( -/obj/structure/cable, -/obj/machinery/light_switch/directional/east, -/obj/item/crowbar, -/obj/item/pipe_dispenser{ - pixel_y = 8 - }, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/rack, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "oXT" = ( /obj/effect/turf_decal/stripes/asteroid/corner{ dir = 8 @@ -52195,18 +55514,6 @@ /obj/effect/spawner/random/entertainment/money_large, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) -"oXX" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"oXZ" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/structure/rack{ - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "oYd" = ( /obj/structure/disposalpipe/trunk{ dir = 2 @@ -52216,12 +55523,10 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"oYn" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"oYm" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "oYp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner/end/flip{ @@ -52234,28 +55539,28 @@ dir = 10 }, /obj/structure/table, -/obj/effect/decal/cleanable/dirt, /obj/item/phone{ pixel_x = -3; pixel_y = 2 }, -/obj/item/pen{ - pixel_x = 6; - pixel_y = 9 +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/ai/upload/chamber) +"oYu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 8 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "oYy" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/pharmacy) +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "oYE" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/green/opposingcorners{ @@ -52273,34 +55578,28 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"oZe" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "oZh" = ( /obj/structure/rack, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "oZn" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) -"oZt" = ( -/obj/vehicle/ridden/wheelchair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"oZA" = ( -/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 = 4 +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rear_surgery"; + name = "Surgery Shutters" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/medical/surgery) "oZC" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -52320,8 +55619,10 @@ }, /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) "oZG" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/table, @@ -52333,16 +55634,16 @@ "oZJ" = ( /turf/open/floor/glass/reinforced, /area/station/service/library) -"oZN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +"oZK" = ( +/obj/structure/table, +/obj/item/petri_dish{ + pixel_x = 4; + pixel_y = 7 }, -/turf/open/openspace, -/area/station/medical/storage) +/obj/item/petri_dish, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "oZO" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -52350,14 +55651,9 @@ /obj/effect/spawner/random/trash/botanical_waste, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"oZV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/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, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +"oZS" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "oZX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/carpet/black, @@ -52382,18 +55678,10 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/glass, /area/station/service/kitchen) -"paq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"paI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/dorms) +"paE" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos/upper) "paM" = ( /obj/structure/curtain/bounty/start_closed, /turf/open/floor/plating, @@ -52402,17 +55690,32 @@ /obj/structure/window/reinforced/tinted/spawner/directional/north, /turf/open/openspace, /area/station/medical/virology) +"paZ" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "pbc" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 +/obj/machinery/firealarm/directional/north, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"pbe" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/air, +/area/station/engineering/supermatter/room/upper) "pbk" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -52423,36 +55726,29 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "pbp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/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/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/machinery/door/airlock/medical, /turf/open/floor/plating, -/area/station/medical/abandoned) +/area/station/medical/break_room) "pbq" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/yellow/warning, /obj/structure/table/reinforced, /turf/open/floor/engine/hull, /area/space/nearstation) -"pbt" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"pbE" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pbB" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/turf/open/floor/wood, +/area/station/commons/dorms) "pbG" = ( /obj/structure/rack, /obj/item/book/manual/wiki/engineering_construction{ @@ -52482,18 +55778,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"pbU" = ( +"pbY" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"pbZ" = ( -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "pca" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52513,10 +55803,14 @@ /turf/open/floor/iron, /area/station/science/research) "pce" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/obj/effect/landmark/start/cargo_technician, +/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/iron, +/turf/open/floor/catwalk_floor, /area/station/cargo/storage) "pcf" = ( /obj/effect/turf_decal/siding/green{ @@ -52524,13 +55818,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"pcg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "pch" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/flora/bush/flowers_pp/style_random, @@ -52573,20 +55860,35 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) -"pcL" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/warning/vacuum/directional/north, +"pcD" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/closet/emcloset, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pcQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/area/station/maintenance/starboard/fore) +"pcE" = ( +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"pcM" = ( +/obj/machinery/atmospherics/components/tank/air/layer4, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "pcR" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -52594,20 +55896,35 @@ /turf/open/floor/iron, /area/station/hallway/secondary/construction) "pdf" = ( +/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 = 8 - }, -/obj/effect/turf_decal/arrows{ - dir = 1 + dir = 10 }, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) +"pdg" = ( +/obj/effect/decal/cleanable/glitter, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "pdr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/effect/turf_decal/stripes{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/structure/sign/poster/official/safety_internals/directional/north, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "pdy" = ( /obj/structure/bed, /obj/effect/decal/cleanable/dirt, @@ -52647,18 +55964,17 @@ /obj/structure/cable, /turf/closed/wall, /area/station/engineering/main) -"pdM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "pdO" = ( /turf/closed/wall, /area/station/medical/pharmacy) +"pdY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/main) "pec" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -52675,11 +55991,18 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"pee" = ( -/obj/structure/disposalpipe/segment, +"ped" = ( +/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 + }, /obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/structure/disposalpipe/sorting/mail{ + dir = 2 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "pef" = ( /obj/structure/transport/linear/public, /obj/structure/table, @@ -52696,63 +56019,43 @@ pixel_y = -3 }, /obj/machinery/barsign{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/plating/elevatorshaft, /area/station/service/kitchen) -"pem" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Cryogenics Room" - }, -/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/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) "pen" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) -"peo" = ( -/obj/machinery/computer/atmos_control/mix_tank{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "pev" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/maintenance/port/fore) -"pey" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "space-outpost" +"peI" = ( +/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{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"peF" = ( -/obj/effect/spawner/structure/window, -/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/security/courtroom) +/area/station/maintenance/starboard) +"peL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Air to Mix" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "peQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/structure/railing, /turf/open/floor/iron/textured, /area/station/cargo/storage) "peS" = ( @@ -52763,6 +56066,9 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) "peX" = ( @@ -52791,8 +56097,7 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "pfp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim/directional/south, +/obj/machinery/light/directional/south, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) "pfu" = ( @@ -52801,41 +56106,65 @@ /obj/effect/turf_decal/trimline/yellow/arrow_cw, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"pfx" = ( -/obj/effect/spawner/random/maintenance, -/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) -"pfK" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +"pfM" = ( +/obj/structure/sign/directions/supply/directional/east{ + dir = 2; + pixel_x = 0 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/closed/wall, +/area/station/maintenance/starboard/central) "pfN" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/wood/tile, /area/station/maintenance/port/aft) -"pgh" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 +"pfO" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pfQ" = ( +/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/engineering/atmos/hfr_room) +"pfR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 2 }, -/obj/machinery/firealarm/directional/east, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=22-Mech-Bay"; + location = "21-Central" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) +"pfS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Abandoned Hallway" + }, +/obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/hallway/secondary/construction) +"pfY" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/reagent_containers/cup/soda_cans/pwr_game, +/obj/item/radio/intercom/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "pgo" = ( /obj/structure/flora/bush/flowers_br/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -52852,11 +56181,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"pgu" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "pgw" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 5 @@ -52864,36 +56188,29 @@ /turf/open/floor/engine/hull, /area/space/nearstation) "pgx" = ( +/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/dust, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 5 }, /turf/open/floor/iron, /area/station/cargo/storage) -"pgA" = ( -/turf/open/floor/iron/stairs{ - dir = 4 - }, -/area/station/maintenance/starboard/aft) "pgI" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/suit/apron/surgical, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) "pgJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ +/obj/machinery/modular_computer/preset/id{ dir = 8 }, -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/light_switch/directional/east, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","medbay"); - c_tag = "Medbay - Upper Cryo" +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 }, -/turf/open/openspace, -/area/station/medical/cryo) +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) "pgM" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -52902,25 +56219,16 @@ /turf/open/floor/iron/dark, /area/station/science/ordnance) "pgN" = ( -/obj/machinery/chem_dispenser, -/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/dark/smooth_large, /area/station/medical/pharmacy) -"pgQ" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/paper/pamphlet/gateway{ - pixel_x = -13; - pixel_y = 4 +"pgT" = ( +/obj/machinery/vatgrower, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 }, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "phc" = ( /obj/item/radio/intercom/directional/west, /obj/machinery/light/small/directional/west, @@ -52933,70 +56241,91 @@ /obj/item/gun/energy/e_gun, /obj/item/gun/energy/e_gun, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "phd" = ( -/obj/structure/chair/office{ - name = "CE's Chair" - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"phf" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 3 - }, -/obj/item/clothing/suit/hazardvest{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/black{ - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black{ - pixel_y = -3 - }, -/obj/item/clothing/mask/gas, -/obj/structure/railing{ - dir = 6 +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "phh" = ( -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/status_display/evac/directional/north, +/turf/open/openspace, +/area/station/medical/medbay/central) +"phn" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/sign/poster/contraband/grey_tide/directional/west, +/obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/turf/open/floor/engine/hull/air, -/area/station/medical/chemistry) +/obj/structure/table/reinforced, +/obj/item/storage/box/shipping{ + pixel_y = 5; + pixel_x = -2 + }, +/obj/item/storage/box/lights/mixed{ + pixel_y = 2; + pixel_x = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "phu" = ( /obj/structure/transit_tube, /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/light/floor, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) +"phw" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Reception" + }, +/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/blue/full, +/turf/open/floor/iron/white, +/area/station/medical/office) "phy" = ( /obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, /obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/openspace, /area/station/medical/medbay/central) +"phz" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp{ + pixel_y = 10 + }, +/obj/item/toy/figure/ce{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) "phE" = ( /obj/structure/lattice/catwalk, /obj/structure/table, /obj/effect/spawner/random/maintenance, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) +"phI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "phL" = ( /obj/structure/railing{ dir = 8 @@ -53017,6 +56346,12 @@ /obj/structure/filingcabinet/chestdrawer{ pixel_y = 2 }, +/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/customs) "phT" = ( @@ -53027,7 +56362,7 @@ dir = 1 }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pim" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -53035,6 +56370,33 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"pio" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/cable, +/turf/open/openspace, +/area/station/command/meeting_room/council) +"piC" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"piF" = ( +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron, +/area/station/cargo/storage) +"piN" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) "piR" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -53044,6 +56406,10 @@ /obj/machinery/light/small/blacklight/directional/north, /turf/open/floor/eighties/red, /area/station/maintenance/hallway/abandoned_recreation) +"piW" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "pjd" = ( /obj/machinery/camera/directional/west{ c_tag = "Kitchen" @@ -53061,6 +56427,57 @@ /obj/structure/closet/firecloset, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"pji" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/sign/poster/official/state_laws/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"pjj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"pjk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/suit_storage_unit/medical, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"pjn" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"pjp" = ( +/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/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "pjt" = ( /obj/machinery/disposal/bin, /obj/effect/decal/cleanable/dirt, @@ -53069,6 +56486,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) +"pjB" = ( +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) "pjC" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/cigar, @@ -53078,11 +56502,37 @@ "pjN" = ( /turf/open/floor/iron/kitchen, /area/station/maintenance/port/aft) -"pkc" = ( -/obj/structure/sink/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/virology) +"pka" = ( +/obj/docking_port/stationary/mining_home{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"pkh" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"pkn" = ( +/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/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) "pko" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/coffee, @@ -53108,10 +56558,20 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"pkx" = ( +"pkw" = ( /obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/north, -/turf/open/openspace, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) +"pkx" = ( +/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/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "pkz" = ( /obj/machinery/dna_infuser, @@ -53119,15 +56579,31 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, /area/station/science/cytology) +"pkI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "pkK" = ( /obj/structure/rack, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"pkO" = ( -/obj/structure/lattice, -/obj/structure/barricade/wooden, -/turf/open/space/basic, -/area/space/nearstation) +"pkS" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/medical/chemistry) +"pkW" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/pumproom) +"plk" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/engine_smes) "plq" = ( /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, @@ -53137,6 +56613,18 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/space/basic, /area/space/nearstation) +"plQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"plW" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/medical/medbay/central) "pma" = ( /obj/structure/chair, /obj/item/cigbutt, @@ -53149,11 +56637,19 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"pmd" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "pmf" = ( /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/textured_large, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "pmg" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -53161,11 +56657,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"pmn" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/machinery/shower/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "pms" = ( /obj/machinery/door/airlock/grunge, /obj/effect/turf_decal/siding/dark{ @@ -53178,7 +56669,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pmw" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -53189,35 +56680,24 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"pmx" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "pmD" = ( /obj/structure/railing{ dir = 8 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pmI" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, /area/station/maintenance/port) "pmL" = ( -/obj/machinery/chem_dispenser, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 + dir = 4 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 4 }, -/obj/machinery/light/directional/north, +/obj/structure/tank_holder/extinguisher, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "pmN" = ( @@ -53255,18 +56735,10 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "pmX" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/bookcase/random/reference, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/machinery/modular_computer/preset/civilian, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "pna" = ( /obj/item/sticker/star, /obj/structure/closet/crate/wooden, @@ -53276,11 +56748,10 @@ /obj/item/sticker/smile, /obj/item/sticker/smile, /obj/item/sticker/heart, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/station/maintenance/port/aft) "pnc" = ( /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, @@ -53290,26 +56761,21 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/checkpoint/engineering) -"pnd" = ( -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) "pno" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/commons/storage/tools) "pnq" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/blood/oil/slippery, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 5 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/obj/effect/turf_decal/stripes/corner{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "pnu" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 4 @@ -53319,6 +56785,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"pny" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) +"pnF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mecha_wreckage/ripley/deathripley, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "pnG" = ( /obj/machinery/requests_console/directional/north{ department = "Robotics"; @@ -53349,18 +56831,9 @@ /area/station/science/ordnance) "pog" = ( /obj/machinery/gateway/centerstation, -/turf/open/floor/iron/dark, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, /area/station/command/gateway) -"pom" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/station/engineering/main) "por" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/glass, @@ -53379,27 +56852,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"pov" = ( -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) -"poZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) -"ppa" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +"ppe" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "ppp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/dark_blue, @@ -53409,18 +56866,40 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"ppL" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) -"ppX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 +"ppu" = ( +/obj/structure/railing, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/grass, +/area/station/hallway/primary/starboard) +"ppY" = ( +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"pqc" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pqd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, +/obj/structure/sign/poster/official/work_for_a_future/directional/west, +/obj/machinery/camera/autoname/directional/west, /obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "pqj" = ( /turf/closed/wall/r_wall, /area/station/security/interrogation) @@ -53431,41 +56910,22 @@ }, /turf/open/floor/carpet, /area/station/service/chapel/office) -"pqQ" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) -"pqW" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"prn" = ( -/obj/effect/decal/cleanable/blood/old, +"pqo" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/vatgrower, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) +/obj/effect/spawner/random/maintenance, +/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/starboard) "prr" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/assembly/flash/handheld{ - pixel_x = -11; - pixel_y = 5 +/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/wood{ + dir = 10 }, -/obj/effect/turf_decal/siding/wood, /obj/machinery/status_display/evac/directional/south, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/wood, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "prB" = ( /obj/effect/turf_decal/box/white{ @@ -53475,7 +56935,7 @@ uses = 10 }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "prC" = ( /obj/effect/turf_decal/siding/wideplating_new{ dir = 1 @@ -53500,46 +56960,67 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"prO" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) "prV" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 9 +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/medical/medbay/lobby) +"prX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 }, -/obj/machinery/stasis, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"prZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/obj/machinery/defibrillator_mount/directional/east, -/obj/machinery/light/directional/east, /obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/turf/open/floor/iron/dark, +/area/station/commons/locker) "psi" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/obj/effect/landmark/event_spawn, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) "psj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/evidence) "psk" = ( -/turf/closed/wall, -/area/station/command/gateway) +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/textured, +/area/station/command/eva) "psn" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/security/brig) +"psp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "pss" = ( /obj/structure/chair/sofa/right/brown{ dir = 4 @@ -53565,7 +57046,7 @@ /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "psK" = ( /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ @@ -53576,7 +57057,7 @@ }, /obj/structure/table/reinforced, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "psO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -53584,33 +57065,13 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"psQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","medbay"); - c_tag = "Medbay - Lower Virology Entrance" - }, -/obj/structure/disposalpipe/segment{ +"psU" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/binary/crystallizer{ dir = 4 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/virology) -"ptk" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "ptt" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -53622,21 +57083,31 @@ /obj/machinery/light/dim/directional/north, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"ptC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/openspace, -/area/station/medical/storage) "ptI" = ( /obj/structure/railing/corner{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk, -/turf/open/openspace/coldroom, -/area/station/medical/coldroom) +/turf/open/openspace, +/area/station/maintenance/department/medical) +"ptM" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ptS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "ptT" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -53650,24 +57121,38 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"pub" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "puf" = ( /obj/structure/cable/layer3, /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/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "puh" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/service/chapel) +"pul" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"puv" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"pux" = ( +/obj/item/stack/sticky_tape{ + pixel_x = 8; + pixel_y = 14 + }, +/obj/structure/table, +/obj/item/stack/sticky_tape{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/screwdriver, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "puC" = ( /obj/structure/lattice/catwalk, /obj/machinery/camera/autoname/directional/west, @@ -53696,75 +57181,70 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) +"pva" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "pvg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"pvp" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/main) "pvC" = ( -/obj/structure/table/glass, /obj/effect/turf_decal/siding/blue{ dir = 9 }, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 11 - }, +/obj/structure/bookcase/random/reference, /obj/structure/railing{ dir = 8 }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/stamp/denied{ - pixel_x = 6 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 }, -/obj/item/pen{ - pixel_x = -1; - pixel_y = 13 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/obj/effect/turf_decal/tile/green/opposingcorners{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "pvF" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/dark, /area/station/security/brig) -"pvQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"pvS" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/break_room) +"pvN" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "pvT" = ( /obj/structure/railing{ dir = 8 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) -"pvU" = ( -/obj/structure/cable/layer1, -/obj/structure/sign/warning/radiation/rad_area/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) -"pwb" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank In" +/area/station/ai/upload/chamber) +"pwj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "Cabin10"; + name = "Cabin 10" }, -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) "pwy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -53776,7 +57256,9 @@ dir = 1 }, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "pwB" = ( /obj/structure/table, @@ -53793,7 +57275,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "pwO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -53826,31 +57308,52 @@ dir = 8 }, /area/station/hallway/primary/fore) +"pwW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"pwY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner/end, +/obj/structure/railing/corner/end{ + pixel_y = 2 + }, +/obj/structure/cable/multilayer/multiz, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"pxe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/ladder, +/obj/structure/fluff/paper/corner, +/turf/open/floor/wood, +/area/station/maintenance/aft) "pxv" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/wood, /area/station/commons/storage/tools) -"pxw" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) -"pxN" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "N2 Multideck Adapter"; - dir = 8 - }, -/obj/machinery/meter{ - name = "N2 meter" - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +"pxz" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"pxK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/siding/green/corner, +/turf/open/floor/plating, +/area/station/hallway/primary/central) "pxS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison/mess) +"pxX" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "pxZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -53873,11 +57376,14 @@ /turf/open/floor/plating, /area/station/hallway/secondary/entry) "pyf" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 +/obj/machinery/smartfridge/organ, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rear_surgery"; + name = "Surgery Shutters"; + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/iron/white/textured, +/turf/open/floor/plating, /area/station/medical/surgery) "pyh" = ( /obj/machinery/computer/records/security{ @@ -53894,10 +57400,36 @@ /obj/effect/spawner/random/maintenance/no_decals, /turf/open/space/basic, /area/space/nearstation) +"pyA" = ( +/obj/structure/rack, +/obj/item/cardboard_cutout{ + pixel_x = 8 + }, +/obj/item/cardboard_cutout, +/obj/item/cardboard_cutout{ + pixel_x = -5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) "pyB" = ( -/obj/machinery/light_switch/directional/east, -/turf/open/floor/carpet, +/obj/structure/secure_safe/directional/east, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) +"pyN" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "pyY" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, @@ -53950,6 +57482,11 @@ /obj/structure/table/wood/fancy, /turf/open/openspace, /area/station/maintenance/port/fore) +"pzr" = ( +/obj/structure/sign/poster/official/random/directional/east, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "pzy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -53957,13 +57494,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "pzQ" = ( /obj/structure/lattice/catwalk, -/obj/structure/railing{ - 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/openspace, /area/station/medical/medbay/central) "pzU" = ( @@ -53974,14 +57511,10 @@ /obj/item/reagent_containers/cup/glass/waterbottle/large, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"pzZ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/missing_gloves/directional/north, -/obj/machinery/rnd/production/circuit_imprinter, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +"pAd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "pAf" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/corner{ dir = 1 @@ -53993,44 +57526,88 @@ }, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pAn" = ( -/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/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood, -/area/station/medical/medbay/central) -"pAz" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"pAp" = ( +/obj/item/chair/plastic, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, /area/station/commons/fitness/recreation) -"pAH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) "pAJ" = ( /obj/item/radio/intercom/directional/east, /turf/open/floor/wood, /area/station/service/chapel) "pAU" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/medical_doctor, /turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +/area/station/medical/medbay/central) +"pAX" = ( +/obj/machinery/camera/preset/ordnance{ + c_tag = "Glass Floor"; + dir = 8 + }, +/turf/open/floor/glass/airless, +/area/station/maintenance/aft) "pBa" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, /turf/open/floor/iron, /area/station/cargo/storage) +"pBe" = ( +/obj/structure/ladder, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"pBf" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"pBh" = ( +/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/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"pBm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"pBv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"pBw" = ( +/obj/structure/bed, +/obj/effect/spawner/random/bedsheet, +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/dorms) "pBz" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, @@ -54038,7 +57615,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -54055,10 +57632,6 @@ /obj/structure/sign/poster/contraband/grey_tide/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"pBG" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "pBH" = ( /obj/item/key/janitor, /obj/vehicle/ridden/janicart, @@ -54077,24 +57650,6 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"pBJ" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Cargo Bay - Unloading (Low)" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/structure/railing/corner/end, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pBL" = ( -/obj/structure/table/reinforced, -/obj/item/hand_labeler, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "pBP" = ( /turf/open/floor/engine/air, /area/station/engineering/atmos/upper) @@ -54128,40 +57683,43 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"pDa" = ( +"pCB" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, /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/engineering/storage_shared) -"pDf" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - name = "SS13: Common Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/meta; - shuttle_id = "commonmining_home"; - width = 7 +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard/fore/upper) +"pCX" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"pCZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/ladder, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"pDi" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/commons/fitness/recreation) "pDp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"pDt" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "pDO" = ( /obj/structure/railing{ dir = 1 @@ -54177,6 +57735,15 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"pDQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "pDR" = ( /obj/effect/landmark/firealarm_sanity, /obj/structure/lattice/catwalk, @@ -54201,6 +57768,16 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"pEm" = ( +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/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/effect/turf_decal/tile/red, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "pEx" = ( /obj/structure/railing{ dir = 1 @@ -54217,11 +57794,7 @@ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pED" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/medical/medbay/central) +/area/station/ai/satellite/interior) "pEG" = ( /obj/effect/turf_decal/stripes/red/line{ dir = 4 @@ -54231,16 +57804,6 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) -"pEI" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "pEK" = ( /turf/open/floor/engine, /area/station/service/hydroponics) @@ -54252,7 +57815,7 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/wood, /area/station/service/chapel) "pEW" = ( @@ -54287,27 +57850,12 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/robotics/lab) -"pFb" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "pFp" = ( /obj/machinery/sparker/directional/west{ id = "Xenobio" }, /turf/open/openspace, /area/station/science/xenobiology) -"pFJ" = ( -/obj/machinery/atmospherics/components/trinary/mixer/flipped, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "pFR" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/dark_green{ @@ -54315,6 +57863,17 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) +"pFS" = ( +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) "pFX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -54322,62 +57881,47 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/carpet, /area/station/security/courtroom) +"pFY" = ( +/obj/structure/railing/corner/end, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "pGe" = ( /obj/structure/table, /obj/effect/spawner/random/engineering/toolbox, /obj/machinery/light/directional/north, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pGf" = ( -/obj/structure/railing, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pGk" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pGl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine/hull/air, -/area/station/engineering/atmos/project) +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "pGn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/wood/large, /area/station/medical/psychology) -"pGr" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "pGs" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red{ - pixel_y = 11 - }, -/obj/item/pen{ - pixel_y = 8 - }, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/camera/directional/south, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "pGt" = ( @@ -54387,12 +57931,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pGv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "pGD" = ( /obj/machinery/camera/directional/west{ c_tag = "Science - Xenobiology South"; @@ -54419,14 +57958,23 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"pGL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"pGP" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) "pGV" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L6" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "pHc" = ( @@ -54444,17 +57992,6 @@ }, /turf/open/floor/iron, /area/station/science/lab) -"pHd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "pHf" = ( /turf/open/floor/carpet, /area/station/commons/storage/tools) @@ -54472,42 +58009,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) -"pHq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, +"pHJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/port) -"pHx" = ( -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pHC" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) -"pHQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) -"pIf" = ( -/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/table, -/obj/item/stack/sheet/iron, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +/obj/structure/sign/flag/ssc/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "pIm" = ( /obj/structure/chair/comfy/black{ dir = 1 @@ -54516,19 +58026,6 @@ /obj/machinery/air_sensor, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) -"pIn" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"pIr" = ( -/obj/structure/chair, -/turf/open/floor/wood, -/area/station/commons/dorms) "pIt" = ( /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/all/security/general, @@ -54538,10 +58035,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) -"pID" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "pIP" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/dark_blue{ @@ -54551,17 +58044,6 @@ /obj/machinery/light/floor, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"pIV" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"pJf" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "pJi" = ( /obj/machinery/rnd/experimentor, /turf/open/floor/engine, @@ -54576,7 +58058,9 @@ /obj/structure/railing/corner/end/flip{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "pJp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54594,11 +58078,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/explab) -"pJC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mecha_wreckage/ripley/deathripley, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"pJt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "pJD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -54612,7 +58096,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pJG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -54635,17 +58119,15 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pJK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/machinery/cloning_pod{ - desc = "An old decommissioned scanner, permanently scuttled."; - icon_state = "scanner"; - name = "decommissioned cloning scanner" - }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/table/wood, +/obj/item/clothing/head/soft/blue, +/obj/item/clothing/head/soft/blue, +/turf/open/floor/wood/large, +/area/station/medical/break_room) "pJM" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 6 @@ -54656,6 +58138,14 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"pJP" = ( +/obj/machinery/light/red/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) "pJR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/bounty, @@ -54669,6 +58159,11 @@ "pJS" = ( /turf/open/floor/iron, /area/station/hallway/primary/aft) +"pJW" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/west, +/turf/open/space/basic, +/area/space/nearstation) "pKb" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -54676,13 +58171,9 @@ }, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) -"pKc" = ( -/obj/machinery/light/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "pKd" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, /turf/open/floor/plating, /area/station/command/gateway) "pKk" = ( @@ -54693,12 +58184,19 @@ }, /turf/open/floor/iron, /area/station/science/lobby) -"pKp" = ( -/obj/item/trash/can{ - pixel_x = -8 +"pKm" = ( +/obj/structure/railing{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/chair{ + dir = 8; + pixel_y = -2 + }, +/turf/open/floor/glass, +/area/station/medical/medbay/central) "pKA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54719,29 +58217,35 @@ /turf/open/floor/wood/tile, /area/station/science/robotics) "pKC" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"pKJ" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gravity Generator Area" +/turf/open/floor/engine/hull, +/area/space/nearstation) +"pKI" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + 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/engineering/construction, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) -"pKT" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/south{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - req_access = list("command") +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) +"pKP" = ( +/obj/effect/turf_decal/siding, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"pKT" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "pKU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54749,14 +58253,19 @@ /obj/structure/cable, /turf/open/floor/glass, /area/station/security/brig) +"pLa" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "pLd" = ( /obj/effect/turf_decal/trimline/brown/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/disposalpipe/segment, +/obj/machinery/photocopier/prebuilt, +/obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/station/cargo/storage) "pLg" = ( @@ -54774,15 +58283,22 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) +"pLq" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) "pLv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster's Storage" +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "pLx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -54800,13 +58316,15 @@ /turf/open/floor/iron, /area/station/science/research) "pLG" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 6 +/obj/machinery/porta_turret/ai{ + dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/turf/open/floor/circuit/red, +/area/station/ai/upload/chamber) +"pLL" = ( +/obj/structure/sign/departments/medbay/alt/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "pLN" = ( /obj/structure/falsewall, /turf/open/floor/plating, @@ -54816,49 +58334,23 @@ /obj/structure/noticeboard/directional/north, /turf/open/floor/wood/large, /area/station/service/library/private) -"pLP" = ( -/obj/machinery/power/terminal{ - dir = 1; - cable_layer = 1 - }, -/obj/structure/cable/multilayer/layer1, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) -"pLQ" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/engine/hull, -/area/space/nearstation) +"pLS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "pLT" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/turf_decal/tile/green/full, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "pLV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/west{ - name = "Pharmacy Desk"; - req_access = list("pharmacy") - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/yellow/full, +/obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ dir = 4; id = "chemshutters"; - name = "Chemistry Shutters" + name = "Pharmacy Shutters" }, -/turf/open/floor/iron/dark/smooth_large, +/turf/open/floor/plating, /area/station/medical/pharmacy) "pMd" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -54874,9 +58366,12 @@ /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/obj/structure/railing/corner, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "pMk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/spawner/random/engineering/tracking_beacon, @@ -54886,7 +58381,7 @@ /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "pMn" = ( @@ -54896,6 +58391,13 @@ /obj/effect/mapping_helpers/broken_machine, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"pMu" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/carpet, +/area/station/security/courtroom) "pMy" = ( /obj/effect/turf_decal/trimline/yellow/line{ dir = 4 @@ -54905,39 +58407,31 @@ }, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) +"pMC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "pME" = ( /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/smooth_large, /area/station/service/hydroponics) -"pMH" = ( -/obj/effect/decal/cleanable/crayon{ - icon_state = "!"; - pixel_x = 9; - pixel_y = -1 - }, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) "pML" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/toy/figure/hop{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/toy/figure/ian{ - pixel_x = -8; - pixel_y = 4 +/obj/structure/chair/comfy/brown{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/landmark/start/head_of_personnel, +/obj/effect/turf_decal/siding/wood/end{ dir = 8 }, -/turf/open/floor/carpet, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "pMS" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -54972,23 +58466,32 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "pNg" = ( +/obj/structure/railing/corner{ + dir = 1 + }, /obj/structure/railing{ dir = 1 }, -/obj/structure/rack, +/obj/structure/table/wood/fancy/green, /obj/effect/spawner/random/aimodule/harmless{ pixel_x = 2; - pixel_y = 3 + pixel_y = 8 + }, +/obj/effect/spawner/random/aimodule/harmless{ + pixel_x = -3; + pixel_y = -2 }, -/obj/item/ai_module/supplied/quarantine, -/obj/item/screwdriver, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pNh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall, /area/station/service/abandoned_gambling_den) +"pNj" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "pNk" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, @@ -54997,10 +58500,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "pNl" = ( @@ -55010,12 +58513,10 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/security/brig) -"pNA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +"pNr" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "pNF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55036,6 +58537,12 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) +"pNV" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "pOh" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55047,19 +58554,18 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"pOu" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/duct, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "pOD" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/structure/closet/l3closet, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"pOF" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/spawner/random/clothing/backpack, -/turf/open/floor/iron, -/area/station/commons/dorms) "pOM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55078,12 +58584,19 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/science/central) -"pOQ" = ( +"pOP" = ( +/obj/structure/window/reinforced/spawner/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{ - dir = 5 +/obj/structure/transit_tube/horizontal, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"pOQ" = ( +/obj/effect/turf_decal/trimline/brown/arrow_cw, +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 1 }, /turf/open/floor/iron, /area/station/cargo/storage) @@ -55091,11 +58604,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) -"pOW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "pPb" = ( /obj/effect/turf_decal/trimline/dark/arrow_cw{ dir = 8 @@ -55113,13 +58621,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"pPg" = ( -/obj/machinery/camera/preset/ordnance{ - c_tag = "Glass Floor"; - dir = 10 - }, -/turf/open/floor/glass/airless, -/area/station/maintenance/starboard/lesser) "pPk" = ( /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron, @@ -55132,38 +58633,34 @@ }, /turf/open/floor/iron/freezer, /area/station/maintenance/port) +"pPm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "pPn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) "pPt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/pen, /obj/item/pen, /obj/item/pen, -/obj/machinery/door/window/left/directional/west, -/obj/machinery/door/window/brigdoor/right/directional/east{ - name = "Head of Personnel's Desk"; - req_access = list("hop") +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office{ + dir = 8 }, -/turf/open/floor/plating, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) -"pPu" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "pPA" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -55181,21 +58678,18 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) -"pPG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "pPO" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, /obj/structure/cable, -/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/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) "pPS" = ( @@ -55208,29 +58702,18 @@ /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/item/storage/belt/utility{ - pixel_x = -3 - }, -/obj/item/storage/belt/utility{ - pixel_x = -3 - }, -/obj/machinery/camera/autoname/directional/south, /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ dir = 8 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "pQa" = ( /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, @@ -55262,24 +58745,24 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/service/hydroponics/garden/abandoned) +"pQp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "pQq" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/pen/fountain{ - pixel_x = 9; - pixel_y = 4 +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 +/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/stripes/line{ + dir = 10 }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "pQt" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -55303,29 +58786,17 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"pQG" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/port) "pQK" = ( /obj/structure/railing/corner, -/obj/machinery/door/airlock/medical{ - name = "Medbay Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured_large, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "pQQ" = ( -/obj/machinery/door/airlock/maintenance, +/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/structure/cable, -/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/central) "pQS" = ( @@ -55343,17 +58814,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"pQV" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"pRm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "pRt" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -55372,16 +58832,13 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"pRx" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pRA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"pRB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "pRG" = ( /obj/effect/turf_decal/tile/purple/half{ dir = 8 @@ -55421,24 +58878,43 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/construction/storage_wing) -"pRW" = ( -/obj/effect/turf_decal/stripes/line{ +"pSd" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/west, +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"pSi" = ( +/obj/item/cigbutt{ + pixel_x = -11; + pixel_y = -5 + }, /obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "pSj" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, /turf/open/floor/plating, /area/station/security/interrogation) -"pSx" = ( +"pSk" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/turf/open/floor/iron/textured_large, -/area/station/medical/abandoned) +/obj/structure/curtain, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"pSv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) "pSz" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -55456,17 +58932,6 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/aft) -"pSF" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/broken_flooring/singular/directional/west, -/obj/structure/broken_flooring/singular/always_floorplane/directional, -/obj/structure/broken_flooring/singular, -/obj/item/assembly/mousetrap, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "pSI" = ( /obj/machinery/firealarm/directional/south, /obj/structure/cable, @@ -55504,6 +58969,13 @@ }, /turf/open/floor/wood/large, /area/station/medical/psychology) +"pTp" = ( +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "pTu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55530,10 +59002,6 @@ }, /turf/open/floor/grass, /area/station/science/genetics) -"pTz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "pTB" = ( /obj/structure/table, /obj/item/taperecorder{ @@ -55549,29 +59017,23 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"pTS" = ( -/obj/machinery/power/emitter/prototype{ - desc = "Hell yeah."; - dir = 4; - name = "Betsy" - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) "pTT" = ( /obj/effect/turf_decal/trimline/red/filled/warning, /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/port) -"pTX" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"pUb" = ( -/obj/effect/landmark/start/chief_medical_officer, +"pTV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "pUe" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 10 @@ -55585,11 +59047,25 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"pUr" = ( +"pUp" = ( +/obj/effect/turf_decal/trimline/brown/filled/end, /obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, /turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/area/station/cargo/miningoffice) +"pUx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/components/binary/pump/on/layer5{ + name = "N2 to Airmix" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "pUE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -55607,6 +59083,12 @@ }, /turf/open/floor/carpet/black, /area/station/commons/lounge) +"pUU" = ( +/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/primary) "pUV" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line, /obj/machinery/light/cold/directional/south, @@ -55614,6 +59096,16 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/science/cytology) +"pUY" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "pUZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -55630,7 +59122,12 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"pVr" = ( +/obj/structure/cable, +/obj/structure/sign/poster/contraband/fake_bombable/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "pVw" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/mirror/directional/north, @@ -55642,26 +59139,53 @@ /area/station/maintenance/hallway/abandoned_recreation) "pVy" = ( /obj/effect/landmark/start/assistant, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) -"pVA" = ( -/obj/effect/turf_decal/stripes/line{ +"pVM" = ( +/obj/structure/disposalpipe/sorting/mail{ dir = 4 }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pWh" = ( -/obj/machinery/button/door/directional/west{ - id = "Cabin6"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 }, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/commons/dorms) +/turf/open/floor/iron, +/area/station/engineering/lobby) +"pVO" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/closet/secure_closet/security/engine, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"pWi" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"pWk" = ( +/obj/structure/chair{ + dir = 4; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"pWl" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "pWn" = ( /turf/open/floor/iron/stairs/medium{ dir = 8 @@ -55699,12 +59223,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) +"pWQ" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "pWR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/obj/structure/sign/clock/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) "pWZ" = ( /obj/machinery/door/airlock{ name = "Toilet" @@ -55739,10 +59271,36 @@ /obj/machinery/holopad, /turf/open/floor/iron/dark/diagonal, /area/station/service/theater) -"pXM" = ( -/obj/structure/railing/corner, +"pXF" = ( +/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/iron/dark/textured, +/area/station/cargo/warehouse) +"pXL" = ( +/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/opposingcorners{ + dir = 1 + }, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/engineering/storage/tech) +"pYg" = ( +/obj/structure/table/wood, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"pYi" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) "pYI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55753,42 +59311,59 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/effect/landmark/navigate_destination/aiupload, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"pZQ" = ( -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ +/area/station/ai/upload/foyer) +"pZd" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 +/turf/open/floor/wood, +/area/station/commons/dorms) +"pZv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ +/obj/effect/turf_decal/tile/brown{ dir = 1 }, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"pZJ" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"pZQ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "pZT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, +/obj/structure/chair/sofa/right/brown, +/obj/item/clothing/head/soft{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, /area/station/cargo/storage) -"pZX" = ( -/turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) -"qac" = ( -/obj/effect/turf_decal/siding/brown{ +"pZW" = ( +/obj/structure/chair/greyscale{ 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/junction{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) +"pZX" = ( +/turf/closed/wall, +/area/station/command/eva) +"pZZ" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "qae" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -55798,7 +59373,6 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) "qaf" = ( @@ -55819,6 +59393,13 @@ }, /turf/open/floor/wood, /area/station/security/detectives_office) +"qaq" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped/layer5{ + dir = 8; + name = "air mixer" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "qat" = ( /obj/effect/decal/cleanable/dirt, /obj/item/wirecutters{ @@ -55833,16 +59414,27 @@ /obj/machinery/wall_healer/directional/south, /turf/open/floor/iron, /area/station/science/research) +"qaw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/aft) "qaA" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) +"qaH" = ( +/obj/structure/dresser, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/station/commons/dorms) "qaI" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp, /obj/structure/lattice/catwalk, +/obj/structure/cable, /turf/open/openspace, /area/station/security/checkpoint/supply) "qaK" = ( @@ -55869,10 +59461,14 @@ }, /turf/open/floor/wood, /area/station/service/lawoffice) -"qbm" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +"qbq" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "qbw" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 8 @@ -55885,6 +59481,22 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/storage_shared) +"qbI" = ( +/obj/machinery/washing_machine, +/obj/machinery/airalarm/directional/north, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"qbM" = ( +/obj/effect/decal/cleanable/dirt, +/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 = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "qbT" = ( /turf/closed/wall/r_wall, /area/station/security/prison/mess) @@ -55895,23 +59507,23 @@ /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"qbZ" = ( -/obj/structure/transport/linear{ - radial_travel = 0 - }, -/obj/machinery/elevator_control_panel/directional/south{ - linked_elevator_id = "catwalk_engi"; - preset_destination_names = list("2"="Lower Engine","3"="Upper Atmos.") +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/turf/open/openspace, -/area/station/engineering/break_room) +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "qcb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, /area/station/science/xenobiology) +"qcc" = ( +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "qcx" = ( /obj/structure/stairs/south, /turf/open/floor/iron/stairs/medium{ @@ -55937,36 +59549,32 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/central) -"qcT" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/break_room) -"qcX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"qcQ" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"qcW" = ( +/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/plating, +/area/station/maintenance/starboard) "qdd" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/item/retractor, -/obj/item/retractor{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/bonesetter{ - pixel_x = -4 +/obj/machinery/power/apc/auto_name/directional/east, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical{ + pixel_y = -3 }, -/obj/item/bonesetter{ - pixel_x = 2; - pixel_y = 3 +/obj/structure/cable, +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) "qdi" = ( /obj/effect/decal/cleanable/dirt, @@ -55999,6 +59607,13 @@ }, /turf/open/floor/iron/airless, /area/station/maintenance/starboard/aft) +"qdP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "qdR" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, @@ -56036,32 +59651,12 @@ /obj/machinery/light/directional/west, /turf/open/openspace, /area/station/hallway/primary/fore) -"qei" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) -"qek" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "qel" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"qep" = ( -/obj/structure/sink/directional/west, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) "qeq" = ( /obj/effect/mapping_helpers/trapdoor_placer, /obj/machinery/camera/autoname/directional/south, @@ -56083,6 +59678,12 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) +"qeN" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2o{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "qeP" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/glass/fifty{ @@ -56101,22 +59702,24 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/robotics/lab) -"qeQ" = ( -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) +"qeV" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4; + name = "Waste Release" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "qeX" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "qeZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/large, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "qfh" = ( /obj/effect/turf_decal/tile/red/half/contrasted, -/obj/structure/cable, +/obj/effect/mapping_helpers/dead_body_placer, /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, @@ -56136,6 +59739,28 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"qfz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/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 = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) +"qfB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"qfF" = ( +/obj/structure/sign/warning/directional/west, +/turf/open/space/openspace, +/area/space/nearstation) "qfS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -56144,15 +59769,6 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"qfT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) "qgc" = ( /obj/item/radio{ pixel_x = 6; @@ -56169,24 +59785,12 @@ /obj/structure/table/reinforced/rglass, /turf/open/floor/glass, /area/station/security/brig) -"qgd" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ +"qge" = ( +/obj/structure/railing{ dir = 8 }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - 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, -/area/station/medical/chemistry) +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "qgj" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -56208,40 +59812,21 @@ /turf/open/floor/iron, /area/station/science/lab) "qgr" = ( -/obj/structure/table, -/obj/item/dest_tagger{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/dest_tagger{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/head/soft{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/turf_decal/trimline/brown/filled, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"qgD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/light/warm/dim/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) +/obj/item/kirbyplants/random, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "qgI" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; 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, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/station/cargo/storage) "qgV" = ( /obj/structure/reagent_dispensers/watertank, @@ -56253,12 +59838,6 @@ /obj/structure/railing/corner/end, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"qhl" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) "qhq" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -56286,6 +59865,12 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance/storage) +"qhz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/corner, +/area/station/hallway/primary/central) "qhB" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -56328,25 +59913,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"qhP" = ( -/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/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qhW" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/landmark/start/depsec/engineering, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "qid" = ( /obj/machinery/door/airlock/research{ name = "Research Division Backdoor" @@ -56360,6 +59926,14 @@ /obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"qie" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "SM_shutters"; + name = "Supermatter Radiation Shutters"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter) "qih" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/griddle, @@ -56367,21 +59941,20 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/prison/mess) -"qij" = ( +"qim" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/rack, /turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/maintenance/starboard/central) "qip" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/machinery/modular_computer/preset/id{ +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "qir" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -56450,12 +60023,6 @@ /obj/structure/sign/poster/official/moth_hardhat/directional/west, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) -"qjt" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/rack, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "qjy" = ( /obj/machinery/computer/slot_machine{ pixel_y = 2 @@ -56487,14 +60054,10 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"qjU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, +"qjT" = ( +/obj/machinery/status_display/ai/directional/south, /turf/open/openspace, -/area/station/medical/storage) +/area/station/ai/upload/chamber) "qjV" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, @@ -56532,10 +60095,19 @@ /turf/open/floor/glass, /area/station/security/brig) "qkm" = ( -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, +/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/aft) +"qkn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/multiz/green/visible{ + dir = 2; + name = "mix to space multi-deck adaper" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "qkv" = ( /obj/structure/railing{ dir = 4 @@ -56551,12 +60123,6 @@ /obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"qkM" = ( -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1 - }, -/turf/closed/wall, -/area/station/engineering/gravity_generator) "qkU" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -56580,48 +60146,31 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/science/central) -"qlf" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) "qlg" = ( /obj/machinery/mech_bay_recharge_port, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"qlk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/openspace, -/area/station/medical/storage) -"qlx" = ( -/obj/structure/closet/crate/engineering{ - name = "Basic Materials" - }, -/obj/item/stock_parts/power_store/cell/high, -/obj/item/stock_parts/power_store/cell/high, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/item/stack/rods{ - amount = 50 +"qlj" = ( +/obj/structure/table/wood, +/obj/machinery/computer/arcade/orion_trail{ + desc = "For gamers only. Casuals need not apply."; + icon_screen = "library"; + icon_state = "oldcomp"; + name = "Gamer Computer" }, -/obj/item/stack/sheet/glass{ - amount = 50 +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"qlu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 1 }, -/obj/item/stack/sheet/iron{ - amount = 50 +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 4 }, /turf/open/floor/engine, -/area/station/engineering/break_room) +/area/station/engineering/atmos/upper) "qly" = ( /obj/machinery/camera/autoname/directional/north, /turf/open/floor/engine/hull/air, @@ -56668,46 +60217,42 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"qmc" = ( -/obj/effect/turf_decal/siding, -/obj/effect/turf_decal/trimline/white/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"qmd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ladder, -/obj/structure/sign/poster/official/pda_ad/directional/west, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) "qmh" = ( /obj/effect/spawner/random/trash/box, /turf/open/floor/plating, /area/station/maintenance/port) +"qms" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qmy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "qmB" = ( /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qmD" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/obj/structure/closet/crate/freezer, -/obj/item/food/chocolatebar, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"qmI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/food/pizzaslice/moldy/bacteria, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"qmT" = ( /obj/structure/cable, -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "qmY" = ( /obj/effect/turf_decal/siding/blue{ dir = 6 @@ -56724,38 +60269,37 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"qnh" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "qnt" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_x = 2; - pixel_y = 2 +/obj/structure/chair/comfy/black{ + dir = 1 }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 6 +/obj/effect/landmark/start/captain, +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/carpet, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) +"qnB" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter/monitored/distro_loop, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "qnC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/department/science/central) -"qnM" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"qnN" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/rack, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/neck/tie/blue{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/soft/blue, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/station/maintenance/department/science/central) +"qnM" = ( +/obj/machinery/vending/coffee, /turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/area/station/hallway/secondary/construction) "qnR" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/clown/directional/south, @@ -56770,12 +60314,14 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"qnS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port) +"qnU" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Nitrogen Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos/upper) "qnW" = ( /obj/effect/turf_decal/tile/dark_blue/anticorner{ dir = 8 @@ -56786,6 +60332,28 @@ dir = 4 }, /area/station/science/robotics) +"qod" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/structure/fluff/paper/corner{ + dir = 8 + }, +/obj/item/paper/crumpled{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"qol" = ( +/obj/machinery/camera/directional/west, +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "qom" = ( /obj/machinery/teleport/hub, /obj/effect/turf_decal/tile/green/opposingcorners{ @@ -56810,11 +60378,18 @@ /obj/machinery/suit_storage_unit/hos, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"qoD" = ( -/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) +"qoB" = ( +/obj/structure/barricade/sandbags, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"qoL" = ( +/obj/machinery/atmospherics/components/tank/air/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "qoN" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -56845,7 +60420,6 @@ input_dir = 2; output_dir = 1 }, -/obj/structure/window/reinforced/spawner/directional/south, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/station/maintenance/disposal) @@ -56857,15 +60431,21 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"qpc" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/main) +"qpn" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "qpt" = ( -/obj/structure/closet/secure_closet/captains, -/turf/open/floor/wood, +/obj/machinery/camera/autoname/directional/east, +/obj/structure/displaycase/captain{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "qpu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -56874,39 +60454,31 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/station/maintenance/port) -"qpw" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) -"qpD" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/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/transit_tube) "qpG" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"qpH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 5 }, /turf/open/floor/wood, -/area/station/command/meeting_room/council) +/area/station/maintenance/aft) "qpI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"qpJ" = ( +/obj/structure/sign/poster/official/no_erp/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "qpL" = ( /turf/open/floor/engine/co2, /area/station/engineering/atmos/upper) @@ -56914,12 +60486,6 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, /area/station/hallway/primary/central) -"qpY" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "qqd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/warning/electric_shock/directional/east, @@ -56929,10 +60495,10 @@ /area/station/construction/storage_wing) "qqi" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "qqj" = ( @@ -56943,6 +60509,13 @@ /obj/machinery/light/blacklight/directional/south, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"qqs" = ( +/obj/effect/decal/cleanable/dirt, +/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/starboard) "qqv" = ( /obj/machinery/door/window/brigdoor/left/directional/east{ name = "Creature Pen"; @@ -56959,7 +60532,7 @@ /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/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "qqC" = ( @@ -56967,7 +60540,7 @@ dir = 1 }, /turf/open/floor/iron/white/textured_corner, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qqD" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -56975,8 +60548,9 @@ /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 8 }, -/obj/machinery/shower/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/holopad{ + pixel_y = 6 + }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "qqJ" = ( @@ -56986,16 +60560,24 @@ /obj/effect/landmark/start/lawyer, /turf/open/floor/carpet, /area/station/service/lawoffice) -"qqY" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 +"qqV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/structure/cable, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "qrd" = ( /turf/open/openspace, /area/station/medical/abandoned) +"qrq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "qrz" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -57023,6 +60605,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"qrK" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/medical_all, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "qrN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/green, @@ -57037,12 +60627,16 @@ dir = 4 }, /area/station/hallway/primary/port) -"qrS" = ( -/obj/structure/railing/corner/end/flip{ - dir = 8 +"qrY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "qrZ" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -57055,7 +60649,9 @@ "qsb" = ( /obj/machinery/camera/autoname/directional/east, /obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "qsd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -57072,15 +60668,12 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "qsi" = ( -/obj/structure/chair/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/conveyor{ + id = "cargounload"; dir = 4 }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "qsm" = ( /obj/machinery/door/airlock/security/glass{ name = "Security E.V.A. Storage" @@ -57091,35 +60684,32 @@ /obj/effect/turf_decal/tile/red/fourcorners, /obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark, /area/station/security/eva) -"qsv" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/airless, -/area/station/maintenance/port/aft) -"qsC" = ( -/obj/structure/ladder, +"qsr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"qsx" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) "qsD" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, -/area/station/medical/coldroom) -"qsM" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/directions/command/directional/north{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) +/area/station/maintenance/department/medical) "qsO" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/firecloset, @@ -57150,14 +60740,25 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"qtC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Port to Engine" +"qtl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/trimline/brown, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"qtv" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qtM" = ( /obj/machinery/libraryscanner, /obj/machinery/camera/autoname/directional/north, @@ -57175,15 +60776,17 @@ /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/effect/turf_decal/arrows{ - dir = 8 - }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "qtW" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) +"quk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "quB" = ( /obj/structure/chair/comfy/brown{ color = "#596479"; @@ -57221,17 +60824,6 @@ }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"qve" = ( -/obj/structure/cable, -/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/disposalpipe/segment, -/obj/machinery/computer/security/telescreen/ce/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "qvg" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty{ @@ -57256,41 +60848,18 @@ /obj/item/crowbar{ pixel_y = 5 }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light_switch/directional/east{ - pixel_y = -5 - }, /obj/machinery/firealarm/directional/east{ pixel_y = 5 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "qvo" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/science/zoo) -"qvr" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/structure/sign/warning/radiation/rad_area/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"qvu" = ( -/obj/machinery/light/directional/south, -/obj/structure/lattice/catwalk, -/obj/machinery/firealarm/directional/south, -/turf/open/openspace, -/area/station/security/checkpoint/supply) -"qvw" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/firealarm/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "qvL" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/light/directional/south, @@ -57306,15 +60875,6 @@ }, /turf/open/floor/wood, /area/station/service/library) -"qvU" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "qvW" = ( /obj/item/toy/plush/moth{ name = "Moff #1"; @@ -57329,12 +60889,33 @@ /area/station/maintenance/starboard/aft) "qwa" = ( /obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"qwb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/structure/fluff/paper/corner, +/obj/structure/fluff/paper/stack{ + dir = 9 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "qwn" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/open/space/openspace, /area/space/nearstation) +"qww" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/closet/radiation, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/official/safety_eye_protection/directional/west, +/turf/open/floor/iron, +/area/station/engineering/lobby) "qwy" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -57354,6 +60935,14 @@ }, /turf/open/floor/glass, /area/station/service/kitchen) +"qwG" = ( +/obj/item/cigbutt{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "qwJ" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, @@ -57368,29 +60957,44 @@ /turf/open/space/openspace, /area/station/solars/starboard/aft) "qxr" = ( -/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/brown/filled/line{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) +"qxw" = ( +/obj/structure/urinal/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "qxA" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 8 }, +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/cargo/storage) -"qxE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "qxI" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/floor/engine, /area/station/science/xenobiology) +"qxL" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/petri_dish/random{ + pixel_x = -14; + pixel_y = 7 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "qxM" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/turf_decal/tile/green/full, @@ -57402,6 +61006,12 @@ /obj/structure/window/spawner/directional/south, /turf/open/floor/iron, /area/station/maintenance/hallway/abandoned_recreation) +"qxQ" = ( +/obj/machinery/light/warm/dim/directional/west, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "qxR" = ( /obj/item/radio/intercom/directional/west{ freerange = 1; @@ -57410,52 +61020,60 @@ }, /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"qxV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"qxW" = ( +/obj/item/storage/box/lights/mixed, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard) +"qya" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "qye" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "qyf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner/end/flip, /turf/open/floor/plating, /area/station/maintenance/port/aft) "qyg" = ( -/obj/structure/table/glass, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 11 +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 }, -/obj/item/multitool{ - pixel_x = 6; - pixel_y = 2 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/obj/structure/fireaxecabinet/directional/south, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qyu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table/glass, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 1; - pixel_y = 2 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 1; - pixel_y = 2 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 1; - pixel_y = 2 +/obj/machinery/vending/cigarette{ + pixel_x = 5 }, -/obj/item/wrench, -/obj/item/crowbar/red, -/turf/open/openspace, -/area/station/engineering/break_room) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "qyy" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/siding/blue{ @@ -57480,12 +61098,14 @@ /obj/item/stack/sheet/plasteel/twenty, /turf/open/floor/iron/dark/textured_corner, /area/station/science/robotics/lab) -"qyU" = ( -/obj/structure/chair{ - dir = 1 +"qyT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard/upper) "qyW" = ( /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -57493,31 +61113,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"qzb" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qze" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/medical) -"qzf" = ( -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "qzo" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 1 @@ -57535,16 +61130,10 @@ dir = 8 }, /area/station/science/ordnance/storage) -"qzB" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "qzF" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) "qzN" = ( @@ -57552,19 +61141,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/circuit, /area/station/maintenance/hallway/abandoned_recreation) -"qzQ" = ( -/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{ - dir = 1 +"qzP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/west, +/obj/structure/sign/departments/medbay/alt/directional/west, +/turf/open/floor/iron/stairs/medium{ + dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/engineering/main) +/area/station/medical/abandoned) "qzY" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/firealarm/directional/south, +/obj/machinery/button/door/directional/south{ + name = "Privacy Shutters Control"; + id = "hosprivacy" + }, /turf/open/floor/iron/dark, /area/station/security/brig) "qzZ" = ( @@ -57574,18 +61165,6 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"qAd" = ( -/obj/effect/turf_decal/siding/brown{ - 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, -/area/station/commons/dorms) "qAj" = ( /obj/item/assembly/signaler{ pixel_y = 8 @@ -57605,57 +61184,36 @@ /obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"qAw" = ( +"qAk" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"qAq" = ( +/obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office, -/obj/structure/fluff/paper/stack{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron, +/area/station/maintenance/starboard) "qAx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "qAC" = ( -/obj/structure/closet{ - name = "Coldroom Wearcloset" - }, /obj/structure/railing{ dir = 10 }, -/obj/item/clothing/suit/hooded/wintercoat/medical/cmo{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/clothing/suit/hooded/wintercoat/medical/viro{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/clothing/suit/hooded/wintercoat/medical/chemistry{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/clothing/suit/hooded/wintercoat/medical{ - pixel_x = 5 - }, /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk, -/turf/open/openspace/coldroom, -/area/station/medical/coldroom) +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/openspace, +/area/station/maintenance/department/medical) "qAI" = ( -/obj/effect/turf_decal/trimline/brown/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/disposalpipe/junction{ +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "qAJ" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -57691,22 +61249,6 @@ /obj/structure/cable, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"qBj" = ( -/obj/structure/lattice/catwalk, -/obj/item/storage/box/syringes{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/storage/box/syringes{ - pixel_x = -10; - pixel_y = -3 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/autoname/directional/south{ - c_tag = "Medbay - Upper Medical Storage South" - }, -/turf/open/openspace, -/area/station/medical/storage) "qBm" = ( /obj/structure/disposalpipe/junction/flip, /obj/effect/turf_decal/tile/dark_blue{ @@ -57715,6 +61257,10 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"qBr" = ( +/obj/structure/stairs/north, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "qBx" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -57733,6 +61279,12 @@ /obj/structure/table/wood/fancy, /turf/open/openspace, /area/station/maintenance/port/fore) +"qBy" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/space/basic, +/area/station/solars/port/aft) "qBF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -57742,23 +61294,34 @@ /obj/item/tank/internals/anesthetic, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) +"qCc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "space-outpost" + }, +/obj/machinery/door/airlock/external, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "qCe" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /obj/machinery/firealarm/directional/west, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"qCj" = ( /obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"qCr" = ( +/obj/effect/turf_decal/trimline/neutral, +/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_dark, +/area/station/engineering/atmos/upper) "qCx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -57801,7 +61364,7 @@ }, /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qDe" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -57809,35 +61372,16 @@ /turf/open/floor/iron, /area/station/hallway/primary/starboard) "qDh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 8 +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay"); + c_tag = "Medbay - Lower North Treatment Center" }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/white/textured_large, +/obj/machinery/medical_kiosk, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) -"qDi" = ( -/obj/effect/landmark/firealarm_sanity, -/turf/open/openspace, -/area/station/commons/dorms) -"qDn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "qDM" = ( /obj/structure/chair, /obj/machinery/light/directional/west, @@ -57859,12 +61403,17 @@ /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) "qEj" = ( -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"qEC" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Oxygen Supply"; + name = "atmospherics camera" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos/upper) "qEE" = ( /obj/structure/chair{ dir = 8 @@ -57894,6 +61443,11 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron, /area/station/science/zoo) +"qEN" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/security/checkpoint/supply) "qEQ" = ( /obj/structure/rack, /obj/item/clothing/suit/jacket/straight_jacket, @@ -57911,29 +61465,40 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"qEZ" = ( -/obj/structure/railing/corner{ - dir = 8 +"qFa" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 6 }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 10 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"qFa" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 }, -/obj/machinery/modular_computer/preset/cargochat/medical, -/turf/open/floor/wood, -/area/station/medical/medbay/central) -"qFj" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 10 }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/wood, -/area/station/medical/medbay/central) +/obj/item/wrench/medical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"qFk" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "qFr" = ( /obj/machinery/door/airlock/command{ name = "Teleport Access" @@ -57970,28 +61535,62 @@ "qFO" = ( /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) -"qGa" = ( +"qFS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"qFV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /obj/structure/lattice/catwalk, -/obj/structure/sign/warning/radiation/rad_area/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/openspace, -/area/station/hallway/primary/starboard) +/area/station/maintenance/starboard/central/upper) +"qGe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qGi" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/carpet/black, /area/station/maintenance/hallway/abandoned_recreation) -"qGv" = ( -/obj/structure/chair/sofa/right/brown{ - dir = 1 +"qGm" = ( +/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/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"qGn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table, +/obj/item/chisel{ + pixel_x = 7; + pixel_y = 4 }, /turf/open/floor/wood, -/area/station/commons/dorms) -"qGx" = ( -/obj/structure/chair/pew/left{ - dir = 4 +/area/station/service/library) +"qGr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/obj/structure/closet/toolcloset, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) +"qGC" = ( +/obj/effect/spawner/random/structure/crate, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "qGF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -58004,7 +61603,7 @@ "qGG" = ( /obj/structure/cable, /turf/open/floor/iron/smooth_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qGW" = ( /obj/machinery/door/airlock/command{ name = "E.V.A. Storage" @@ -58014,19 +61613,27 @@ /obj/effect/mapping_helpers/airlock/access/all/command/eva, /obj/machinery/door/firedoor, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qGZ" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ dir = 9 }, /turf/open/space/openspace, /area/space/nearstation) -"qHf" = ( -/turf/closed/wall, -/area/station/maintenance/disposal/incinerator) "qHg" = ( /turf/open/floor/iron/stairs, /area/station/service/library) +"qHk" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"qHz" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "qHB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -58034,23 +61641,11 @@ /obj/effect/baseturf_helper/reinforced_plating/ceiling, /turf/open/floor/plating, /area/station/maintenance/central) -"qHC" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp{ - pixel_y = 10 - }, -/obj/item/toy/figure/ce{ - pixel_y = 4 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "qHH" = ( -/obj/structure/table/wood, -/obj/item/camera{ - pixel_y = 4 - }, -/turf/open/floor/wood, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/closet/secure_closet/captains, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "qHJ" = ( /obj/structure/railing{ @@ -58063,48 +61658,90 @@ /obj/effect/turf_decal/tile/brown/full, /turf/open/floor/iron/large, /area/station/maintenance/starboard/central) -"qHN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"qHP" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/analyzer, +/obj/item/analyzer, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "qHQ" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 +/obj/machinery/light/directional/east, +/obj/machinery/status_display/supply{ + pixel_x = 32 }, -/obj/machinery/conveyor_switch/oneway{ - id = "cargoload"; - name = "Loading Conveyor"; - pixel_x = -13; - pixel_y = -5 +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" }, +/obj/effect/turf_decal/stripes/end, /turf/open/floor/iron, /area/station/cargo/storage) -"qHT" = ( +"qHW" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"qHX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"qHZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qHZ" = ( -/turf/open/openspace, -/area/station/medical/cryo) -"qIa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8; - pixel_y = -2 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/office/light{ + dir = 4 }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 5 }, -/obj/effect/mapping_helpers/mail_sorting/science/ordnance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"qIc" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/surgery{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/stack/medical/bone_gel{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/medical/surgery) +"qIo" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "qIp" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 +/obj/item/kirbyplants/organic/plant9{ + pixel_x = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "qIz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -58116,35 +61753,63 @@ /turf/open/openspace, /area/station/maintenance/port/aft) "qII" = ( -/obj/structure/railing/corner{ +/obj/machinery/modular_computer/preset/id{ dir = 4 }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"qIL" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/broken_flooring/singular/directional/west, +/obj/structure/broken_flooring/singular/always_floorplane/directional, +/obj/structure/broken_flooring/singular, +/obj/item/assembly/mousetrap, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/openspace, -/area/station/hallway/primary/central) -"qJb" = ( -/obj/machinery/disposal/bin, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"qIQ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ +/obj/effect/turf_decal/trimline/green/filled/mid_joiner, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) +"qIZ" = ( +/obj/structure/reagent_dispensers/plumbed{ dir = 1 }, -/turf/open/floor/iron, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"qJb" = ( +/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, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "qJf" = ( /turf/open/floor/wood, /area/station/service/lawoffice) -"qJn" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink/directional/south, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +"qJk" = ( +/mob/living/basic/axolotl{ + name = "The Lost Axolotl" + }, +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/mirror/broken/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) "qJo" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 8 @@ -58152,11 +61817,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"qJu" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "qJB" = ( /obj/effect/turf_decal/bot_white/right, /turf/open/floor/iron/dark/textured_large, @@ -58200,16 +61860,20 @@ dir = 9 }, /turf/open/floor/engine/hull/reinforced/air, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qKq" = ( /turf/open/openspace, /area/station/science/zoo) -"qKs" = ( -/obj/machinery/vending/assist, -/obj/machinery/light_switch/directional/east, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +"qKy" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/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/station/medical/office) "qKA" = ( /obj/structure/railing{ dir = 6 @@ -58220,12 +61884,17 @@ /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "qKB" = ( -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "qKC" = ( -/obj/structure/sign/clock/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/structure/lattice/catwalk, +/obj/structure/table/reinforced, +/obj/item/storage/photo_album/qm, +/turf/open/openspace, +/area/station/cargo/storage) "qKG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58243,6 +61912,37 @@ "qKO" = ( /turf/closed/wall, /area/station/maintenance/starboard/central) +"qKP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + 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/north{ + id = "MedbayExit"; + name = "Exit Door"; + req_access = list("medical"); + pixel_y = 39; + pixel_x = -6; + normaldoorcontrol = 1 + }, +/obj/machinery/button/door/directional/north{ + id = "MedbayFoyer"; + name = "Entrance Door"; + req_access = list("medical"); + pixel_y = 39; + normaldoorcontrol = 1; + pixel_x = 6 + }, +/obj/machinery/button/door/directional/north{ + id = "medbay-office"; + name = "Medbay Lockdown"; + req_access = list("medical"); + pixel_y = 30 + }, +/turf/open/floor/iron/white, +/area/station/medical/office) "qKR" = ( /obj/structure/flora/bush/ferny/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -58253,7 +61953,7 @@ /area/station/hallway/secondary/entry) "qKS" = ( /obj/structure/dresser, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "qKV" = ( /obj/effect/spawner/structure/window/reinforced, @@ -58263,9 +61963,20 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/commons/vacant_room/office) +"qKY" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/button/door/directional/west{ + id = "Cabin8"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/wood, +/area/station/commons/dorms) "qLg" = ( /obj/machinery/door/airlock{ - id_tag = "commissarydoor"; + id_tag = "officecommissarydoor"; name = "Vacant Office" }, /obj/effect/turf_decal/tile/green/fourcorners, @@ -58274,16 +61985,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"qLm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "qLy" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -58310,10 +62011,12 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/wood/large, /area/station/service/theater_dressing) -"qLZ" = ( -/obj/structure/grille, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +"qLQ" = ( +/obj/item/stack/rods{ + amount = 7 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "qMe" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -58350,14 +62053,27 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, /area/station/medical/morgue) -"qMC" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"qMF" = ( +/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, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "qMI" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -58397,77 +62113,62 @@ }, /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qNd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "qNe" = ( -/turf/open/floor/carpet, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "qNf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"qNg" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/area/station/ai/satellite/chamber) "qNi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "qm_cargobay"; - name = "Cargo Bay Shutters" +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil/slippery, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"qNo" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, -/area/station/cargo/storage) -"qNn" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" +/area/station/maintenance/starboard/upper) +"qNp" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/obj/structure/sign/poster/contraband/kss13/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) -"qNq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack, -/obj/structure/fluff/paper/stack{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "qNw" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood, /area/station/hallway/primary/central) -"qNy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +"qNG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/commons/dorms) "qNK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"qNM" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "qNN" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -58476,32 +62177,28 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, /area/station/security/brig) +"qNP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qNV" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/effect/turf_decal/siding/dark{ - dir = 6 - }, -/obj/effect/turf_decal/tile/dark_blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/kitchen, -/area/station/service/kitchen) -"qNW" = ( -/obj/item/trash/ready_donk, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qNX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qOv" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"qOj" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "qOw" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -58509,12 +62206,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"qOC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/stairs/medium, +/area/station/maintenance/starboard) +"qOE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"qOG" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "qOS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) +"qPf" = ( +/obj/item/grapple_gun{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "qPj" = ( /turf/closed/wall, /area/station/cargo/sorting) @@ -58532,10 +62254,21 @@ /obj/item/stack/sheet/cloth/five, /turf/open/floor/iron, /area/station/maintenance/starboard/central) -"qPw" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"qPv" = ( +/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/engineering{ + name = "Tech Storage" + }, +/obj/effect/landmark/navigate_destination/techstorage, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "qPy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -58548,6 +62281,10 @@ /area/station/service/hydroponics/garden/abandoned) "qPB" = ( /obj/structure/mannequin/skeleton, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) "qPD" = ( @@ -58589,7 +62326,7 @@ /obj/machinery/light/directional/south, /obj/machinery/washing_machine, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qQb" = ( /obj/structure/table/wood, /obj/item/newspaper{ @@ -58603,31 +62340,30 @@ "qQd" = ( /turf/closed/wall/r_wall, /area/station/maintenance/central) +"qQe" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "qQf" = ( /obj/effect/turf_decal/siding/blue{ dir = 5 }, -/obj/machinery/computer/station_alert, /obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) -"qQj" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/closet/crate/trashcart/laundry, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/backpack, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"qQv" = ( -/obj/effect/decal/cleanable/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "qQx" = ( /obj/structure/reagent_dispensers/wall/peppertank/directional/north, /obj/effect/turf_decal/stripes/end, @@ -58685,16 +62421,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"qRb" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +"qRg" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible/layer2{ dir = 4 }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"qRp" = ( -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/pumproom) +"qRq" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "qRs" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58713,53 +62454,31 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"qRL" = ( -/obj/effect/turf_decal/siding, -/obj/effect/turf_decal/trimline/white/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "qSd" = ( /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/station/hallway/secondary/entry) "qSf" = ( /turf/closed/wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"qSj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "qSk" = ( /turf/closed/wall, /area/station/maintenance/department/science/central) -"qSs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/commons/dorms) "qSv" = ( /obj/structure/table/wood/poker, -/obj/item/flashlight/lamp/green{ - pixel_x = -8; - pixel_y = 14 - }, /obj/item/clothing/head/fedora/white, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "qSy" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -58776,13 +62495,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"qSD" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "qSG" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/machinery/atmospherics/components/trinary/mixer/flipped{ @@ -58791,11 +62503,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_edge, /area/station/science/ordnance/storage) -"qSP" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "qST" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -58805,6 +62512,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"qTa" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "qTb" = ( /obj/effect/turf_decal/tile/purple/opposingcorners{ dir = 1 @@ -58816,10 +62527,6 @@ /obj/structure/stairs/north, /turf/open/floor/iron/stairs/medium, /area/station/medical/virology) -"qTk" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) "qTl" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -58827,21 +62534,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/science/lobby) -"qTm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) -"qTt" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/autoname/directional/south, -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "qTy" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, @@ -58849,9 +62541,14 @@ "qTG" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/ferny/style_random, -/obj/effect/landmark/start/hangover, /turf/open/floor/grass, /area/station/hallway/primary/central) +"qTT" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/commons/locker) "qTX" = ( /obj/structure/lattice/catwalk, /obj/machinery/computer/security{ @@ -58859,6 +62556,12 @@ }, /turf/open/openspace, /area/station/security/checkpoint/customs) +"qTZ" = ( +/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/white, +/area/station/maintenance/starboard) "qUa" = ( /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /obj/effect/decal/cleanable/dirt, @@ -58868,11 +62571,11 @@ /obj/structure/plasticflaps/kitchen, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"qUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mop_bucket, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +"qUo" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "qUt" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/chair/office, @@ -58900,26 +62603,39 @@ }, /turf/open/floor/grass, /area/station/science/genetics) +"qUD" = ( +/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 = 2 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) "qUG" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/central) +"qUQ" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) "qUW" = ( /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 - }, /obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qVd" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "qVj" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/power/apc/auto_name/directional/south, @@ -58952,6 +62668,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/tile, /area/station/security/detectives_office/private_investigators_office) +"qVv" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qVz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -58973,6 +62693,11 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/station/engineering/storage_shared) +"qVE" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "qVJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -58985,8 +62710,24 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "qVO" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/station/command/bridge) +"qVU" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"qVY" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "qWb" = ( /obj/effect/turf_decal/tile/purple/fourcorners, /obj/machinery/camera/autoname/directional/west, @@ -59027,34 +62768,20 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/openspace, -/area/station/command/bridge) -"qWv" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/command/meeting_room/council) +"qWr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "qWy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/textured, -/area/station/medical/surgery) -"qWF" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 1 }, -/obj/effect/landmark/start/hangover, -/obj/effect/landmark/navigate_destination/tools, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "qWV" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ @@ -59071,27 +62798,38 @@ /obj/structure/cable, /turf/open/floor/wood/large, /area/station/medical/psychology) -"qXj" = ( +"qXc" = ( +/obj/machinery/medical_kiosk, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/medbay/lobby) +"qXh" = ( +/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/yellow/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/duct, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "qXl" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/camera/autoname/directional/north, +/obj/machinery/status_display/ai/directional/north, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "qXo" = ( /obj/machinery/status_display/ai/directional/north, /obj/structure/chair/sofa/corp/left, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qXr" = ( /obj/structure/sign/departments/telecomms/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -59100,22 +62838,7 @@ /turf/open/floor/iron/smooth_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"qXx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Gas" - }, -/obj/effect/turf_decal/trimline/yellow, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qXH" = ( -/obj/structure/cable, -/obj/effect/landmark/start/depsec/engineering, -/obj/structure/chair/office{ - dir = 3 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/area/station/ai/satellite/foyer) "qXI" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -59141,6 +62864,12 @@ dir = 8 }, /area/station/service/chapel) +"qYb" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "qYi" = ( /obj/machinery/portable_atmospherics/scrubber/huge, /obj/effect/turf_decal/bot, @@ -59155,6 +62884,7 @@ /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/south, +/obj/item/wrench, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "qYk" = ( @@ -59163,7 +62893,7 @@ /obj/effect/mapping_helpers/burnt_floor, /obj/item/radio/intercom/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "qYn" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -59177,18 +62907,23 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/security/brig) -"qYs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, +"qYr" = ( +/obj/effect/spawner/random/trash/bin, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/storage_shared) "qYB" = ( /obj/structure/chair/greyscale{ dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/hallway/secondary/construction) +"qYK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "qYM" = ( /obj/item/kirbyplants/random, /obj/machinery/light/directional/east, @@ -59202,8 +62937,24 @@ /obj/item/sticker/googly, /obj/item/sticker/clown, /obj/item/sticker/pslime, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/station/maintenance/port/aft) +"qYP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosengimainttriangle" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "qYU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59225,27 +62976,19 @@ /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, /area/station/science/genetics) -"qYY" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"qZv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qZB" = ( -/obj/machinery/door/airlock{ - name = "Commentator Stand Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 +"qZx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/department/crew_quarters/dorms) +"qZy" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "qZH" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -59263,14 +63006,7 @@ "qZQ" = ( /obj/machinery/flasher/directional/north, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) -"qZW" = ( -/obj/item/clothing/head/cone{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/upload/chamber) "qZX" = ( /obj/machinery/door/airlock/security{ name = "Armory" @@ -59280,7 +63016,18 @@ /obj/effect/turf_decal/tile/red/fourcorners, /obj/effect/mapping_helpers/airlock/access/all/security/armory, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"qZY" = ( +/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/opposingcorners{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/security_all, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "qZZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -59291,18 +63038,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"raa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"rad" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) "rah" = ( /obj/structure/rack, /obj/item/reagent_containers/cup/bottle/iron{ @@ -59320,7 +63055,13 @@ c_tag = "Medbay - Lower Chemistry Storage" }, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) +"rai" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "ran" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -59344,13 +63085,21 @@ }, /turf/open/floor/glass, /area/station/security/brig) +"raE" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "raF" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 1 }, -/obj/machinery/computer/order_console/mining, +/obj/effect/turf_decal/trimline/brown/arrow_cw, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "raN" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59391,13 +63140,42 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/engine, /area/station/service/hydroponics) +"raU" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "rba" = ( /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"rbl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) +"rbt" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "rbx" = ( /obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark/textured_large, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "rbE" = ( /obj/effect/decal/cleanable/dirt, @@ -59408,27 +63186,9 @@ /turf/open/floor/iron, /area/station/security/prison/mess) "rbF" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 9 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 5 - }, -/obj/item/stack/rods{ - amount = 25; - pixel_x = 2 - }, -/obj/item/stack/rods{ - amount = 25; - pixel_y = 4 - }, -/obj/structure/railing{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) @@ -59447,27 +63207,39 @@ }, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"rce" = ( -/obj/item/clothing/head/cone{ - pixel_x = 6; - pixel_y = -9 - }, +"rcc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/tank_holder, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) +"rci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/atmos_control/nocontrol/incinerator, +/obj/machinery/light/directional/north, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "rcl" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"rcs" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/sign/poster/contraband/space_up/directional/east, -/obj/structure/sign/poster/contraband/ambrosia_vulgaris/directional/south, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "rct" = ( /turf/closed/wall, /area/station/engineering/storage) +"rcA" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 2; + name = "Chamber to Mix" + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "rcF" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -59479,21 +63251,7 @@ /area/station/cargo/storage) "rcG" = ( /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"rcM" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's 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/medical/cmo, -/obj/machinery/door/firedoor, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/area/station/ai/satellite/chamber) "rdb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -59504,6 +63262,13 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/medical/medbay/central) +"rdh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "rdk" = ( /obj/structure/table, /obj/item/food/chocolatebar{ @@ -59518,10 +63283,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"rdl" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "rdm" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -59550,32 +63311,22 @@ /area/station/hallway/primary/central) "rdx" = ( /obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"rdN" = ( -/obj/machinery/door/airlock{ - name = "Emergency Storage" +/turf/open/floor/iron/edge{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/area/station/hallway/primary/central) +"rdz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"rdV" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rea" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Virology Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/plating, -/area/station/maintenance/port) +/area/station/maintenance/aft) +"rdW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/commons/dorms) "rec" = ( /obj/machinery/light/small/directional/west, /obj/structure/chair/comfy/beige{ @@ -59584,6 +63335,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/service/cafeteria) +"reg" = ( +/obj/structure/sign/departments/chemistry/pharmacy/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "reh" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -59598,17 +63353,24 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"req" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "rey" = ( /obj/structure/lattice/catwalk, /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, /area/station/hallway/secondary/construction) +"reI" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/screwdriver{ + pixel_y = 12 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/stack/cable_coil, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "reN" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -59616,6 +63378,16 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"reW" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "rfc" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/dark{ @@ -59635,7 +63407,15 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"rfk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "rfr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/west, @@ -59652,32 +63432,27 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"rfE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) "rfI" = ( /obj/item/tank/internals/oxygen/yellow, /turf/open/floor/engine/hull, /area/space/nearstation) +"rfL" = ( +/obj/machinery/shower/directional/west, +/obj/effect/turf_decal/siding/blue/end{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/medbay/central) "rfU" = ( /obj/machinery/light/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) -"rfZ" = ( -/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/medical/medbay/central) -"rga" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "rgb" = ( /obj/machinery/vending/cigarette/beach, /turf/open/floor/iron/dark/smooth_large, @@ -59695,34 +63470,39 @@ /turf/open/floor/iron/dark, /area/station/security/interrogation) "rgj" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 16 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 1; - pixel_y = 6 +/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 = 9 }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"rgq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/engineering/engine_smes) +"rgL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "rhx" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ +/obj/effect/turf_decal/siding/dark_blue{ dir = 1 }, -/turf/open/floor/iron/white/textured, -/area/station/medical/surgery) +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/machinery/light/floor, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "rhz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/plasma, /obj/effect/spawner/random/maintenance, /turf/open/floor/iron, /area/station/construction/storage_wing) -"rhD" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "rhE" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -59751,29 +63531,28 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) -"rhM" = ( -/obj/effect/turf_decal/trimline/white/corner{ +"rhP" = ( +/obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"rhT" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "rih" = ( /turf/open/floor/plating, /area/station/maintenance/central) -"riv" = ( -/obj/item/trash/shok_roks/berry, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) +"riB" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "riD" = ( /turf/closed/wall, /area/station/maintenance/port) @@ -59787,11 +63566,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/service/library) -"riI" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/engineering/break_room) +"riN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Bay Shutters"; + id = "qm_cargobay"; + dir = 8; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/station/cargo/storage) "riR" = ( /obj/structure/railing{ dir = 6 @@ -59813,11 +63597,8 @@ /obj/effect/mapping_helpers/airlock/access/any/science/ordnance, /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 + pixel_y = -6; + dir = 4 }, /obj/machinery/airlock_controller/incinerator_ordmix{ pixel_x = -22 @@ -59845,6 +63626,14 @@ }, /turf/open/floor/carpet, /area/station/command/corporate_showroom) +"rjc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) "rjd" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/tile/red/opposingcorners, @@ -59861,6 +63650,15 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"rjI" = ( +/obj/machinery/button/door/directional/south{ + id = "cmoprivacy"; + name = "CMO Privacy Shutters"; + req_access = list("cmo"); + pixel_y = -7 + }, +/turf/closed/wall, +/area/station/command/heads_quarters/cmo) "rjJ" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -59868,7 +63666,14 @@ /obj/effect/turf_decal/siding/dark, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"rjM" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/bot, +/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/upper) "rjO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -59884,12 +63689,6 @@ /obj/structure/table, /turf/open/floor/wood, /area/station/service/library) -"rkf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "rki" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/engine, @@ -59900,6 +63699,18 @@ /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron/cafeteria, /area/station/maintenance/port) +"rky" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"rkA" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vatgrower, +/turf/open/floor/engine, +/area/station/maintenance/starboard) "rkB" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -59910,6 +63721,19 @@ /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/carpet/orange, /area/station/commons/lounge) +"rkE" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "rkF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/item/radio/intercom/directional/west, @@ -59972,7 +63796,8 @@ /area/station/maintenance/port/greater) "rla" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/plating, /area/station/maintenance/central) "rlq" = ( @@ -59981,6 +63806,23 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"rls" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/machinery/disposal/bin/tagger, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "rlu" = ( /obj/machinery/chem_master, /turf/open/floor/iron/dark/textured, @@ -59992,10 +63834,25 @@ /obj/effect/landmark/start/librarian, /turf/open/floor/carpet/black, /area/station/service/library/private) +"rlB" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/medical/abandoned) "rlE" = ( /obj/structure/hedge, /turf/open/floor/glass/reinforced, /area/station/service/library) +"rlF" = ( +/obj/machinery/power/turbine/inlet_compressor{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "rlR" = ( /obj/item/storage/box/snappops{ pixel_x = 6; @@ -60032,9 +63889,21 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) +"rmb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "rmg" = ( /obj/structure/stairs/north, -/obj/machinery/airalarm/directional/east, /obj/machinery/light/directional/east, /turf/open/floor/iron/stairs/medium, /area/station/command/heads_quarters/hop) @@ -60043,23 +63912,14 @@ /turf/open/floor/iron/smooth, /area/station/science/robotics) "rms" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/machinery/requests_console/directional/east{ - department = "Bridge"; - name = "Bridge Requests Console"; - pixel_x = -32 - }, -/obj/effect/mapping_helpers/requests_console/announcement, -/obj/effect/mapping_helpers/requests_console/information, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, /obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/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/command/meeting_room/council) "rmw" = ( /obj/machinery/door/airlock/public/glass{ name = "Public Zoo" @@ -60072,7 +63932,7 @@ /obj/structure/lattice/catwalk, /obj/machinery/status_display/evac/directional/east, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rmB" = ( /obj/machinery/power/shieldwallgen, /obj/effect/turf_decal/stripes/line{ @@ -60082,21 +63942,6 @@ /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/station/command/teleporter) -"rmC" = ( -/obj/item/melee/flyswatter{ - pixel_x = -2 - }, -/obj/item/toy/plush/lizard_plushie/green{ - name = "Steals-The-Cheese"; - pixel_x = 8; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/dark_green/opposingcorners, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "rmM" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -60108,6 +63953,13 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"rmN" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "rmO" = ( /obj/effect/turf_decal/siding/dark/corner, /obj/effect/turf_decal/trimline/dark_blue/filled/line{ @@ -60124,7 +63976,7 @@ }, /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rmS" = ( /obj/structure/railing{ dir = 8 @@ -60138,58 +63990,67 @@ }, /turf/open/floor/iron, /area/station/science/research) -"rmV" = ( -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/obj/structure/urinal/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "rnd" = ( /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/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) -"rnh" = ( -/obj/machinery/power/smes{ - charge = 5e+006 +"rnB" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2{ + dir = 8 }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"rnK" = ( /obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"rnp" = ( -/obj/structure/sign/directions/dorms{ - dir = 1; - pixel_y = 4 +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 }, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"rnC" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/landmark/start/hangover/closet, /turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/area/station/commons/fitness/recreation) +"rnN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "rnP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/gloves/color/blue{ - desc = "An old pair of nitrile gloves, with no sterile properties."; - name = "old nitrile gloves" +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/obj/item/pen/blue{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = -6 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/wood/large, +/area/station/medical/break_room) "rnQ" = ( /obj/structure/ladder, /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk, -/turf/open/openspace/coldroom, -/area/station/medical/coldroom) -"rnR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/turf/open/openspace, +/area/station/maintenance/department/medical) +"rnV" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "rnX" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -60200,16 +64061,32 @@ /obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/station/engineering/storage) -"roj" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "roq" = ( /obj/effect/spawner/random/medical/patient_stretcher, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"ror" = ( +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/tcomms{ + pixel_x = 14; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/tcomms/directional/south{ + name = "Telecomms Camera Monitor" + }, +/obj/item/pen, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "rot" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -60227,16 +64104,10 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "roy" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"roB" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/firealarm/directional/east, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "roG" = ( /obj/machinery/mech_bay_recharge_port{ dir = 2 @@ -60256,6 +64127,16 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"roM" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "roP" = ( /obj/structure/stairs/north, /obj/structure/railing{ @@ -60264,22 +64145,28 @@ /turf/open/floor/iron, /area/station/science/breakroom) "roY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4; - pixel_y = 38 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4 +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron, +/area/station/cargo/storage) +"rpd" = ( +/obj/structure/cable, +/obj/structure/sign/poster/contraband/soviet_propaganda/directional/north, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"rpj" = ( +/obj/item/toy/plush/lizard_plushie/green{ + name = "Swats-The-Moths"; + pixel_y = -10 }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4; - pixel_y = 26 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/dark_green/opposingcorners, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "rpn" = ( /obj/structure/railing{ dir = 8 @@ -60293,11 +64180,20 @@ }, /turf/open/floor/iron, /area/station/science/research) -"rps" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +"rpq" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"rpz" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "rpB" = ( /turf/closed/wall/r_wall, /area/station/command/corporate_showroom) @@ -60307,7 +64203,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rpI" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -60317,14 +64213,7 @@ }, /obj/machinery/washing_machine, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rpL" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/effect/turf_decal/siding/brown/corner, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +/area/station/ai/satellite/interior) "rpU" = ( /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) @@ -60347,12 +64236,6 @@ /obj/machinery/light/very_dim/directional/north, /turf/open/floor/plating, /area/station/maintenance/disposal) -"rqm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "rqn" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -60362,15 +64245,17 @@ }, /turf/open/floor/iron, /area/station/science/lobby) -"rqo" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/project) "rqq" = ( /obj/structure/table/wood, /obj/item/storage/photo_album/chapel, /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/chapel, /area/station/service/chapel) +"rqs" = ( +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/mid_joiner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "rqM" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -60424,11 +64309,6 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) -"rro" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/openspace, -/area/station/hallway/primary/central) "rrp" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -60449,30 +64329,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"rrz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/item/kirbyplants/random/fullysynthetic, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +"rrE" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/cargo/storage) "rrF" = ( /obj/structure/table, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"rrY" = ( +"rrI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, /obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/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/engineering/storage_shared) "rsb" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -60483,12 +64358,19 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/wood, /area/station/command/corporate_showroom) -"rsn" = ( -/obj/machinery/vatgrower, -/obj/effect/turf_decal/trimline/green/filled/line, +"rsm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/obj/structure/closet/crate, +/obj/item/reagent_containers/cup/glass/bottle/vermouth{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/bottle/ale, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_x = 6 + }, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "rsH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/disposal/bin, @@ -60497,26 +64379,28 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/central) -"rsU" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +"rsJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/siding/blue{ + dir = 8 }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"rtb" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/catwalk_floor{ + initial_gas_mix = "n2=100;TEMP=80" }, -/obj/structure/railing{ - dir = 1 +/area/station/science/server) +"rsU" = ( +/obj/machinery/wall_healer/directional/north, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/medbay/lobby) +"rtb" = ( /obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/line, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "rtd" = ( /obj/effect/turf_decal/tile/blue/full, /obj/structure/table/reinforced, @@ -60543,14 +64427,44 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"rtm" = ( +/obj/item/banner/cargo/mundane{ + pixel_y = 27 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_y = 10 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -8; + pixel_y = -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, +/area/station/maintenance/starboard/central/upper) "rto" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/toy/figure/cmo{ - pixel_y = 10; - pixel_x = -1 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"rtr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"rtv" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "rtx" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -60562,6 +64476,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"rtz" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "rtD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60573,6 +64492,11 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/hallway/secondary/entry) +"rtL" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "rtO" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -60581,12 +64505,35 @@ /turf/open/openspace, /area/station/medical/virology) "ruc" = ( -/obj/effect/turf_decal/siding/green/corner{ +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/green{ dir = 8 }, -/obj/machinery/vending/coffee, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"rue" = ( +/obj/item/statuebust, +/obj/machinery/light/cold/no_nightlight/directional/west, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) +"ruf" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/warning/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"rul" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/hull/air, +/area/station/engineering/supermatter/room/upper) +"rum" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) "ruq" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 8 @@ -60598,41 +64545,75 @@ }, /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"ruA" = ( +/obj/machinery/light/small/dim/directional/north, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) "ruD" = ( -/obj/item/kirbyplants, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, +/obj/structure/reagent_dispensers/plumbed/storage, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "ruE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/structure/table/wood/fancy/orange, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_x = -5; + pixel_y = 18 + }, +/obj/item/food/fortunecookie{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) +"ruF" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "ruJ" = ( /obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/medbay/alt/directional/east, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) "ruK" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Abandoned Hallway" - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ dir = 4 }, -/obj/machinery/door/firedoor, +/area/station/hallway/primary/central) +"ruR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, /turf/open/floor/iron, -/area/station/hallway/secondary/construction) +/area/station/hallway/primary/port) "ruS" = ( /obj/effect/mob_spawn/corpse/human/skeleton, /obj/item/mod/module/springlock, /obj/effect/decal/cleanable/blood, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) +"ruZ" = ( +/obj/effect/spawner/random/structure/crate_loot, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "rvk" = ( /obj/structure/table/wood, /obj/item/book/bible, @@ -60648,6 +64629,23 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) +"rvo" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/phone{ + pixel_y = -9; + pixel_x = -3 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "rvs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -60664,7 +64662,6 @@ }, /obj/item/cigbutt, /obj/effect/mapping_helpers/broken_floor, -/obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "rvu" = ( @@ -60677,6 +64674,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"rvv" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"rvz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 11 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/aft/upper) "rvB" = ( /obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ pixel_x = -24 @@ -60688,23 +64697,23 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"rvH" = ( +"rvT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rvX" = ( /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/plating, -/area/station/maintenance/starboard/fore) -"rvR" = ( -/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/yellow/filled/line{ - dir = 6 +/obj/effect/turf_decal/stripes{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "rvY" = ( /obj/structure/table/reinforced, /obj/item/storage/box/gloves{ @@ -60715,42 +64724,43 @@ /turf/open/floor/iron/dark, /area/station/service/chapel/office) "rwd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/structure/railing/corner/end{ +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"rwf" = ( +/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/cargo/sorting) +/obj/structure/cable, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "rwh" = ( /turf/closed/wall/r_wall, /area/station/security/medical) -"rwG" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/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 = "miningshuttleexit" +"rwn" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rwJ" = ( -/obj/structure/railing/corner/end/flip{ +/obj/effect/turf_decal/stripes/red/line{ dir = 8 }, -/obj/structure/railing/corner/end{ - dir = 4 +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rwJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/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/command/meeting_room/council) "rwO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -60764,7 +64774,7 @@ dir = 10 }, /obj/effect/baseturf_helper/reinforced_plating/ceiling, -/turf/open/floor/carpet, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "rwU" = ( /obj/effect/mapping_helpers/airlock/access/all/service/general, @@ -60774,25 +64784,42 @@ /obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"rwV" = ( +/obj/machinery/computer/atmos_control/carbon_tank, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "rwW" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/grass, /area/station/hallway/primary/starboard) "rxc" = ( -/obj/structure/table, -/obj/machinery/fax{ - fax_name = "Quartermaster's Office"; - name = "Quartermaster's Fax Machine" - }, +/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/qm) +/area/station/cargo/storage) "rxd" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "rxk" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, /area/station/cargo/storage) "rxo" = ( /obj/structure/lattice/catwalk, @@ -60803,17 +64830,43 @@ /turf/open/openspace, /area/station/commons/fitness/recreation) "rxx" = ( -/obj/structure/table, /obj/effect/turf_decal/trimline/blue/filled/line, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/item/folder/white{ - pixel_x = -1; - pixel_y = 3 - }, /obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/table, +/obj/item/screwdriver{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/grenade/chem_grenade{ + pixel_y = 11 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = 11; + pixel_y = 11 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/science{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"rxy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/dresser, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "rxH" = ( /turf/open/floor/engine, /area/station/engineering/supermatter/room) @@ -60825,22 +64878,22 @@ }, /turf/open/floor/iron/kitchen, /area/station/hallway/secondary/service) -"rxM" = ( +"rxS" = ( /obj/effect/decal/cleanable/dirt, -/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, -/obj/effect/decal/cleanable/cobweb, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) +"rxW" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "rya" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "ryb" = ( @@ -60875,11 +64928,22 @@ name = "Garbage Closet" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"rzf" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4; + initialize_directions = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/airalarm/directional/west, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "rzm" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -60905,6 +64969,17 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"rzu" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/upper) +"rzH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "rzK" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/ferny/style_random, @@ -60931,7 +65006,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rAc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, @@ -60957,27 +65032,22 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"rAH" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/start/hangover, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "rAK" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/flora/rock/pile/jungle/style_3, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rAL" = ( -/obj/structure/table/glass, -/turf/open/floor/carpet, -/area/station/command/bridge) -"rAT" = ( -/obj/structure/lattice/catwalk, -/obj/structure/grille, -/turf/open/space/openspace, -/area/space/nearstation) +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) "rAV" = ( /obj/machinery/holopad, /obj/machinery/status_display/evac/directional/north, @@ -60986,21 +65056,9 @@ /turf/open/floor/carpet, /area/station/hallway/secondary/exit/departure_lounge) "rBd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/medical/storage) -"rBh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/air, +/area/station/medical/medbay/central) "rBm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61013,75 +65071,27 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"rBo" = ( -/obj/item/trash/can{ - pixel_x = -8 - }, -/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) "rBs" = ( /obj/structure/table, /obj/structure/closet/mini_fridge/grimy, /obj/structure/window/spawner/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"rBB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "rBE" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/openspace, -/area/station/command/bridge) -"rBF" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "Privacy Shutters" }, -/obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/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, -/area/station/engineering/break_room) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) "rBI" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/confetti, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/carpet/black, /area/station/maintenance/hallway/abandoned_recreation) -"rBO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"rBP" = ( -/obj/item/bikehorn/rubberducky, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "rBQ" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/engine/vacuum, @@ -61116,6 +65126,16 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"rCh" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "rCp" = ( /obj/structure/table, /obj/item/food/cheese/firm_cheese_slice{ @@ -61139,43 +65159,33 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "rCF" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/bot, /obj/machinery/camera/autoname/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/machinery/conveyor{ + dir = 8; + id = "mining" }, +/obj/machinery/bouldertech/refinery/smelter, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"rCO" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "rCP" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "rCQ" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/structure/rack, -/obj/effect/spawner/round_default_module, -/obj/effect/spawner/random/aimodule/neutral{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/table/wood/fancy/red, +/obj/effect/spawner/random/aimodule/harmful{ + pixel_y = 10 + }, +/obj/item/ai_module/reset/purge, +/obj/machinery/door/window/brigdoor/left/directional/north{ + req_access = list("ai_upload"); + name = "AI Modules" }, +/obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rDc" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) "rDd" = ( /obj/structure/chair/office{ @@ -61187,14 +65197,15 @@ }, /turf/open/floor/eighties, /area/station/construction/storage_wing) -"rDm" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/stairs/right, -/area/station/maintenance/disposal/incinerator) "rDr" = ( /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"rDs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "rDv" = ( /turf/closed/wall, /area/station/construction/storage_wing) @@ -61208,6 +65219,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"rDz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "rDC" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/food_or_drink/snack{ @@ -61220,23 +65236,41 @@ /turf/open/floor/iron/dark/textured_large, /area/station/cargo/bitrunning/den) "rDD" = ( +/obj/item/emergency_bed, +/obj/item/emergency_bed{ + pixel_y = 3 + }, +/obj/item/emergency_bed{ + pixel_y = 3 + }, +/obj/structure/rack, /obj/structure/railing{ dir = 8 }, -/obj/machinery/computer/crew{ - dir = 1 +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" }, -/obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/medical/medbay/central) +"rDG" = ( +/obj/effect/turf_decal/tile/red, +/turf/closed/wall/r_wall, +/area/station/engineering/lobby) "rDN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ - dir = 5 + dir = 4 }, -/turf/open/floor/iron/white/textured, -/area/station/medical/surgery) +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "rEd" = ( /obj/structure/ladder, /obj/effect/decal/cleanable/dirt, @@ -61249,41 +65283,33 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) -"rEt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark/small, -/area/station/medical/morgue) -"rEv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/stairs/medium, -/area/station/maintenance/starboard/lesser) "rED" = ( /turf/closed/wall, /area/station/security/prison/shower) -"rEG" = ( -/obj/structure/mirror/directional/north, -/obj/item/cigbutt, -/obj/structure/sink/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "rEL" = ( -/obj/effect/turf_decal/siding/blue{ +/obj/machinery/requests_console/directional/north{ + department = "Medbay"; + name = "Medbay Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/disposalpipe/trunk{ dir = 8 }, +/obj/machinery/disposal/bin, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"rFi" = ( -/obj/structure/chair{ - dir = 4; - pixel_y = -2 +"rET" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Quarters" }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) +"rFg" = ( +/turf/open/floor/engine/hull/air, +/area/station/engineering/supermatter/room/upper) "rFj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -61296,42 +65322,20 @@ /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay"); - c_tag = "Medbay - Lower Cryo" +/obj/machinery/computer/crew{ + dir = 1 }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/office) "rFm" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/disposalpipe/trunk, /obj/machinery/disposal/bin, /turf/open/floor/wood, /area/station/hallway/secondary/service) -"rFq" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) -"rFr" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/structure/fluff/paper/stack{ - dir = 4 - }, -/obj/structure/fluff/paper/corner{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "rFx" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -61371,6 +65375,11 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"rFM" = ( +/obj/structure/stairs/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/stairs/medium, +/area/station/maintenance/starboard) "rGb" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -61381,6 +65390,11 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"rGg" = ( +/obj/structure/table/reinforced, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "rGp" = ( /obj/structure/railing{ dir = 8 @@ -61390,19 +65404,40 @@ }, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"rGw" = ( +"rGq" = ( +/obj/machinery/light/small/directional/east, /obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/solars/starboard/fore) +"rGK" = ( +/obj/structure/fake_stairs/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"rGY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"rGK" = ( -/obj/structure/fake_stairs/directional/east, +"rHf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/pen/blue{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/structure/fluff/paper/stack{ + desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; + dir = 1 + }, +/obj/structure/fluff/paper/corner, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/station/maintenance/port/aft) +/area/station/maintenance/aft) "rHk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -61417,7 +65452,9 @@ dir = 4 }, /obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "rHq" = ( /obj/effect/landmark/event_spawn, @@ -61429,12 +65466,14 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) "rHB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "rHD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -61458,11 +65497,7 @@ }, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rHN" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/interior) "rHS" = ( /obj/structure/lattice/catwalk, /obj/machinery/door/window/left/directional/west{ @@ -61470,21 +65505,18 @@ }, /turf/open/openspace, /area/station/command/gateway) -"rHU" = ( -/obj/structure/reflector/double{ - dir = 6 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"rHZ" = ( -/obj/structure/closet/firecloset, -/obj/item/radio/intercom/directional/south, +"rHT" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 + dir = 5 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/machinery/vending/tool, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) +"rHX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/wood/large, +/area/station/medical/psychology) "rIi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61500,6 +65532,15 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"rIm" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "rIq" = ( /obj/structure/chair/pew/right{ dir = 8 @@ -61507,10 +65548,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/service/chapel) -"rIw" = ( -/obj/machinery/vending/tool, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "rIA" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/structure/window/reinforced/spawner/directional/south, @@ -61528,7 +65565,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/directional/east, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "rIU" = ( /obj/structure/disposalpipe/segment{ @@ -61552,17 +65589,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/cytology) -"rIZ" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "rJa" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 @@ -61575,12 +65601,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"rJe" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 10 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "rJi" = ( /obj/machinery/door/airlock{ id_tag = "restroom_3"; @@ -61608,21 +65628,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/service/cafeteria) -"rJB" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/petri_dish/random{ - pixel_x = -14; - pixel_y = 7 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "rJF" = ( /obj/structure/lattice, /obj/structure/rack, @@ -61640,16 +65645,26 @@ /obj/effect/spawner/random/clothing/costume, /obj/effect/spawner/random/clothing/funny_hats, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rJJ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/area/station/ai/satellite/interior) +"rJL" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/arrow_ccw{ dir = 4 }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"rKf" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"rKj" = ( +/obj/effect/turf_decal/stripes/corner, /obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "rKn" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -61659,33 +65674,11 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel) -"rKq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/cryo) -"rKz" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "N20 Multideck Adapter"; - dir = 8 - }, -/obj/machinery/meter{ - name = "N20 meter" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"rKA" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) "rKJ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"rKL" = ( -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "rKN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -61693,13 +65686,6 @@ /obj/structure/fireaxecabinet/mechremoval/directional/east, /turf/open/floor/iron, /area/station/science/robotics) -"rKO" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "rKQ" = ( /obj/structure/sign/poster/official/walk, /turf/closed/wall, @@ -61746,15 +65732,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/breakroom) -"rLz" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/openspace, -/area/station/engineering/lobby) "rLA" = ( /obj/effect/turf_decal/tile/purple/fourcorners, /obj/structure/railing{ @@ -61767,13 +65744,6 @@ /obj/item/clothing/glasses/science, /turf/open/floor/iron, /area/station/science/research) -"rLK" = ( -/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/filled/line, -/turf/open/floor/iron, -/area/station/engineering/lobby) "rMc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61782,20 +65752,22 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"rMe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/wall_healer/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"rMj" = ( -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +"rMr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "rMv" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "chemshutters"; + name = "Pharmacy Shutters" + }, +/obj/effect/spawner/structure/window, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "rMS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61805,7 +65777,7 @@ }, /obj/effect/mapping_helpers/mail_sorting/security/general, /obj/effect/mapping_helpers/mail_sorting/security/hos_office, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "rMW" = ( /obj/effect/turf_decal/stripes/line{ @@ -61820,6 +65792,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"rNa" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "rNc" = ( /obj/structure/lattice/catwalk, /obj/item/stack/cable_coil{ @@ -61830,40 +65813,20 @@ "rNe" = ( /turf/open/openspace, /area/station/commons/fitness/recreation) -"rNx" = ( -/obj/structure/table, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/stamp/granted{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) "rNA" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"rND" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 +"rNI" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/storage) "rNT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -61872,14 +65835,19 @@ }, /turf/open/floor/iron/airless, /area/station/maintenance/starboard/aft) +"rNU" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "rOb" = ( /obj/machinery/newscaster/directional/east, /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 }, -/obj/machinery/modular_computer/preset/cargochat/cargo{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/cargo/storage) "rOc" = ( @@ -61912,6 +65880,17 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) +"rOl" = ( +/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/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "rOn" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -61928,29 +65907,49 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"rOy" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "rOA" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/science/central) -"rOB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "rOC" = ( /obj/machinery/light/directional/north, /obj/machinery/computer/cargo/request, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rOG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ - dir = 4 +/area/station/ai/satellite/interior) +"rOE" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/pen{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/wood, +/area/station/maintenance/aft) "rOQ" = ( /obj/machinery/skill_station, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) +"rOW" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "SM_Outside_shutters"; + name = "Outside Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"rOX" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "rPd" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -61960,19 +65959,15 @@ }, /turf/open/floor/iron, /area/station/science/lab) +"rPg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "rPh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/requests_console/directional/south{ - department = "Engineering"; - name = "Engineering Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/mapping_helpers/requests_console/supplies, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/structure/lattice/catwalk, +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "rPn" = ( /obj/structure/table, /obj/item/assembly/flash/handheld{ @@ -61984,11 +65979,6 @@ }, /turf/open/floor/iron/grimy, /area/station/security/interrogation) -"rPs" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, -/area/station/commons/dorms) "rPw" = ( /obj/item/cigbutt{ pixel_x = -12; @@ -62008,18 +65998,15 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/station/maintenance/port) -"rPK" = ( -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "rPQ" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, -/obj/item/radio/intercom/directional/west, /obj/machinery/light/directional/west, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "rPS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62031,26 +66018,6 @@ /obj/effect/mapping_helpers/mail_sorting/service/chapel, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"rPU" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/port) -"rPV" = ( -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - name = "decommissioned sleeper" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rQb" = ( -/obj/machinery/atmospherics/components/binary/pump/off/general/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "rQg" = ( /obj/structure/tank_holder/extinguisher, /obj/machinery/light/directional/east, @@ -62082,6 +66049,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) +"rQG" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/modular_computer/preset/engineering{ + dir = 8 + }, +/obj/effect/turf_decal/bot/right, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"rQN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/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/engineering/atmos/office) "rQQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62091,11 +66077,41 @@ }, /turf/open/floor/iron/dark, /area/station/security/medical) +"rQR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "rQU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/item/stack/medical/gauze{ + pixel_x = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 4 }, -/obj/machinery/firealarm/directional/west, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "rRd" = ( @@ -62104,23 +66120,13 @@ /turf/open/floor/iron/dark, /area/station/science/xenobiology) "rRg" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/warm/dim/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"rRh" = ( -/obj/machinery/light/directional/east, -/obj/structure/closet/crate/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/obj/machinery/status_display/supply{ + pixel_x = -32 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "rRn" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, @@ -62128,17 +66134,8 @@ /area/station/engineering/supermatter/room) "rRy" = ( /obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 1 - }, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"rRJ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/lobby) "rRM" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -62166,70 +66163,78 @@ /turf/open/floor/iron, /area/station/cargo/storage) "rRN" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/south{ - name = "Cargo Desk"; - req_access = list("mining") +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 }, -/obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rRW" = ( -/obj/item/ammo_casing/spent{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/ammo_casing/spent{ - pixel_x = 2; - pixel_y = -9 +/area/station/hallway/primary/starboard) +"rRP" = ( +/obj/machinery/vatgrower, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"rRT" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/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/supermatter/room/upper) "rSb" = ( /obj/machinery/light_switch/directional/south, -/obj/structure/disposaloutlet{ +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/railing{ - dir = 9 +/obj/item/storage/box/shipping{ + pixel_x = 4; + pixel_y = 10 }, -/turf/open/floor/iron, +/obj/item/clothing/head/costume/mailman, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) -"rSi" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "rSj" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/smooth_edge{ +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"rSD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/area/station/medical/pharmacy) -"rSu" = ( -/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rSG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"rSP" = ( /obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/washing_machine, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/obj/machinery/power/smes/engineering, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "rSX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"rTa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"rTe" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue" }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/turf/open/floor/iron/dark/small, +/area/station/medical/morgue) "rTk" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -62244,34 +66249,20 @@ /turf/open/floor/iron/dark, /area/station/security/office) "rTp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white/textured_corner, -/area/station/medical/surgery) +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "rTz" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/security/brig) -"rTD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/mapping_helpers/apc/unlocked, -/obj/effect/mapping_helpers/apc/no_charge, -/obj/effect/mapping_helpers/apc/cut_AI_wire, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) "rTF" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, /obj/machinery/computer/exoscanner_control, -/obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/cargo/storage) "rTH" = ( @@ -62285,10 +66276,6 @@ dir = 8 }, /area/station/hallway/primary/fore) -"rTQ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) "rTR" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -62300,15 +66287,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"rUf" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Malpractice Tower" - }, -/obj/effect/turf_decal/tile/green/full, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) "rUj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62336,6 +66314,11 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"rUq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office/private_investigators_office) "rUr" = ( /obj/structure/railing{ dir = 4 @@ -62347,18 +66330,6 @@ /obj/machinery/disposal/bin, /turf/open/openspace, /area/station/science/xenobiology) -"rUC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/obj/effect/landmark/event_spawn, -/obj/item/chisel{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) "rUE" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -62372,6 +66343,22 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) +"rUR" = ( +/obj/machinery/door/airlock/external, +/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/starboard/aft/upper) +"rVb" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "rVc" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -62382,22 +66369,62 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"rVd" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table/reinforced, +/obj/item/storage/briefcase/secure{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/paper/monitorkey, +/obj/item/clipboard, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) "rVf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"rVo" = ( +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "rVs" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"rVx" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"rVt" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/layer2{ + dir = 8; + name = "Incinerator to Waste" + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"rVA" = ( +/obj/item/kirbyplants/random, +/obj/machinery/button/door/directional/east{ + id = "Cabin4"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "rVE" = ( /obj/structure/table/reinforced, /obj/item/food/burger/catburger{ @@ -62405,8 +66432,14 @@ pixel_x = -4; pixel_y = 8 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"rVG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "rVJ" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -62415,26 +66448,36 @@ }, /turf/open/floor/eighties/red, /area/station/maintenance/hallway/abandoned_recreation) +"rVL" = ( +/obj/item/banner/cargo/mundane, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "rVM" = ( /obj/structure/lattice/catwalk, /obj/structure/table/reinforced, /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, +/obj/machinery/light_switch/directional/west, /turf/open/openspace, /area/station/security/checkpoint/customs) -"rVT" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/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/mail_sorting/service/dormitories, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8 +"rVS" = ( +/obj/structure/table, +/obj/item/tape{ + pixel_x = -4 }, -/turf/open/floor/iron, -/area/station/commons/dorms) +/turf/open/floor/plating, +/area/station/maintenance/starboard) "rVX" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 2" @@ -62444,14 +66487,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) -"rWf" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +"rWg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/engine/hull, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"rWn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "rWp" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -62459,11 +66507,6 @@ /obj/structure/sign/calendar/directional/north, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"rWs" = ( -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "rWx" = ( /obj/effect/turf_decal/stripes/corner, /turf/open/floor/engine/hull, @@ -62485,12 +66528,6 @@ dir = 8 }, /area/station/hallway/primary/starboard) -"rWH" = ( -/obj/item/cigbutt, -/obj/effect/landmark/start/hangover, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) "rWJ" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -62506,37 +66543,79 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"rWT" = ( +"rWN" = ( +/obj/structure/reagent_dispensers/plumbed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rWZ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/arrow_ccw{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"rXj" = ( +/obj/item/stock_parts/water_recycler{ + pixel_y = 2; + pixel_x = -5 + }, +/obj/structure/frame/machine/secured, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"rXt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rXq" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=20-Genetics"; + location = "19-Captain" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) "rXD" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/security/interrogation) -"rXI" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "rXL" = ( /turf/open/openspace, /area/station/science/robotics/lab) +"rXM" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Laundromat" + }, +/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/machinery/duct, +/turf/open/floor/iron/textured, +/area/station/commons/dorms/laundry) "rXS" = ( /turf/open/floor/plating, /area/station/maintenance/department/medical) +"rXX" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/light_switch/directional/west, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) "rXY" = ( /obj/effect/turf_decal/siding/purple/corner, /obj/structure/cable, @@ -62551,72 +66630,70 @@ /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "rYf" = ( /obj/structure/grille, /obj/structure/lattice, /turf/open/space/openspace, /area/space/nearstation) +"rYh" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "rYu" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) -"rYB" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 +/obj/effect/turf_decal/siding/dark{ + dir = 8 }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"rYF" = ( -/obj/structure/cable, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) +"rYw" = ( /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/textured_large, -/area/station/medical/medbay/central) -"rYH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/structure/cable, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=18-Bathroom"; + location = "17-Dorms" }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"rYJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/structure/sign/poster/contraband/random/directional/north, /obj/structure/disposalpipe/segment{ - dir = 6 + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"rYP" = ( +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/commons/dorms) +"rYF" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/reinforced, -/obj/item/stamp/denied{ - pixel_x = 13 - }, -/obj/item/stamp/head/ce{ - pixel_y = 3 +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"rYQ" = ( +/obj/machinery/conveyor{ + id = "garbage" }, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 10 +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"rYR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/item/pen{ - pixel_x = 17 +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) -"rYQ" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, -/area/station/maintenance/disposal) +/area/station/maintenance/aft) +"rYU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) "rYV" = ( /obj/effect/mapping_helpers/airlock/access/any/service/theatre, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62627,10 +66704,15 @@ }, /turf/open/floor/plating, /area/station/service/theater) -"rZl" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, +"rZi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/abandoned) +"rZp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, /area/station/engineering/atmos/upper) "rZs" = ( /obj/structure/chair, @@ -62640,22 +66722,46 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/security/courtroom) -"rZv" = ( +"rZH" = ( +/obj/structure/table, +/obj/item/hand_labeler{ + pixel_y = 7 + }, +/obj/item/camera_film{ + pixel_y = 3 + }, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/storage/art) "rZP" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white/textured_corner, -/area/station/medical/surgery) +/obj/effect/turf_decal/siding/dark_blue/inner_corner{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "rZU" = ( /turf/open/floor/engine/hull/reinforced, /area/station/maintenance/port/aft) "sag" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"sai" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Abandoned Bar" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "saq" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/effect/landmark/start/hangover, @@ -62667,6 +66773,13 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"sau" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/sign/poster/contraband/space_up/directional/east, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris/directional/south, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "saE" = ( /obj/structure/window/spawner/directional/north, /obj/machinery/door/firedoor/border_only{ @@ -62691,6 +66804,16 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) +"saT" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/aft/upper) +"saX" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/structure/frame/machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "sbb" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 @@ -62702,7 +66825,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sbd" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/siding/wood, @@ -62719,12 +66842,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"sbn" = ( -/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/plating, -/area/station/maintenance/starboard/lesser) "sbp" = ( /turf/open/floor/engine/plasma, /area/station/engineering/atmos/upper) @@ -62777,69 +66894,6 @@ }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"sbF" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/rack, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/wrench, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"sbI" = ( -/obj/item/toy/plush/lizard_plushie/green{ - name = "Swats-The-Moths"; - pixel_y = -10 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/dark_green/opposingcorners, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/poster/contraband/lizard/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"sbP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"sbT" = ( -/obj/structure/flora/bush/large/style_random, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/turf/open/floor/grass, -/area/station/medical/medbay/central) -"scc" = ( -/obj/effect/turf_decal/siding{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"sce" = ( -/obj/effect/decal/cleanable/crayon{ - icon_state = "nay"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "scf" = ( /obj/structure/table, /obj/item/grenade/chem_grenade/teargas/moustache{ @@ -62868,7 +66922,8 @@ pixel_y = 11 }, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/service/library) @@ -62876,13 +66931,6 @@ /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"scy" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "scE" = ( /obj/machinery/light/directional/south, /obj/machinery/light_switch/directional/south, @@ -62901,11 +66949,14 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "scJ" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/green{ dir = 1 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "scK" = ( /obj/effect/turf_decal/bot/right, @@ -62917,6 +66968,19 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"scO" = ( +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/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/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "scQ" = ( /obj/structure/table, /obj/structure/window/spawner/directional/north, @@ -62939,14 +67003,6 @@ "sdf" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/interrogation) -"sdm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chair, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "sds" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, @@ -62970,12 +67026,16 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"sdI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sdP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) +/obj/machinery/computer/atmos_control, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) "sdV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63032,6 +67092,12 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/grass, /area/station/engineering/lobby) +"seD" = ( +/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/security/courtroom) "seF" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -63052,39 +67118,32 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/small, /area/station/security/mechbay) -"seW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 9 - }, +"sfc" = ( +/obj/structure/lattice, /turf/open/openspace, -/area/station/engineering/break_room) +/area/station/maintenance/starboard/upper) "sfh" = ( /turf/closed/wall, /area/station/maintenance/disposal) "sfj" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 - }, -/obj/structure/sink/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayExit"; + name = "Medbay Exit" }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay"); - c_tag = "Medbay - Lower North Treatment Center" +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 }, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "sfn" = ( -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "sfp" = ( /obj/structure/table/reinforced, /obj/item/camera{ @@ -63094,14 +67153,11 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/security/courtroom) -"sfq" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/station/commons/dorms) +"sfv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "sfz" = ( /obj/machinery/door/airlock/security/glass{ name = "Security Post - Cargo" @@ -63109,13 +67165,9 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/security/general, /obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"sfJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/footprints, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sfL" = ( /obj/machinery/atmospherics/components/binary/valve, /turf/open/floor/iron/dark, @@ -63127,6 +67179,24 @@ /obj/structure/displaycase/noalert, /turf/open/floor/iron/dark, /area/station/science/lobby) +"sfR" = ( +/obj/machinery/computer/crew, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"sfS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/modular_computer/preset/engineering{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "sgf" = ( /obj/structure/ladder, /obj/structure/cable, @@ -63160,23 +67230,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"sgG" = ( -/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/fore) -"sgM" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"sgN" = ( +/obj/structure/bed/medical/emergency, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "sgQ" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/gambling, @@ -63184,36 +67249,28 @@ icon_state = "carpet-137" }, /area/station/service/abandoned_gambling_den) -"sgU" = ( -/obj/structure/table, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 +"sgT" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/machinery/cell_charger{ - pixel_y = 9 +/obj/machinery/camera/autoname/directional/west, +/obj/structure/chair{ + dir = 4; + pixel_y = -2 }, -/obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/area/station/medical/medbay/lobby) "sgV" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/landmark/navigate_destination/disposals, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) -"sgX" = ( -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/break_room) "shb" = ( /obj/effect/turf_decal/siding/red{ dir = 8 @@ -63223,6 +67280,11 @@ "shi" = ( /turf/closed/wall/r_wall, /area/station/engineering/storage_shared) +"shl" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "shs" = ( /turf/closed/wall, /area/station/commons/vacant_room/office) @@ -63243,9 +67305,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"shx" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) "shG" = ( /obj/structure/railing{ dir = 8 @@ -63263,6 +67322,9 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/mechbay) +"shQ" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/office) "shR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/blacklight/directional/west, @@ -63281,20 +67343,31 @@ /area/station/hallway/secondary/construction) "sik" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ 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/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"siz" = ( -/obj/machinery/light/directional/south, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/break_room) +"siA" = ( +/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/iron, +/area/station/hallway/primary/aft) +"siD" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/engineering/lobby) "siG" = ( /obj/effect/spawner/random/structure/crate, /obj/effect/spawner/random/maintenance, @@ -63305,26 +67378,19 @@ /obj/effect/landmark/start/depsec/science, /turf/open/openspace, /area/station/security/checkpoint/science) -"siM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper{ - dir = 4 - }, -/obj/structure/fluff/paper/stack{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"siN" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "siP" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) +"siR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "siX" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/dirt, @@ -63344,19 +67410,33 @@ }, /turf/open/floor/wood/large, /area/station/commons/lounge) -"sjq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 8 +"sjr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "CE's Maintenance Access" }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) "sjx" = ( /turf/closed/wall, /area/station/hallway/primary/port) +"sjy" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/structure/sign/warning/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"sjz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/obj/structure/sign/warning/yes_smoking/circle/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/toilet/restrooms) "sjC" = ( /obj/structure/stairs/south, /turf/open/floor/iron/stairs/medium{ @@ -63376,58 +67456,16 @@ }, /turf/open/floor/iron, /area/station/science/robotics) -"sjO" = ( -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"sjQ" = ( -/obj/structure/railing, -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/folder/blue{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/folder{ - pixel_x = 2 - }, -/obj/item/taperecorder{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/structure/cable, -/turf/open/floor/wood/large, -/area/station/service/library/private) "sjT" = ( /obj/structure/cable, /turf/closed/wall/r_wall, /area/station/security/office) -"ska" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "skm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/spawner/random/structure/shipping_container, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"sko" = ( -/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/ce) "skq" = ( /obj/machinery/power/solar{ id = "starboardsolar"; @@ -63446,12 +67484,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"skC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "skR" = ( /obj/structure/table/wood, /obj/item/vending_refill/cigarette{ @@ -63510,6 +67542,10 @@ }, /turf/open/openspace, /area/station/hallway/secondary/construction) +"slo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) "slt" = ( /obj/structure/railing{ dir = 8 @@ -63523,6 +67559,41 @@ /obj/effect/spawner/random/maintenance/no_decals, /turf/open/floor/plating/airless, /area/space/nearstation) +"slI" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/medical/medbay/central) +"slK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow/full, +/obj/item/reagent_containers/cup/bottle/morphine{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/bottle/toxin{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -3; + pixel_y = 6 + }, +/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 = 4; + req_access = list("medical") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "chemshutters"; + name = "Pharmacy Shutters" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "slL" = ( /obj/effect/spawner/random/structure/grille, /turf/open/space/openspace, @@ -63536,12 +67607,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"slP" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "slS" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -63550,8 +67615,9 @@ /obj/structure/railing/corner/end/flip{ dir = 8 }, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "smc" = ( /obj/machinery/button/door/directional/west{ name = "Kitchen Counter Shutters Control"; @@ -63565,12 +67631,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"smk" = ( -/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/lobby) +"sml" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "smz" = ( /obj/machinery/hydroponics/soil, /obj/effect/decal/cleanable/dirt, @@ -63578,14 +67648,6 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"smD" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) -"smV" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/morgue) "snd" = ( /obj/machinery/mecha_part_fabricator{ drop_direction = 4 @@ -63603,22 +67665,21 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) +"sny" = ( +/turf/closed/wall, +/area/station/medical/chem_storage) "snE" = ( -/obj/structure/disposalpipe/trunk/multiz{ +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/turf/closed/wall, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"snF" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"snQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "snR" = ( /obj/structure/railing/corner{ dir = 1 @@ -63677,54 +67738,30 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"soH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/sign/poster/official/random/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/openspace, -/area/station/commons/dorms) +"soR" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "soU" = ( /turf/closed/wall, /area/station/science/research) -"spb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine/hull/air, -/area/station/engineering/storage_shared) "spl" = ( -/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/textured_large, /area/station/medical/abandoned) -"spr" = ( -/obj/structure/table, -/obj/item/hand_labeler{ - pixel_y = 11 - }, -/obj/item/hand_labeler_refill{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/machinery/power/apc/auto_name/directional/east, +"spn" = ( +/obj/structure/chair/office, +/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/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, /turf/open/floor/iron, +/area/station/engineering/lobby) +"spr" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) -"spw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "abandoned_kitchen"; - name = "Kitchen Shudders" - }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "spC" = ( /obj/machinery/teleport/station, /obj/effect/turf_decal/tile/green/opposingcorners{ @@ -63744,36 +67781,43 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"spK" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "spO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/wood/large, /area/station/service/library) -"sql" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"sqo" = ( -/obj/structure/chair/greyscale{ - dir = 1 +"sqj" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "sqp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark/smooth_edge, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "sqq" = ( /obj/effect/turf_decal/trimline/green/filled/line{ @@ -63787,47 +67831,52 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"sqz" = ( -/obj/structure/cable, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 13 - }, -/obj/item/cigbutt{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"sqy" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "sqQ" = ( -/obj/effect/turf_decal/siding/wood/corner, -/obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/textured, +/area/station/command/eva) "sqR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, /obj/structure/window/spawner/directional/south, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"src" = ( -/obj/structure/table, -/obj/machinery/microwave/engineering/cell_included, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"srx" = ( -/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/landmark/event_spawn, +"srh" = ( +/obj/effect/spawner/random/structure/grille, +/obj/structure/cable, /turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"sri" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/dark/smooth_large, /area/station/commons/dorms) -"sry" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +"sru" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"srA" = ( +/obj/structure/table, +/obj/item/lipstick/purple{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/mask/animal/horsehead{ + pixel_x = 4; + pixel_y = 15 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "srB" = ( /obj/machinery/camera/directional/west, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -63861,9 +67910,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) "ssc" = ( @@ -63877,16 +67924,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"ssm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "sso" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/engineering/atmospherics_portable, @@ -63922,14 +67959,6 @@ }, /turf/open/misc/asteroid, /area/station/science/xenobiology/hallway) -"ssO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "ssT" = ( /obj/structure/table/wood, /obj/structure/desk_bell{ @@ -63950,6 +67979,29 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/cafeteria) +"ssX" = ( +/obj/structure/sink/directional/east, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"sta" = ( +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/airlock/mining{ + name = "Deliveries" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/shipping, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den, +/turf/open/floor/iron, +/area/station/cargo/sorting) +"sti" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/lobby) "stk" = ( /obj/structure/table, /obj/machinery/recharger{ @@ -63970,7 +68022,7 @@ /area/station/security/range) "stm" = ( /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "stq" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 6 @@ -63988,6 +68040,12 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/checkpoint/science) +"stt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/tank_dispenser, +/obj/structure/sign/poster/official/moth_hardhat/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "stv" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -63997,33 +68055,31 @@ dir = 4 }, /turf/open/openspace, -/area/station/command/bridge) -"stR" = ( -/obj/effect/turf_decal/siding{ - dir = 5 +/area/station/command/meeting_room/council) +"stC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "stW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","medbay"); - c_tag = "Medbay - Upper Plumbing Area East" - }, -/turf/open/floor/engine/hull/air, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/east, +/turf/open/floor/glass/reinforced, /area/station/medical/chemistry) -"stY" = ( -/obj/item/storage/box/lights/mixed, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) "sus" = ( /turf/open/floor/plating, /area/station/engineering/storage_shared) +"sux" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "suy" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -64039,24 +68095,50 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"suI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "suJ" = ( /obj/structure/sign/poster/official/moth_meth/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"suP" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 +"suK" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/requests_console/directional/north{ - department = "Medbay"; - name = "Medbay Requests Console" +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"suM" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"suQ" = ( +/obj/machinery/computer/mecha, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"suV" = ( +/obj/machinery/meter{ + name = "C02 meter" }, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "CO2 Multideck Adapter"; + dir = 2 + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "svh" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, @@ -64070,15 +68152,11 @@ /turf/open/floor/plating, /area/station/solars/starboard/aft) "svp" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"svt" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "svw" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -64087,38 +68165,36 @@ /obj/structure/railing/corner, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"svB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"svL" = ( -/obj/machinery/door/poddoor/massdriver_ordnance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"svC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"svH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/atmos_shield_gen/active, -/obj/machinery/atmos_shield_gen/active{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"svM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/turf/open/floor/iron, +/area/station/commons/dorms) +"svT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/machinery/light/directional/east, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "svW" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 }, /turf/open/floor/wood, /area/station/service/library) +"swa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "swd" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/engine/hull, @@ -64127,11 +68203,6 @@ /obj/structure/disposalpipe/segment, /turf/open/openspace, /area/station/hallway/secondary/construction) -"swp" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "swH" = ( /obj/item/gun/ballistic/shotgun/doublebarrel, /obj/structure/table/wood, @@ -64159,7 +68230,30 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"swS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"swU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + 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/engineering/storage/tcomms) +"swX" = ( +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay"); + c_tag = "Medbay - Upper Secure Morgue" + }, +/obj/structure/bodycontainer/morgue/beeper_off, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "swZ" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/decal/cleanable/dirt, @@ -64216,25 +68310,51 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"sxx" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/glass/reinforced, -/area/station/solars/starboard/fore) -"sxT" = ( -/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/green/visible{ - dir = 4 +"sxO" = ( +/obj/machinery/vending/coffee, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"sxP" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"sxR" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "sxY" = ( /obj/structure/reflector/double/anchored{ dir = 10 }, /turf/open/floor/iron/dark/textured, /area/station/engineering/supermatter/room) +"sxZ" = ( +/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/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/machinery/fax{ + fax_name = "Chief Medical Officer's Office"; + name = "Chief Medical Officer's Fax Machine" + }, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) "syi" = ( /obj/machinery/light/directional/south, /turf/open/floor/engine, @@ -64243,6 +68363,11 @@ /obj/structure/transit_tube/diagonal, /turf/open/space/openspace, /area/space/nearstation) +"sym" = ( +/obj/machinery/light/warm/dim/directional/west, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/hallway/primary/central) "syw" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -64250,22 +68375,40 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"syD" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/openspace, +/area/station/medical/medbay/central) +"syK" = ( +/obj/structure/closet/firecloset, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"syN" = ( +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + name = "decommissioned sleeper" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "syR" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) -"syU" = ( -/obj/item/ammo_casing/spent{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -6; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"syT" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "syZ" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/structure/railing/corner{ @@ -64274,6 +68417,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/port/aft) +"szf" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "szi" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -64291,17 +68442,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"szn" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/table, -/obj/structure/microscope, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "szp" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -64325,14 +68465,41 @@ }, /obj/item/radio/intercom/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, +/turf/open/floor/carpet/purple, /area/station/command/gateway) +"szA" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"szG" = ( +/obj/effect/turf_decal/trimline/yellow/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/dark, +/area/station/engineering/engine_smes) "szK" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /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) +"szL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/pipe_dispenser, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "sAa" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/wood, @@ -64343,14 +68510,19 @@ /turf/open/openspace, /area/station/hallway/primary/central) "sAm" = ( -/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/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "sAn" = ( /obj/structure/table, @@ -64365,21 +68537,6 @@ /obj/effect/mapping_helpers/broken_machine, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"sAu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) -"sAB" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "sAE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -64388,19 +68545,16 @@ /obj/structure/sign/poster/contraband/missing_gloves/directional/south, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"sAG" = ( -/obj/effect/spawner/random/contraband/narcotics, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"sAI" = ( +/obj/item/food/grown/sunflower, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) +"sAR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/station/maintenance/port) -"sAM" = ( -/obj/machinery/keycard_auth/wall_mounted/directional/west{ - pixel_x = 26 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) +/area/station/maintenance/starboard/central) "sAT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -64431,6 +68585,13 @@ /obj/structure/cable, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/fore) +"sBv" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "sBz" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -64445,38 +68606,31 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) -"sBP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos/upper) "sCx" = ( /turf/open/openspace, /area/station/command/meeting_room/council) "sCA" = ( -/obj/machinery/computer/operating{ +/obj/machinery/stasis{ dir = 4 }, +/obj/machinery/defibrillator_mount/directional/west, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 8 }, -/obj/machinery/light/directional/west, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","medbay"); - c_tag = "Medbay - Lower Operating Room" - }, -/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +/area/station/medical/medbay/central) "sCD" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction, /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/station/engineering/supermatter/room) +"sCI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "sCP" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency, @@ -64488,7 +68642,7 @@ /area/station/maintenance/port/aft) "sDo" = ( /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sDu" = ( /obj/effect/landmark/navigate_destination/library, /obj/machinery/door/firedoor, @@ -64497,10 +68651,20 @@ }, /turf/open/floor/wood, /area/station/service/library) +"sDD" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/flora/bush/grassy/style_random, +/obj/machinery/camera/autoname/directional/north, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/machinery/light/small/directional/north, +/turf/open/floor/grass, +/area/station/engineering/lobby) "sDX" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -64513,6 +68677,11 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, /area/station/science/lab) +"sEc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "sEn" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 4 @@ -64527,15 +68696,6 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"sEt" = ( -/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 = 2 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/port) "sEI" = ( /obj/structure/tank_holder/extinguisher, /obj/machinery/camera/directional/north{ @@ -64576,6 +68736,10 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"sEV" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "sFa" = ( /obj/machinery/modular_computer/preset/id{ dir = 1 @@ -64609,9 +68773,6 @@ /turf/open/floor/iron, /area/station/science/lobby) "sFz" = ( -/obj/structure/chair{ - dir = 8 - }, /obj/structure/railing/corner, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -64619,7 +68780,9 @@ /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "sFB" = ( /obj/structure/chair/office/light{ @@ -64647,28 +68810,25 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/zoo) +"sFL" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "sFQ" = ( /obj/machinery/light/floor, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) "sFS" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay"); + c_tag = "Medbay - Upper Chemistry South" }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "sFU" = ( @@ -64678,59 +68838,44 @@ /obj/machinery/light/directional/east, /turf/open/floor/plating, /area/station/security/execution/education) -"sFV" = ( -/obj/structure/table/reinforced, -/obj/item/gun/ballistic/shotgun/toy/crossbow, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "sFW" = ( /obj/effect/turf_decal/trimline/dark_blue/corner{ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"sFZ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/area/station/ai/satellite/interior) "sGb" = ( /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/greater) "sGj" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 2 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "sGy" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, /obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"sGD" = ( +/obj/machinery/button/door/directional/east{ + id = "chem_lockdown"; + name = "chemistry lockdown control"; + req_access = list("pharmacy") + }, +/turf/open/floor/glass/reinforced, +/area/station/medical/chemistry) "sGQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, /obj/effect/turf_decal/tile/dark/full, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"sGR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "sGS" = ( /obj/structure/railing{ dir = 1 @@ -64739,14 +68884,37 @@ /obj/structure/cable, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"sGT" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "sGV" = ( /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, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"sHh" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"sHi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) +"sHr" = ( +/obj/item/assembly/mousetrap/armed, +/turf/open/floor/plating, +/area/station/maintenance/port) "sHu" = ( /obj/structure/ladder, /turf/open/floor/glass/reinforced/airless, @@ -64778,6 +68946,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"sIb" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/medical/break_room) "sIf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -64803,13 +68981,6 @@ /obj/machinery/light/floor/broken, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"sIn" = ( -/obj/item/stack/rods{ - amount = 7 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "sIp" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/detective{ @@ -64822,10 +68993,6 @@ }, /turf/open/floor/iron/grimy, /area/station/security/detectives_office/private_investigators_office) -"sIq" = ( -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sIr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/spawner/directional/south, @@ -64842,14 +69009,10 @@ /obj/structure/closet/secure_closet/security/sec, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) -"sIB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/structure/closet/toolcloset, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +"sII" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "sIO" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 1 @@ -64870,21 +69033,8 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/structure/sign/directions/engineering/directional/west{ - dir = 2 - }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"sIW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/lobby) "sJc" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "MiniSat Maintenance" @@ -64900,7 +69050,11 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"sJt" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/glass, +/area/station/medical/medbay/central) "sJv" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 @@ -64926,17 +69080,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/service/lawoffice) -"sJK" = ( -/obj/structure/mop_bucket{ - pixel_y = 9 - }, -/obj/item/reagent_containers/cup/bucket{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/mop, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sJQ" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -64944,7 +69087,9 @@ /obj/effect/turf_decal/trimline/red/filled/mid_joiner{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "sJR" = ( /turf/closed/wall, @@ -64961,19 +69106,24 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) -"sKC" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/bed/medical/emergency{ - dir = 4 - }, -/obj/machinery/iv_drip, +"sKn" = ( +/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/transit_tube) +"sKs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/light/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"sKx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/morgue) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/ce) "sKD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/fluff/paper/stack{ @@ -64982,22 +69132,9 @@ /turf/open/floor/carpet/black, /area/station/maintenance/hallway/abandoned_recreation) "sKF" = ( -/obj/machinery/computer/upload/ai{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/carpet/purple, -/area/station/ai_monitored/turret_protected/ai_upload) -"sKH" = ( -/obj/structure/table, -/obj/machinery/computer/arcade/orion_trail{ - desc = "For gamers only. Casuals need not apply."; - icon_screen = "library"; - icon_state = "oldcomp"; - name = "Gamer Computer" - }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "sKL" = ( /obj/structure/chair/stool/bar/directional/south, /obj/effect/landmark/start/hangover, @@ -65014,26 +69151,13 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/storage/primary) -"sKO" = ( -/obj/machinery/duct, -/obj/structure/rack, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"sKR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/chair/office{ +"sLa" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/chair/office/light{ dir = 1 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) -"sKT" = ( -/obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron/dark, -/area/station/commons/dorms) +/area/station/command/bridge) "sLd" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -65044,12 +69168,11 @@ }, /turf/open/floor/iron/dark, /area/station/science/cytology) -"sLx" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"sLt" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/storage/tools) "sLB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -65064,10 +69187,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) -"sLC" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/engine/hull/air, -/area/station/hallway/primary/aft) "sLG" = ( /obj/structure/railing{ dir = 8 @@ -65076,40 +69195,49 @@ /turf/open/openspace, /area/station/hallway/primary/central) "sLK" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/item/kirbyplants/random, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/turf/open/floor/iron/textured, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/rubble, +/turf/open/floor/iron/dark/smooth_large, /area/station/cargo/storage) -"sLS" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 +"sLO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/machinery/recharger{ - pixel_x = 7; - pixel_y = 6 +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) +"sLQ" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 9 }, -/obj/structure/cable, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"sLS" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_y = 11 + }, +/obj/item/pen{ + pixel_y = 8 + }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "sLY" = ( -/turf/open/floor/engine/hull/air, -/area/station/command/meeting_room/council) -"sMa" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/machinery/light/floor, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, /turf/open/floor/iron/dark, -/area/station/engineering/hallway) +/area/station/command/bridge) "sMp" = ( /obj/item/paint/violet{ pixel_x = -7; @@ -65121,6 +69249,13 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"sMr" = ( +/obj/machinery/mineral/stacking_unit_console{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "sMt" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -65129,16 +69264,34 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/prison) -"sMw" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Room" +"sMv" = ( +/obj/structure/cable, +/obj/machinery/power/smes, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/solars/port/aft) +"sMy" = ( +/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/item/clothing/gloves/color/black, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5 + }, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sMK" = ( /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "sMQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -65162,7 +69315,20 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) +"sNj" = ( +/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, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"sNz" = ( +/obj/structure/sign/flag/nanotrasen/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "sNC" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -65171,6 +69337,13 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"sNF" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "sNG" = ( /obj/machinery/conveyor{ dir = 4; @@ -65180,6 +69353,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/oil, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "sNN" = ( @@ -65189,27 +69363,30 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"sNW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"sNT" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/computer/records/security{ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) +/area/station/security/checkpoint/engineering) "sOa" = ( /obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, /obj/effect/turf_decal/siding/blue/corner{ dir = 8 }, -/turf/open/floor/engine/hull/air, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, /area/station/medical/medbay/central) -"sOl" = ( -/obj/effect/spawner/random/trash/mess, -/obj/item/stack/rods/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"sOm" = ( +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "sOn" = ( /turf/open/floor/engine, /area/station/science/auxlab/firing_range) @@ -65219,14 +69396,11 @@ }, /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"sOw" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/closet/crate/trashcart/laundry, -/obj/effect/spawner/random/clothing/backpack, -/obj/effect/spawner/random/clothing/backpack, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/area/station/ai/satellite/interior) +"sOy" = ( +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "sOz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -65250,6 +69424,40 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/cafeteria) +"sOU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) +"sOV" = ( +/obj/structure/reflector/double{ + dir = 6 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"sPc" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical{ + pixel_y = 4 + }, +/obj/item/storage/belt/medical{ + pixel_y = 6 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "sPg" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -65264,20 +69472,27 @@ /obj/machinery/rnd/production/protolathe/department/science, /turf/open/floor/iron/dark, /area/station/science/lobby) -"sPk" = ( -/obj/structure/ladder, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) -"sPp" = ( +"sPl" = ( +/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/blood/oil, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 11 +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) +"sPr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "sPt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/preopen, @@ -65317,10 +69532,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) -"sPC" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "sPT" = ( /obj/structure/rack, /obj/effect/spawner/random/food_or_drink, @@ -65340,7 +69551,7 @@ "sQg" = ( /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sQi" = ( /obj/machinery/photocopier/prebuilt, /obj/machinery/requests_console/directional/north{ @@ -65350,6 +69561,23 @@ /obj/machinery/light_switch/directional/west, /turf/open/floor/wood, /area/station/service/lawoffice) +"sQp" = ( +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"sQs" = ( +/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/all/medical/morgue, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance" + }, +/turf/open/floor/plating, +/area/station/medical/morgue) "sQu" = ( /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) @@ -65396,6 +69624,37 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"sQK" = ( +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 4 + }, +/obj/item/cigbutt{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/item/cigbutt{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/cigbutt{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/cigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "sQW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/frame/computer{ @@ -65411,17 +69670,6 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"sQZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/turf/open/openspace, -/area/station/hallway/primary/starboard) -"sRd" = ( -/obj/machinery/power/turbine/turbine_outlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "sRg" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, @@ -65440,13 +69688,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) -"sRj" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/openspace, -/area/station/engineering/break_room) "sRn" = ( /obj/structure/table/reinforced, /obj/item/multitool{ @@ -65478,6 +69719,15 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/security/courtroom) +"sRD" = ( +/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/engine/hull/air, +/area/station/maintenance/port) "sRE" = ( /turf/closed/wall, /area/station/command/heads_quarters/ce) @@ -65494,22 +69744,17 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"sRP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/atmos/project) "sRY" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/port/greater) "sSc" = ( -/obj/structure/railing, /obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/machinery/light/floor, +/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/command/meeting_room/council) "sSs" = ( /obj/structure/chair/office/light, /obj/effect/landmark/start/research_director, @@ -65527,6 +69772,20 @@ "sSw" = ( /turf/closed/wall, /area/station/security/detectives_office) +"sSx" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"sSy" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "sSz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -65537,10 +69796,8 @@ /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2 - }, -/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office, +/obj/machinery/camera/autoname/directional/east, +/obj/item/radio/intercom/directional/east, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "sSG" = ( @@ -65559,11 +69816,6 @@ /obj/effect/spawner/random/trash/cigbutt, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"sSR" = ( -/obj/machinery/vending/coffee, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "sSW" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -65578,7 +69830,7 @@ /obj/item/storage/dice{ pixel_y = 8 }, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "sTa" = ( /obj/structure/table/wood/fancy/red, @@ -65603,26 +69855,17 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/maintenance/port/aft) +"sTp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "sTv" = ( /turf/closed/wall, /area/station/security/courtroom) -"sTS" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "sTT" = ( -/obj/structure/railing/corner/end/flip{ - dir = 4 - }, /obj/structure/broken_flooring/pile/directional/east, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, /turf/open/floor/plating, /area/station/maintenance/port/aft) "sUa" = ( @@ -65631,17 +69874,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/aisat/exterior) -"sUi" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/duct, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/area/station/ai/satellite/exterior) "sUm" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark/textured_corner{ @@ -65669,6 +69902,13 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"sUw" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "sUx" = ( /turf/open/openspace, /area/station/service/chapel) @@ -65690,6 +69930,26 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) +"sUH" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"sUK" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "sUM" = ( /obj/effect/turf_decal/box/white{ color = "#EFB341" @@ -65701,10 +69961,6 @@ /obj/effect/mapping_helpers/turn_off_lights_with_lightswitch, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"sUV" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sUW" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -65713,13 +69969,26 @@ }, /turf/open/openspace, /area/station/engineering/lobby) -"sVb" = ( -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/commons/dorms) +"sUY" = ( +/obj/machinery/atmospherics/pipe/multiz/cyan/visible{ + dir = 2; + name = "Air Mix Multideck Adapter" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/meter{ + name = "Mix Meter" + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"sVc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "sVj" = ( -/obj/structure/cable, /obj/machinery/vending/sustenance{ req_access = list("command") }, @@ -65727,6 +69996,19 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/central) +"sVo" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 12 + }, +/obj/item/stack/cable_coil{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/extinguisher/mini, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "sVq" = ( /obj/machinery/door/airlock{ id_tag = "restroom_2"; @@ -65735,10 +70017,6 @@ /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) -"sVA" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sVG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -65755,23 +70033,45 @@ /obj/effect/spawner/random/contraband/permabrig_weapon, /turf/open/floor/iron/dark, /area/station/security/evidence) +"sVO" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "sWg" = ( /obj/effect/turf_decal/box/corners{ dir = 8 }, /turf/open/floor/engine/hull, /area/space/nearstation) +"sWl" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "sWr" = ( /obj/machinery/door/airlock/mining{ name = "Inner Maintenance" }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/construction/storage_wing) +"sWH" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/commons/locker) "sWI" = ( /obj/machinery/camera/autoname/directional/south, /obj/structure/disposalpipe/segment{ @@ -65786,6 +70086,14 @@ /obj/effect/spawner/structure/window/hollow/middle, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"sWM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "sWN" = ( /obj/structure/closet/crate/bin, /obj/effect/spawner/random/maintenance, @@ -65801,9 +70109,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) +"sWX" = ( +/obj/structure/sign/warning/electric_shock/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "sWY" = ( /obj/structure/cable, +/obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/disposal) "sXd" = ( @@ -65816,25 +70130,41 @@ }, /turf/open/floor/wood/large, /area/station/medical/psychology) +"sXf" = ( +/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/engineering/lobby) "sXj" = ( /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/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "sXk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, /obj/effect/turf_decal/tile/red/opposingcorners{ 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/security/checkpoint/supply) "sXq" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"sXu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + name = "Belt Conveyor" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "sXI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/public/glass{ @@ -65852,6 +70182,7 @@ "sXU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/smartfridge/organ, +/obj/structure/sign/departments/medbay/alt/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) "sYc" = ( @@ -65862,17 +70193,14 @@ /obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) -"sYg" = ( -/obj/machinery/modular_computer/preset/civilian{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/area/station/command/meeting_room/council) +"sYh" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/filingcabinet/medical, +/turf/open/floor/engine/hull/air, +/area/station/medical/medbay/central) "sYo" = ( /obj/item/radio/intercom/directional/west, /obj/machinery/light/directional/west, @@ -65896,34 +70224,36 @@ /obj/effect/spawner/random/engineering/tool, /turf/open/floor/plating, /area/station/construction/storage_wing) -"sZh" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"sZi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "sZj" = ( /turf/open/floor/iron/stairs/medium{ dir = 1 }, /area/station/science/xenobiology) -"sZn" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/structure/table/glass, -/obj/machinery/light/directional/south, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","medbay"); - c_tag = "Medbay - Lower South Treatment Center" +"sZk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 }, -/obj/item/wrench/medical{ - pixel_x = -1; - pixel_y = 2 +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 1 }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"sZn" = ( +/obj/structure/chair/office/light{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/white, +/area/station/medical/office) "sZr" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ @@ -65943,17 +70273,17 @@ /obj/effect/turf_decal/trimline/purple/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"sZu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) "sZy" = ( /obj/structure/table, /turf/open/floor/glass, /area/station/science/zoo) +"sZA" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "sZL" = ( /obj/structure/marker_beacon/yellow, /obj/effect/decal/cleanable/dirt/dust, @@ -65979,36 +70309,58 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) -"tah" = ( -/obj/effect/spawner/random/trash/mess, -/obj/item/toy/crayon/spraycan{ - pixel_x = 12; - pixel_y = 13 - }, +"taf" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/effect/spawner/random/structure/crate, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "tai" = ( -/obj/structure/rack, -/obj/item/ai_module/reset{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/ai_module/supplied/freeform{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/multitool{ - pixel_x = -4; - pixel_y = -2 - }, /obj/structure/railing/corner{ dir = 8 }, +/obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) +"tan" = ( +/obj/effect/turf_decal/tile/blue/half, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"tao" = ( +/obj/item/clothing/head/wig/random, +/obj/item/bodypart/head/lizard, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) "tas" = ( /turf/closed/wall, /area/station/command/heads_quarters/qm) +"tau" = ( +/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/yjunction, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=9-Bridge"; + location = "8-Kitchen" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) +"taB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/flag/mothic/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "taF" = ( /obj/structure/railing{ dir = 4 @@ -66022,11 +70374,10 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "taG" = ( -/obj/structure/chair/sofa/corp/left, -/obj/item/pai_card, -/obj/machinery/light/directional/north, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery) "taJ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -66037,11 +70388,11 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "taS" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 }, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "taX" = ( /obj/item/vending_refill/boozeomat{ @@ -66071,11 +70422,10 @@ /obj/machinery/atmospherics/components/binary/pump/off/orange/visible, /turf/open/floor/plating, /area/station/engineering/supermatter) -"tbf" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"tbg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "tbh" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ @@ -66083,17 +70433,27 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tbu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay Entrance" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) +"tbv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "tbw" = ( /obj/effect/landmark/start/hangover, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66107,11 +70467,25 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/eighties/red, /area/station/maintenance/hallway/abandoned_recreation) -"tbI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"tbE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"tbO" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) +"tbU" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/upper) "tbY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -66160,12 +70534,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/service/chapel/office) +"tck" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/off{ + pixel_x = 6 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "tcr" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 8 +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 }, -/obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) "tcs" = ( @@ -66182,11 +70569,17 @@ /obj/structure/light_construct/directional/east, /turf/open/openspace, /area/station/maintenance/port/aft) -"tcz" = ( -/obj/effect/spawner/random/decoration/showcase, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +"tcB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "tcG" = ( /obj/effect/spawner/random/structure/shipping_container, /turf/open/floor/plating, @@ -66196,18 +70589,24 @@ /obj/item/pen/blue, /obj/item/pen/charcoal, /obj/structure/closet, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/station/maintenance/port/aft) -"tdt" = ( -/obj/structure/chair/sofa/right/brown, -/obj/item/pillow, -/obj/item/toy/plush/moth{ - name = "Mender Moff" +"tde" = ( +/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/opposingcorners{ + dir = 1 }, -/obj/structure/sign/poster/official/get_your_legs/directional/north, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet/black, -/area/station/medical/psychology) +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"tdl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "tdx" = ( /obj/structure/cable, /obj/machinery/power/emitter/welded, @@ -66217,16 +70616,14 @@ /obj/structure/broken_flooring/corner/directional/west, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"tdN" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tdT" = ( +"tdH" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/department/crew_quarters/dorms) "tdV" = ( /obj/docking_port/stationary{ dir = 4; @@ -66264,39 +70661,28 @@ /obj/structure/railing{ dir = 8 }, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) -"tep" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/arrow_cw{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ter" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/command/meeting_room/council) "tev" = ( /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/wood, /area/station/service/library) "tey" = ( +/obj/structure/sign/poster/contraband/communist_state/directional/north, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_x = 12; + pixel_y = 1 + }, /obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/cmo) +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "teA" = ( /obj/structure/railing, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "teC" = ( /obj/structure/chair/sofa/left/brown{ dir = 1 @@ -66309,11 +70695,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"teV" = ( -/obj/effect/turf_decal/bot_white, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) "teY" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -66325,21 +70706,22 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"teZ" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/security/courtroom) +"tfo" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) "tfp" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"tfr" = ( -/obj/structure/railing{ - dir = 10 +"tfq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/machinery/cloning_pod{ + desc = "An old prototype cloning pod, permanently decommissioned following the incident."; + name = "decommissioned cloner" }, -/obj/machinery/light/small/dim/directional/north, -/turf/open/water, -/area/station/maintenance/port/fore) +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "tfv" = ( /obj/machinery/door/airlock/silver{ aiControlDisabled = 1; @@ -66353,13 +70735,6 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/command/gateway) -"tfy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "tfK" = ( /turf/open/floor/glass, /area/station/service/kitchen) @@ -66379,33 +70754,17 @@ icon_state = "carpet-38" }, /area/station/service/abandoned_gambling_den) -"tgp" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "tgz" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, /area/station/service/chapel) -"tgE" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2 - }, -/obj/effect/mapping_helpers/mail_sorting/medbay/general, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "tgT" = ( /obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"tgV" = ( -/turf/open/floor/carpet, -/area/station/service/chapel) +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "thb" = ( /obj/effect/turf_decal/trimline/yellow/line{ dir = 4 @@ -66422,7 +70781,7 @@ id = "teleportshutters" }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "thf" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -66432,12 +70791,6 @@ }, /turf/open/floor/iron, /area/station/science/lab) -"thk" = ( -/obj/item/trash/can{ - pixel_x = -8 - }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) "tho" = ( /obj/structure/flora/bush/ferny/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -66463,6 +70816,12 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"thY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "tia" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock{ @@ -66481,6 +70840,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/space/openspace, /area/space/nearstation) +"tie" = ( +/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/freezer, +/area/station/commons/toilet/restrooms) +"tio" = ( +/obj/structure/urinal/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"tip" = ( +/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/maintenance/starboard/aft/upper) "tis" = ( /turf/open/floor/iron, /area/station/maintenance/port/greater) @@ -66494,19 +70872,57 @@ /obj/machinery/door/airlock/grunge{ name = "Under The Stairs" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"tiG" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/landmark/start/hangover, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/port) "tiK" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "Disposal Chute" + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"tiN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "tja" = ( /obj/machinery/light/cold/directional/north, /turf/open/floor/engine, /area/station/science/xenobiology) +"tje" = ( +/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/spawner/random/engineering/tracking_beacon, +/obj/machinery/duct, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "tjg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -66516,28 +70932,21 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"tji" = ( -/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/junction, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/port) "tjn" = ( /turf/open/openspace, /area/station/hallway/secondary/entry) -"tjt" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored{ - cable_layer = 1 +"tjx" = ( +/obj/effect/turf_decal/siding{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 9 +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "tjA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66546,6 +70955,14 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"tjB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/pai_card{ + pixel_y = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "tjM" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Maintenance" @@ -66564,10 +70981,6 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"tkh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "tkk" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -66582,6 +70995,9 @@ "tkm" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "tkn" = ( @@ -66598,15 +71014,14 @@ name = "Custom Channel" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"tkz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/railing/corner{ - dir = 8 +/area/station/ai/satellite/chamber) +"tks" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "tkK" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ @@ -66626,18 +71041,13 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison/mess) -"tkV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "tkX" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/morgue) +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/hallway/primary/starboard) "tkY" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -66646,6 +71056,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"tla" = ( +/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/supermatter/room/upper) "tlb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66666,41 +71081,12 @@ dir = 8 }, /area/station/tcommsat/server) -"tlf" = ( -/obj/machinery/portable_atmospherics/scrubber/huge/movable, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tlh" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/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/commons/storage/primary) -"tls" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/west, -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/turf/open/space/openspace, -/area/space/nearstation) "tlL" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/closet/l3closet/security, /turf/open/floor/iron/dark, /area/station/security/office) -"tlQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) "tma" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/ferny/style_random, @@ -66716,42 +71102,38 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"tmq" = ( -/obj/structure/lattice/catwalk, -/obj/item/clothing/under/costume/seifuku{ - pixel_y = -1 +"tmG" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 }, -/obj/structure/table, -/obj/structure/sign/poster/official/pda_ad/directional/south, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) -"tms" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) -"tmM" = ( -/obj/machinery/conveyor{ +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/machinery/light/small/directional/north, +/turf/open/floor/grass, +/area/station/engineering/lobby) +"tmK" = ( +/obj/effect/turf_decal/trimline/white/line{ dir = 8; - id = "cargounload" + pixel_x = 8 }, -/obj/structure/cable, -/obj/structure/railing/corner/end/flip{ - dir = 4 +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"tmM" = ( +/obj/structure/cable, /obj/structure/railing/corner/end{ dir = 4 }, /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, /area/station/cargo/storage) -"tmO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "tmS" = ( /obj/machinery/newscaster/directional/north, /obj/structure/table, @@ -66770,6 +71152,32 @@ /obj/machinery/camera/directional/north, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) +"tmT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/dorms) +"tmZ" = ( +/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, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "tna" = ( /obj/structure/fermenting_barrel/gunpowder, /obj/effect/decal/cleanable/greenglow, @@ -66783,22 +71191,35 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "tnf" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, +/obj/machinery/computer/robotics, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tnh" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"tni" = ( /obj/structure/railing{ dir = 8 }, -/obj/structure/bookcase/random/reference, +/obj/item/kirbyplants/random, /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, /turf/open/floor/wood, -/area/station/command/meeting_room/council) -"tnh" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/commons/toilet/restrooms) +"tns" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "tnt" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, @@ -66816,6 +71237,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/service/chapel) +"tnJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/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/dark, +/area/station/engineering/supermatter/room/upper) "tnM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -66828,29 +71256,10 @@ /area/station/hallway/secondary/service) "tnS" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"tnX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/holopad, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"tnY" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Project Room" + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/storage_shared) +/turf/open/floor/plating/airless, +/area/space/nearstation) "toh" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -66863,21 +71272,15 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, +/obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/medical/virology) "toj" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, -/obj/item/radio/intercom/directional/west, /obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "tom" = ( /obj/machinery/computer/camera_advanced/xenobio{ dir = 4 @@ -66917,8 +71320,32 @@ dir = 4 }, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) +"toT" = ( +/obj/machinery/mineral/ore_redemption{ + dir = 4; + input_dir = 4; + output_dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; + dir = 8 + }, +/obj/structure/railing{ + dir = 8; + color = "#36373a" + }, +/obj/structure/railing{ + dir = 4; + color = "#36373a" + }, +/obj/effect/turf_decal/bot_red, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) "tpe" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -66945,7 +71372,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tpj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/sign/poster/contraband/grey_tide/directional/west, @@ -66961,10 +71388,29 @@ /obj/effect/turf_decal/stripes/end, /turf/open/floor/plating/elevatorshaft, /area/station/security/prison) -"tpA" = ( +"tpB" = ( +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"tpI" = ( +/obj/machinery/meter{ + name = "Mix Meter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"tpJ" = ( +/obj/structure/lattice/catwalk, /obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/openspace, +/area/station/security/checkpoint/supply) "tpO" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/structure/table, @@ -66974,6 +71420,15 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"tpR" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "tpU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -66984,18 +71439,48 @@ }, /turf/open/floor/wood, /area/station/hallway/primary/central) -"tqQ" = ( -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"tqU" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/atmospherics, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) -"trH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/hallway/secondary/service) +"tqg" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/binoculars{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 3; + pixel_y = -1 + }, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) +"tqq" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/computer/crew, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tqv" = ( +/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 = 10 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"trv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "trK" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on, /obj/item/reagent_containers/cup/glass/shaker{ @@ -67012,10 +71497,19 @@ }, /turf/open/floor/iron, /area/station/science/lobby) -"trR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"trZ" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/end, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tsd" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -67026,22 +71520,38 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/service/library) -"tse" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) "tsl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/north, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/modular_computer/preset/id, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/light/warm/dim/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "tso" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"tsp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"tsA" = ( +/obj/structure/chair/sofa/corner/brown, +/obj/item/instrument/eguitar, +/obj/structure/sign/poster/contraband/space_cube/directional/north, +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "tsI" = ( /obj/machinery/light_switch/directional/south, /obj/machinery/disposal/bin, @@ -67061,34 +71571,71 @@ /obj/effect/turf_decal/tile/dark_blue/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"tsR" = ( -/obj/structure/closet/crate/trashcart/filled, -/obj/effect/spawner/random/maintenance/no_decals/five, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"tsV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/rebels_unite/directional/west, +/obj/item/ammo_casing/spent{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -11; + pixel_y = -5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "ttj" = ( /turf/open/floor/iron, /area/station/hallway/primary/port) +"ttk" = ( +/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/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "ttm" = ( /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/textured_large, /area/station/security/prison) +"ttn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ttr" = ( +/obj/machinery/airalarm/directional/west, /obj/structure/table/reinforced, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 +/obj/item/storage/box/beakers{ + pixel_y = 7; + pixel_x = -5 }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/obj/item/storage/box/gloves{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/item/assembly/igniter{ + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) +"ttw" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "ttA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67096,13 +71643,6 @@ /turf/open/floor/carpet, /area/station/security/detectives_office) "ttC" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/beakers{ - pixel_y = 7 - }, -/obj/item/assembly/igniter{ - pixel_y = -3 - }, /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -67110,8 +71650,16 @@ /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ dir = 1 }, +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/iodine{ + pixel_x = 1 + }, +/obj/item/reagent_containers/cup/bottle/fluorine{ + pixel_x = 7; + pixel_y = 3 + }, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) "ttK" = ( /obj/machinery/conveyor/auto{ dir = 4; @@ -67122,20 +71670,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"tub" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/ammo_casing/spent{ - pixel_x = -6; - pixel_y = 6 - }, +"tua" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/east, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tuj" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) "tuk" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -67149,21 +71688,6 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"tul" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/station_engineer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) -"tuw" = ( -/obj/structure/sign/departments/restroom/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "tuA" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/contraband/prison{ @@ -67178,36 +71702,28 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"tuD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "tuF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair, -/obj/item/trash/can{ - pixel_x = -10; - pixel_y = -14 +/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/central) -"tuJ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "tuV" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets/donkpocketberry{ - pixel_y = 6 +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "tuY" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -67218,22 +71734,12 @@ /turf/open/floor/iron, /area/station/science/research) "tvN" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/aicard{ - pixel_x = 3 - }, -/obj/item/assembly/timer{ - pixel_y = -11 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tvU" = ( /obj/machinery/newscaster/directional/east, /obj/effect/turf_decal/tile/dark_blue{ @@ -67243,30 +71749,17 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "twp" = ( -/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/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"twv" = ( -/obj/structure/closet, -/obj/effect/landmark/start/hangover/closet, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/stripes{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) +/turf/open/floor/iron/textured, +/area/station/command/eva) "twz" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/station/solars/port/aft) -"twC" = ( -/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) "twD" = ( /obj/effect/spawner/random/trash/graffiti{ pixel_x = -32 @@ -67278,22 +71771,28 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"twX" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +"twO" = ( +/obj/effect/turf_decal/trimline/white/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"twX" = ( /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/trimline/brown/filled/line{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/storage) -"twY" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) "txe" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/west, @@ -67305,49 +71804,63 @@ pixel_y = -2 }, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) -"txs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing/corner, -/obj/structure/railing/corner{ +/area/station/ai/satellite/interior) +"txm" = ( +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/lobby) -"txu" = ( -/obj/structure/railing{ - dir = 8 +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/command{ + name = "Abandoned Lab" }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"txp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 }, -/obj/structure/table, -/obj/item/cigbutt{ - pixel_y = 2 +/obj/structure/frame/computer{ + anchored = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"txu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "txv" = ( /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) "txz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti, -/obj/structure/sign/poster/contraband/random/directional/west, +/obj/structure/chair/sofa/corner/brown{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) +"txF" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/meter, /turf/open/floor/iron, -/area/station/hallway/secondary/construction) +/area/station/engineering/atmos/upper) "txH" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "txJ" = ( /obj/structure/railing, @@ -67363,12 +71876,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"txT" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/ladder, -/obj/structure/fluff/paper/corner, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "typ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -67383,6 +71890,11 @@ /obj/effect/landmark/start/clown, /turf/open/floor/wood/large, /area/station/service/theater_dressing) +"tyv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "tyw" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -67400,41 +71912,31 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) -"tyY" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/structure/cable, -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"tza" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/dinner, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "tzi" = ( /obj/effect/spawner/random/trash/grime, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/port) "tzv" = ( -/obj/structure/chair{ - dir = 8 +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -5; + pixel_y = 0 }, /turf/open/floor/engine/hull, /area/space/nearstation) -"tzO" = ( -/obj/structure/chair/office/light, -/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) +"tzK" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "tzS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "tzU" = ( /obj/item/transfer_valve{ @@ -67473,27 +71975,37 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/port) -"tAr" = ( -/obj/structure/toilet{ - dir = 4 +"tAe" = ( +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 }, -/obj/machinery/light/small/directional/west, -/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/iron/freezer, -/area/station/commons/dorms) +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "tAs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"tAv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/engine/hull/air, +/area/station/engineering/supermatter/room/upper) "tAF" = ( /obj/structure/broken_flooring/singular/directional/west, /obj/effect/turf_decal/trimline/yellow/warning{ @@ -67539,18 +72051,19 @@ }, /turf/open/floor/iron/dark, /area/station/security/evidence) -"tAV" = ( -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tBa" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, +"tAX" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"tBb" = ( +/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/detectives_office/private_investigators_office) +/area/station/maintenance/starboard/fore/upper) "tBc" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; @@ -67563,12 +72076,6 @@ /obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) -"tBh" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) "tBn" = ( /obj/structure/chair/office{ dir = 8 @@ -67579,6 +72086,7 @@ /obj/effect/turf_decal/siding/green{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "tBr" = ( @@ -67588,13 +72096,35 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"tBs" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/commons/dorms) "tBt" = ( /obj/machinery/light/directional/east, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"tBB" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"tBE" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/storage/box{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "tBJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/kirbyplants/photosynthetic, @@ -67635,12 +72165,6 @@ dir = 1 }, /area/station/cargo/bitrunning/den) -"tCd" = ( -/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/engineering/hallway) "tCf" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -67649,6 +72173,27 @@ }, /turf/open/floor/plating, /area/station/command/heads_quarters/rd) +"tCh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"tCl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"tCm" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "tCs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -67662,6 +72207,12 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) +"tCt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "tCz" = ( /obj/item/radio/intercom/directional/west, /obj/structure/table, @@ -67693,52 +72244,39 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"tCI" = ( -/obj/machinery/computer/atmos_control{ +"tCN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 }, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "tCO" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/door/airlock/medical{ - name = "Medbay Emergency Pod Hallway" - }, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Hallway & Break Room" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron/textured_large, -/area/station/medical/break_room) -"tCX" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) +/area/station/medical/medbay/central) "tCY" = ( -/obj/machinery/computer/security{ - dir = 4 +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 }, -/obj/structure/railing, -/obj/machinery/keycard_auth/wall_mounted/directional/north{ - pixel_x = -26; - pixel_y = 0 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/obj/effect/turf_decal/tile/red/opposingcorners, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tDc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/medical/abandoned) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tDf" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -67747,12 +72285,26 @@ /obj/structure/railing{ 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/openspace, -/area/station/command/bridge) -"tDn" = ( -/obj/machinery/light/dim/directional/north, -/turf/open/openspace, -/area/station/cargo/storage) +/area/station/command/meeting_room/council) +"tDh" = ( +/obj/structure/lattice/catwalk, +/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/machinery/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"tDq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "tDv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/purple/line{ @@ -67766,65 +72318,41 @@ id = "justiceflash"; name = "Justice Flash Control"; pixel_x = -30; - pixel_y = -11 + pixel_y = -11; + dir = 8 }, /turf/open/floor/plating, /area/station/security/execution/education) "tDy" = ( /turf/open/floor/plating, /area/station/maintenance/port/greater) -"tDB" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/corner{ +"tDJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "tDK" = ( /obj/effect/decal/cleanable/plasma, /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"tDP" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 11 - }, -/obj/item/toy/figure/lawyer{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/iron/checker, -/area/station/maintenance/port/aft) "tDY" = ( /turf/closed/wall, /area/station/science/lobby) -"tEc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/medical/virology) +"tEi" = ( +/obj/machinery/igniter/incinerator_atmos, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) "tEl" = ( /obj/structure/lattice/catwalk, /turf/open/floor/engine/hull/air, /area/station/cargo/storage) -"tEt" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) "tEv" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/port) -"tEy" = ( -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "tEA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -67842,11 +72370,19 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/primary/starboard) -"tEH" = ( +"tEN" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, /obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/aft/upper) +"tEQ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/engineering/lobby) "tER" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -67863,13 +72399,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"tES" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "tEU" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -67878,17 +72407,41 @@ /obj/structure/cable, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"tEY" = ( -/obj/item/trash/can{ - pixel_x = -8 - }, -/obj/structure/window/spawner/directional/west, +"tEW" = ( +/obj/structure/sign/poster/random/directional/north, +/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/duct, +/obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/central) +"tFa" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/structure/fluff/paper/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "tFd" = ( /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/station/hallway/primary/starboard) +"tFj" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/railing, +/obj/effect/landmark/start/hangover, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/commons/dorms) "tFl" = ( /obj/effect/turf_decal/trimline/dark_blue/end{ dir = 1 @@ -67909,7 +72462,7 @@ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tFv" = ( /obj/structure/chair{ dir = 1 @@ -67921,21 +72474,46 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"tFy" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/toilet{ +"tFB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ dir = 4 }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) -"tFC" = ( -/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/filled/line, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"tFD" = ( +/obj/machinery/button/door/directional/east{ + id = "cargounload"; + name = "Loading Doors"; + pixel_y = 6 + }, +/obj/machinery/button/door/directional/east{ + id = "cargoload"; + name = "Loading Doors"; + pixel_y = -6 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"tFO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) "tFU" = ( /obj/item/clothing/suit/costume/chickensuit{ pixel_x = 4; @@ -67953,30 +72531,39 @@ /obj/item/skillchip/matrix_taunt, /turf/open/floor/iron/kitchen, /area/station/maintenance/port/aft) -"tFY" = ( -/obj/effect/turf_decal/siding{ +"tGb" = ( +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"tGb" = ( -/obj/structure/chair/office{ +/obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "HoPsToy"; - name = "Loading Conveyor"; - pixel_x = -13; - pixel_y = 8 - }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/carpet, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) +"tGg" = ( +/obj/machinery/door/airlock, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"tGm" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"tGo" = ( +/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, +/area/station/maintenance/starboard/fore) "tGs" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -67987,7 +72574,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "tGu" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -67996,6 +72583,12 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/dark, /area/station/security/range) +"tGv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table/reinforced, +/obj/machinery/microwave/engineering, +/turf/open/openspace, +/area/station/cargo/storage) "tGz" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -68015,15 +72608,28 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"tGM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table, -/obj/item/binoculars, -/turf/open/openspace, -/area/station/hallway/secondary/exit/departure_lounge) "tGN" = ( /turf/closed/wall, /area/station/science/zoo) +"tGO" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/button/door/directional/east{ + id = "Cabin7"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/wood, +/area/station/commons/dorms) +"tGP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "tHd" = ( /obj/effect/turf_decal/bot/left, /turf/open/floor/engine, @@ -68043,7 +72649,7 @@ "tHn" = ( /obj/machinery/computer/security, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tHo" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -68055,11 +72661,10 @@ network = list("prison") }, /obj/machinery/light_switch/directional/east, -/obj/machinery/button/door/directional/north{ - id = "detective_shutters"; +/obj/machinery/button/door/directional/east{ + pixel_y = -10; name = "detective's office shutters control"; - pixel_x = 26; - pixel_y = -10 + id = "detective_shutters" }, /turf/open/floor/wood, /area/station/security/detectives_office) @@ -68069,27 +72674,40 @@ }, /turf/open/floor/carpet, /area/station/command/corporate_showroom) +"tHu" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/spawner/random/clothing/backpack, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"tHv" = ( +/obj/machinery/door/poddoor{ + id = "securestoragecw"; + name = "Secure Storage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced/air, +/area/station/engineering/supermatter/room/upper) "tHw" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 }, /obj/effect/turf_decal/trimline/dark_blue/warning, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/turret_protected/ai) -"tHE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ +/area/station/ai/satellite/chamber) +"tIa" = ( +/obj/effect/turf_decal/siding/thinplating{ dir = 4 }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"tHR" = ( -/obj/structure/sign/warning/radiation/rad_area/directional/east, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/engineering/lobby) "tIi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -68106,13 +72724,18 @@ /turf/open/floor/iron/smooth, /area/station/engineering/main) "tIm" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/supply{ - pixel_x = 32 +/obj/item/clothing/head/cone{ + pixel_x = -5; + pixel_y = 0 }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/turf/open/floor/engine/hull, +/area/space/nearstation) +"tIo" = ( +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) "tIq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -68125,40 +72748,23 @@ dir = 8 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"tII" = ( -/obj/structure/table, -/obj/effect/spawner/random/trash/soap, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/chamber) +"tIE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/iron, +/area/station/engineering/lobby) "tIO" = ( /obj/machinery/light/directional/south, /obj/machinery/vending/clothing, /turf/open/floor/wood/large, /area/station/service/theater_dressing) -"tIT" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/machinery/camera/autoname/directional/north, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"tIW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "tJk" = ( /obj/structure/chair{ dir = 1 @@ -68179,21 +72785,20 @@ }, /turf/open/floor/wood, /area/station/service/chapel) -"tJq" = ( -/obj/machinery/ai_slipper{ - uses = 8 +"tJn" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"tJq" = ( /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_large, -/area/station/ai_monitored/turret_protected/ai_upload) -"tJt" = ( -/obj/item/food/grown/sunflower, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "tJv" = ( -/obj/structure/table, /obj/item/construction/plumbing{ pixel_x = -7; pixel_y = 6 @@ -68203,6 +72808,7 @@ dir = 1 }, /obj/machinery/light/directional/south, +/obj/structure/table, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "tJD" = ( @@ -68223,6 +72829,11 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"tJH" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "tKa" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -68237,11 +72848,23 @@ /obj/structure/railing, /turf/open/floor/iron/smooth, /area/station/engineering/main) +"tKp" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tKq" = ( /obj/machinery/computer/crew, /obj/structure/sign/poster/official/science/directional/north, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tKw" = ( /obj/structure/frame/computer{ anchored = 1 @@ -68280,8 +72903,13 @@ dir = 1 }, /obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/light/floor, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"tKH" = ( +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "tKK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -68290,17 +72918,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"tLb" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"tLl" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) "tLo" = ( /obj/structure/lattice/catwalk, /obj/machinery/camera/autoname/directional/west, @@ -68312,26 +72929,30 @@ /turf/open/floor/wood/large, /area/station/commons/lounge) "tLq" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - name = "Trash Conveyor"; - pixel_x = -13; - pixel_y = -5 - }, -/turf/open/floor/iron, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) -"tLs" = ( +"tLA" = ( +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/hallway/primary/central) +"tLD" = ( +/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/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) +"tLE" = ( /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/engineering/break_room) +/obj/structure/sign/poster/contraband/communist_state/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "tLK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, @@ -68340,32 +72961,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/large, /area/station/maintenance/hallway/abandoned_recreation) -"tLQ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 +"tLP" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/structure/sign/warning/electric_shock/directional/south, +/turf/open/floor/engine/hull, +/area/station/solars/starboard/fore) "tLU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark, /area/station/medical/medbay/central) "tLV" = ( /obj/machinery/teleport/station, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) -"tMg" = ( -/turf/open/floor/wood, -/area/station/medical/medbay/central) -"tMj" = ( -/obj/item/statuebust, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/teleporter) "tMm" = ( /obj/machinery/door/airlock/grunge, /obj/structure/cable, @@ -68373,27 +72988,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tMo" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"tMu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) -"tMw" = ( -/obj/machinery/camera/autoname/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +"tMr" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "tMD" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 @@ -68411,23 +73015,34 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"tMS" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red/opposingcorners{ +"tMN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"tMT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/wood, +/obj/structure/fluff/paper/corner{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/obj/item/paper/crumpled{ + pixel_x = 7 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "tMY" = ( /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/range) -"tMZ" = ( -/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) "tNb" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 9 @@ -68435,18 +73050,24 @@ /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/smooth, /area/station/engineering/main) "tNd" = ( -/obj/effect/decal/cleanable/dirt, /obj/machinery/camera/autoname/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) "tNr" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "tNu" = ( /obj/machinery/power/apc/auto_name/directional/south, @@ -68466,9 +73087,19 @@ }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"tNG" = ( -/turf/open/floor/iron/stairs/medium, -/area/station/commons/toilet/restrooms) +"tND" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "SM_shutters"; + name = "Radiation Shutters"; + req_access = list("engineering") + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "tNP" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -68499,15 +73130,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance/storage) -"tOi" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "tOj" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -68528,6 +73150,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"tOs" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "tOw" = ( /obj/structure/railing, /turf/open/floor/iron/stairs/medium{ @@ -68544,18 +73171,17 @@ }, /turf/open/floor/wood/tile, /area/station/security/detectives_office/private_investigators_office) -"tOE" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/air_sensor/mix_tank, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) -"tOO" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, +"tOG" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/vending/assist, /turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/commons/storage/primary) +"tON" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "tOW" = ( /obj/effect/spawner/random/trash/graffiti, /obj/structure/disposalpipe/segment{ @@ -68563,9 +73189,28 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"tPb" = ( +/obj/machinery/atmospherics/pipe/multiz/cyan/visible{ + dir = 8; + name = "Air Mix Multideck Adapter" + }, +/obj/machinery/meter{ + name = "Mix Meter" + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "tPe" = ( /turf/open/floor/glass/reinforced/plasma, /area/station/engineering/supermatter) +"tPl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/structure/sign/warning/radiation/directional/south, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "tPr" = ( /obj/structure/table_frame/wood, /turf/open/floor/iron/grimy, @@ -68579,7 +73224,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tPz" = ( /obj/structure/rack, /obj/item/restraints/handcuffs{ @@ -68599,9 +73244,9 @@ /turf/closed/wall, /area/station/science/research) "tPC" = ( -/obj/structure/chair/office, -/turf/open/floor/carpet, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "tPF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -68620,42 +73265,104 @@ /turf/open/floor/wood/large, /area/station/hallway/primary/central) "tPI" = ( -/obj/structure/table/glass, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/item/stack/rods{ - amount = 25; - pixel_y = 3 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/green{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tPU" = ( /turf/closed/wall, /area/station/commons/toilet/restrooms) +"tPY" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"tPZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/cmo) "tQf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"tQt" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/reagent_dispensers/plumbed, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"tQk" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tQl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tQq" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"tQB" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "tQI" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) +"tQR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/detectives_office/private_investigators_office) +"tQY" = ( +/obj/machinery/keycard_auth/wall_mounted/directional/north{ + pixel_y = 28; + pixel_x = null + }, +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_y = 10; + pixel_x = 8 + }, +/obj/item/folder/blue{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) +"tQZ" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/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/command{ + name = "Chief Medical Officer's Quarters" + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) "tRc" = ( /obj/item/reagent_containers/cup/glass/bottle/beer/almost_empty{ pixel_x = -5; @@ -68672,44 +73379,39 @@ "tRd" = ( /obj/structure/cable/layer3, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tRi" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space/basic, /area/space/nearstation) "tRt" = ( -/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/door/window/left/directional/west{ + name = "Captain's Desk"; + req_access = list("captain") + }, /obj/structure/table/wood, -/obj/item/reagent_containers/cup/glass/flask/gold{ - pixel_y = 10 +/obj/machinery/recharger{ + pixel_y = 4; + pixel_x = 5 }, -/obj/item/cigarette/cigar{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"tRN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 }, -/obj/item/cigarette/cigar{ - pixel_x = -13; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"tRG" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"tRJ" = ( -/obj/effect/spawner/random/trash, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port) +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "tRR" = ( /obj/structure/railing{ dir = 9 }, /obj/structure/table, -/obj/effect/decal/cleanable/dirt, /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -68722,8 +73424,13 @@ pixel_x = -6; pixel_y = -5 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/structure/lattice/catwalk, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/openspace, +/area/station/ai/upload/chamber) "tRV" = ( /obj/structure/railing{ dir = 8 @@ -68733,46 +73440,22 @@ pixel_x = -5; pixel_y = -15 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/item/ai_module/toy_ai{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/structure/lattice/catwalk, +/obj/item/clipboard{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/openspace, +/area/station/ai/upload/chamber) "tRY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 8 - }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"tSa" = ( -/obj/structure/bed, -/obj/structure/sign/poster/official/no_erp/directional/east, -/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/wood, -/area/station/commons/dorms) -"tSl" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) -"tSo" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) "tSp" = ( /obj/machinery/computer/piratepad_control/civilian{ dir = 4 @@ -68794,28 +73477,18 @@ /obj/structure/cable, /turf/open/space/openspace, /area/station/solars/starboard/fore) -"tSE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/moisture_trap, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tST" = ( -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32 +"tSB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 }, /turf/open/floor/iron/smooth, -/area/station/engineering/main) +/area/station/engineering/atmos) "tSW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mining Maintenance Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "miningshuttleexit" +/obj/machinery/computer/order_console/mining, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/plating, +/turf/open/floor/iron, /area/station/cargo/miningoffice) "tSY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -68830,7 +73503,9 @@ dir = 4 }, /obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner{ + dir = 1 + }, /area/station/hallway/primary/central) "tTg" = ( /obj/effect/decal/cleanable/ash, @@ -68842,31 +73517,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/science/cytology) -"tTz" = ( -/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/engineering/general, -/obj/machinery/door/airlock/engineering/glass{ - name = "Shared Engineering Storage" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +"tTx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "tTD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tTG" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/area/station/ai/satellite/interior) +"tTL" = ( +/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{ + dir = 10 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port) "tTO" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -68884,28 +73556,32 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"tUd" = ( -/obj/structure/railing{ - dir = 8 +"tUg" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass{ + name = "Security Post - Cargo" }, -/obj/item/kirbyplants/random, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 }, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"tUn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft/upper) "tUs" = ( /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"tUt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) "tUu" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tUw" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -68925,6 +73601,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"tUE" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/delivery/white{ + color = "#ff6600" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"tUG" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "tUH" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -68946,24 +73638,49 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"tVe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/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/openspace, +/area/station/engineering/lobby) "tVl" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance/two, +/obj/machinery/newscaster/directional/west, /turf/open/floor/plating, /area/station/maintenance/port) "tVo" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 +/obj/machinery/door/airlock/public/glass{ + name = "Abandoned Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 }, -/obj/effect/landmark/start/hangover, -/obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"tVI" = ( -/obj/structure/cable, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"tVs" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/medical/medbay/central) +"tVz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "tVR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -68979,27 +73696,32 @@ }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) +"tVT" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/reagent_dispensers/plumbed, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "tWc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"tWd" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/station/engineering/break_room) +"tWe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible/layer2{ + dir = 2 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "tWl" = ( /obj/machinery/light/warm/dim/directional/north, /turf/open/openspace, /area/station/hallway/primary/central) -"tWn" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/station/engineering/supermatter/room) "tWt" = ( /obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "tWx" = ( /obj/machinery/door/airlock/maintenance, @@ -69022,15 +73744,11 @@ /obj/machinery/light/small/dim/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel) -"tWI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "tWK" = ( /obj/structure/girder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "tWP" = ( @@ -69125,6 +73843,16 @@ }, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"tXw" = ( +/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/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "tXx" = ( /obj/effect/turf_decal/trimline/dark_blue/warning{ dir = 1 @@ -69133,14 +73861,26 @@ /turf/open/floor/iron/white/smooth_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"tXE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/components/binary/pump/on/layer5{ + name = "O2 to Airmix" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "tXJ" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) "tXN" = ( /obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "tXS" = ( /obj/effect/turf_decal/trimline/blue/filled/line, @@ -69160,9 +73900,6 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 5 }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69172,9 +73909,6 @@ pixel_x = 28; pixel_y = 6 }, -/obj/machinery/firealarm/directional/east{ - pixel_y = -3 - }, /turf/open/floor/iron, /area/station/cargo/storage) "tYa" = ( @@ -69184,12 +73918,6 @@ /obj/item/stack/spacecash/c100, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"tYb" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/masks, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "tYh" = ( /turf/open/floor/plating/airless, /area/station/maintenance/space_hut) @@ -69200,7 +73928,7 @@ network = list("vault") }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tYt" = ( /obj/item/cardboard_cutout{ pixel_x = 14; @@ -69220,46 +73948,50 @@ /obj/structure/cable, /turf/open/floor/wood/large, /area/station/service/theater_dressing) -"tYz" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/brown{ +"tYC" = ( +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"tYC" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 +/obj/machinery/firealarm/directional/east{ + pixel_x = 20 }, -/turf/open/floor/iron/white/textured_large, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) "tYE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 1; - id = "chemshutters"; - name = "Chemistry Shutters" +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/assembly/timer{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/radio/headset/headset_med{ + pixel_x = 15; + pixel_y = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "tYF" = ( /obj/machinery/light/directional/west, /turf/open/openspace, /area/station/command/gateway) "tYN" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" - }, -/obj/effect/mapping_helpers/airlock/unres, +/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/opposingcorners{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/door/firedoor, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "tYS" = ( @@ -69274,12 +74006,6 @@ /obj/machinery/light/red/dim/directional/south, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"tYZ" = ( -/obj/machinery/atmospherics/components/unary/passive_vent, -/obj/structure/lattice, -/obj/machinery/camera/autoname/directional/west, -/turf/open/space/basic, -/area/space/nearstation) "tZb" = ( /obj/structure/sign/departments/restroom/directional/south, /obj/item/cigbutt{ @@ -69288,6 +74014,11 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"tZf" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "tZj" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -69295,6 +74026,10 @@ /obj/structure/sign/departments/restroom/directional/north, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"tZx" = ( +/obj/item/airlock_painter/decal, +/turf/open/floor/plating, +/area/station/maintenance/port) "tZz" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -69308,12 +74043,10 @@ /obj/structure/window/spawner/directional/north, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"tZV" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/openspace, -/area/station/commons/dorms) +"tZW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos/upper) "tZY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -69321,10 +74054,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/zoo) -"uac" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uaf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -69335,7 +74064,7 @@ "uah" = ( /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/iron/textured_large, -/area/space/nearstation) +/area/station/medical/abandoned) "uaw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69349,6 +74078,26 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"uaB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"uaH" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 8 + }, +/obj/item/cigbutt{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/sign/poster/contraband/kudzu/directional/east, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) +"uaI" = ( +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "uaO" = ( /obj/structure/disposalpipe/trunk/multiz/down, /obj/structure/railing{ @@ -69356,6 +74105,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"uaP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/main) "uaR" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 5 @@ -69370,7 +74123,25 @@ /obj/machinery/light_switch/directional/east, /obj/structure/closet/crate/bin, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"uaU" = ( +/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/all/supply/general, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"ubk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "ubo" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, @@ -69378,27 +74149,6 @@ "ubs" = ( /turf/open/openspace, /area/station/hallway/secondary/construction) -"ubv" = ( -/obj/machinery/button/elevator{ - id = "catwalk_engi"; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"ubU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "ubZ" = ( /obj/item/trash/flare, /turf/open/floor/plating, @@ -69409,32 +74159,29 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/breakroom) +"ucc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Virology Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) "ucd" = ( /obj/structure/railing, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "ucf" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/chair/sofa/middle/brown{ - dir = 1 - }, /obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/south, +/obj/machinery/conveyor{ + dir = 8; + id = "mining" + }, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"ucj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/hallway/secondary/exit/departure_lounge) -"ucl" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/auxiliary) "ucp" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -69442,6 +74189,11 @@ dir = 8 }, /area/station/command/corporate_showroom) +"ucy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "ucC" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -69480,22 +74232,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"ucQ" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) +"ucR" = ( +/obj/effect/spawner/random/decoration/showcase, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "ucX" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/structure/chair/sofa/corner/brown{ - dir = 8 - }, /obj/item/radio/intercom/directional/south, +/obj/machinery/conveyor{ + dir = 10; + id = "mining" + }, +/obj/machinery/bouldertech/refinery, /turf/open/floor/iron/textured, /area/station/cargo/storage) "ucZ" = ( @@ -69503,15 +74253,6 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"udb" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/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/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "udl" = ( /turf/closed/wall, /area/station/engineering/storage/tech) @@ -69521,6 +74262,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) +"udu" = ( +/obj/structure/chair, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "udE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69532,56 +74279,28 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood/large, /area/station/service/theater_dressing) -"udF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 +"udN" = ( +/obj/structure/marker_beacon/yellow, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"udS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) +"udV" = ( +/obj/machinery/duct, +/obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) "udW" = ( /obj/structure/chair/sofa/middle/brown, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"udY" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/item/radio/off{ - pixel_x = 6 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) -"uec" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" - }, -/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/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"uen" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "uex" = ( /obj/machinery/atmospherics/components/binary/pump/on{ name = "Gas to Cold Loop" @@ -69609,8 +74328,18 @@ /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 8 }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/supply/cargo_bay, /turf/open/floor/iron, /area/station/cargo/storage) +"ufc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "ufi" = ( /obj/machinery/door/airlock/command{ name = "Research Director's Office" @@ -69625,16 +74354,17 @@ /area/station/command/heads_quarters/rd) "ufn" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; pixel_x = 30; - req_access = list("minisat") + req_access = list("minisat"); + dir = 4 }, /obj/structure/sign/warning/secure_area/directional/north, /obj/machinery/light/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ufo" = ( /obj/structure/rack, /obj/item/storage/briefcase/secure{ @@ -69654,10 +74384,6 @@ /obj/structure/chair{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "ufA" = ( @@ -69670,7 +74396,37 @@ /obj/machinery/recharge_station, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"ufI" = ( +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"ufK" = ( +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/pen/fountain{ + pixel_x = 15; + pixel_y = 4 + }, +/obj/item/stamp/granted{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/stamp/denied{ + pixel_x = 6 + }, +/obj/item/stamp/head/qm{ + pixel_x = -5 + }, +/obj/item/clipboard{ + pixel_y = 8; + pixel_x = -6 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "uga" = ( /obj/machinery/door/airlock/security/glass{ name = "Bailiff Access" @@ -69681,22 +74437,30 @@ /area/station/security/courtroom) "ugj" = ( /obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/dead_body_placer, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/iron/dark/textured, /area/station/medical/morgue) +"ugm" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "ugn" = ( /obj/structure/table/wood/poker, /turf/open/floor/carpet/stellar, /area/station/service/library) -"ugo" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" +"ugp" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/floor/engine, -/area/station/engineering/break_room) +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/tcomms_all, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "ugq" = ( -/obj/structure/table, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 }, @@ -69704,108 +74468,73 @@ dir = 8 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/machinery/light_switch/directional/west, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = 2 - }, -/obj/item/reagent_containers/cup/beaker{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/reagent_containers/dropper, +/obj/structure/rack, +/obj/item/plunger, +/obj/machinery/light/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"ugr" = ( +/obj/structure/closet/lasertag/red, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"ugw" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/condiment, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) +"ugA" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"ugC" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) "ugE" = ( /obj/effect/turf_decal/siding/dark, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/white/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ugL" = ( /obj/structure/cable, /turf/open/floor/iron, /area/station/science/zoo) -"ugM" = ( -/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/commons/dorms) "ugN" = ( -/obj/machinery/modular_computer/preset/id, -/obj/machinery/button/door/directional/west{ - id = "hop"; - name = "Lockdown Blast Doors"; - pixel_y = 6; - req_access = list("hop") - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = -24; - pixel_y = -4 - }, -/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/assistance, -/obj/effect/mapping_helpers/requests_console/information, -/turf/open/floor/carpet, +/obj/machinery/computer/records/security, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "ugU" = ( /turf/open/openspace, /area/station/security/detectives_office) -"ugX" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "uhd" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 }, /turf/open/openspace, /area/station/service/kitchen) -"uhg" = ( -/obj/structure/table, -/obj/item/hfr_box/body/moderator_input{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/hfr_box/body/waste_output{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/hfr_box/body/interface, -/obj/item/hfr_box/body/waste_output{ - pixel_x = -15 +"uhz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/siding/blue{ + dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"uhl" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 +/turf/open/floor/catwalk_floor{ + initial_gas_mix = "n2=100;TEMP=80" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"uhx" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"uhJ" = ( -/obj/structure/sign/poster/official/fruit_bowl, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) +/area/station/science/server) "uhO" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -69825,12 +74554,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"uib" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/cargo/storage) "uii" = ( /obj/machinery/door/airlock/public/glass{ name = "Community Center" @@ -69877,6 +74600,14 @@ }, /turf/open/floor/plating, /area/station/security/execution/education) +"uiU" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "ujb" = ( /turf/open/floor/iron, /area/station/maintenance/port/fore) @@ -69892,19 +74623,34 @@ dir = 8 }, /area/station/hallway/primary/fore) -"ujD" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" +"ujx" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"ujD" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/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/medical/medbay/lobby) +"ujG" = ( +/obj/item/clothing/head/utility/hardhat/red{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ujI" = ( /turf/open/openspace, /area/station/science/explab) @@ -69919,35 +74665,15 @@ /obj/item/gun/energy/ionrifle, /obj/item/clothing/suit/hooded/ablative, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ujP" = ( /obj/item/radio/intercom/directional/south, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"ujS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"ujX" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Chief Engineers Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) "uka" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uki" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/landmark/start/hangover, @@ -69972,6 +74698,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) "ukt" = ( @@ -69991,7 +74718,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ukF" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -70000,17 +74727,12 @@ network = list("aicore") }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ukI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/hacking_guide/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"ukM" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "ukO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -70029,22 +74751,13 @@ }, /turf/open/openspace, /area/station/hallway/primary/central) -"ukZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 +"ule" = ( +/obj/machinery/atmospherics/components/unary/passive_vent, +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"ulh" = ( -/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/minisat_access_tcomms, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) +/turf/open/floor/plating/airless, +/area/space/nearstation) "uli" = ( /obj/effect/spawner/random/entertainment/arcade, /obj/effect/decal/cleanable/dirt, @@ -70068,29 +74781,33 @@ /area/station/engineering/lobby) "uln" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"ulq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"ulo" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/table, +/obj/item/reagent_containers/cup/soda_cans/random{ + pixel_x = -5; + pixel_y = -18 + }, +/obj/item/reagent_containers/cup/soda_cans/random{ + pixel_x = 5; + pixel_y = -16 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"ulw" = ( /obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/white/line{ dir = 1 }, /turf/open/floor/iron, -/area/station/engineering/lobby) -"ulu" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/commons/fitness/recreation) "ulx" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 @@ -70099,6 +74816,9 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/wood, /area/station/service/library) +"ulD" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "ulM" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -70121,26 +74841,23 @@ /obj/machinery/vending/wardrobe/gene_wardrobe, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) -"ulQ" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) +"ulT" = ( +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "ulU" = ( /obj/machinery/door/airlock/grunge, /obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"ulV" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/maintenance/aft) "ulX" = ( /obj/structure/table, /obj/item/folder/yellow{ @@ -70174,7 +74891,9 @@ /area/station/security/medical) "ulZ" = ( /obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "umq" = ( /obj/machinery/light/directional/east, @@ -70190,21 +74909,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "umw" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, /area/station/command/bridge) "umy" = ( @@ -70226,21 +74934,13 @@ /turf/open/floor/iron/textured_large, /area/station/medical/virology) "umE" = ( -/obj/effect/decal/cleanable/dirt, /obj/machinery/light/dim/directional/north, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) "umH" = ( /turf/closed/wall, /area/station/medical/psychology) -"unc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "ung" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -70263,42 +74963,49 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/port) +"unL" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/item/wirecutters, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "unM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"unU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/openspace, +/area/station/engineering/lobby) "uof" = ( /obj/effect/turf_decal/caution{ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) -"uok" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/pwr_game/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) +/area/station/security/armory) "uom" = ( /turf/open/floor/glass/reinforced, /area/station/hallway/primary/port) -"uon" = ( -/obj/structure/railing{ - dir = 8 - }, +"uop" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/aft/upper) "uow" = ( -/obj/structure/table/wood, -/obj/item/coin/antagtoken{ - pixel_x = -11; - pixel_y = 6 - }, -/obj/item/assembly/timer, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/machinery/light/floor, +/obj/structure/table/reinforced/rglass, +/obj/machinery/recharger, +/obj/item/restraints/handcuffs, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "uox" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -70313,21 +75020,25 @@ }, /area/station/service/chapel) "uoz" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "uoA" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/rnd/production/techfab/department/medical, -/obj/machinery/newscaster/directional/west, -/turf/open/openspace, -/area/station/medical/storage) +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay"); + c_tag = "Medbay - Lower Operating Room" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/air, +/area/station/medical/medbay/central) "uoF" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" }, /turf/open/floor/plating, /area/station/command/heads_quarters/captain/private) @@ -70363,9 +75074,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/service/lawoffice) -"upl" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/eighties, +"upk" = ( +/obj/effect/spawner/random/maintenance, +/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/catwalk_floor, /area/station/maintenance/starboard/fore) "upm" = ( /obj/structure/chair/office{ @@ -70373,6 +75088,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"upp" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/port) "upr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -70385,11 +75104,36 @@ dir = 1 }, /area/station/hallway/secondary/construction) -"upL" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +"upz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "abandoned_kitchen"; + name = "Kitchen Shudders"; + dir = 8 + }, +/obj/item/rag, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) +"upE" = ( +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) +"upI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/indigo, +/turf/open/space/openspace, +/area/space/nearstation) +"upM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, /turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/engineering/atmos) "upR" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/photocopier/prebuilt, @@ -70414,24 +75158,13 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"upX" = ( +/turf/closed/wall, +/area/station/maintenance/aft/upper) "uqb" = ( /obj/item/kirbyplants/photosynthetic, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uqc" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/trimline/yellow/filled/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"uqf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/filingcabinet/chestdrawer, -/mob/living/basic/parrot/poly, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) +/area/station/ai/satellite/interior) "uqi" = ( /obj/effect/turf_decal/siding/green{ dir = 4 @@ -70453,12 +75186,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/hallway/primary/aft) -"uqw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "uqy" = ( /obj/structure/table, /obj/item/flashlight/lamp/green{ @@ -70485,6 +75212,12 @@ /obj/effect/landmark/start/depsec/supply, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) +"uqN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/engineering/engine_smes) "uqR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/confetti, @@ -70509,23 +75242,19 @@ /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) "urk" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/item/blood_filter{ - pixel_x = 4 +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 }, -/obj/item/blood_filter{ - pixel_x = -2; - pixel_y = 5 +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) "uro" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/item/kirbyplants/random, -/obj/item/radio/intercom/directional/south, -/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/storage) "urq" = ( @@ -70563,6 +75292,10 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, /area/station/science/explab) +"urL" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/solars/starboard/fore) "urV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -70579,8 +75312,21 @@ }, /obj/effect/turf_decal/trimline/brown/arrow_ccw, /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) +"ush" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) +"usk" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/rods, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "usl" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine/hull/air, @@ -70595,32 +75341,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/small, /area/station/security/mechbay) -"uss" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"ust" = ( -/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/west, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "usD" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "usK" = ( @@ -70635,7 +75362,7 @@ /obj/structure/table, /obj/item/stack/rods/ten, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "usM" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -70648,7 +75375,7 @@ /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "usP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -70657,10 +75384,25 @@ }, /turf/open/floor/plating, /area/station/security/detectives_office) -"uta" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) +"usZ" = ( +/obj/machinery/door/airlock/external{ + name = "Welcome." + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "space-outpost" + }, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"ute" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/computer/atmos_alert/station_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "uth" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -70694,6 +75436,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/server) +"utv" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/fore/upper) "utx" = ( /obj/structure/rack, /obj/item/storage/box/handcuffs, @@ -70759,12 +75508,12 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) -"uua" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +"utS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "uuj" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/mid_joiner, @@ -70779,8 +75528,9 @@ "uuk" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/sign/poster/official/state_laws/directional/east, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "uum" = ( /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 @@ -70791,18 +75541,6 @@ }, /turf/open/floor/wood, /area/station/service/library) -"uuo" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/broken_flooring/side/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"uus" = ( -/obj/structure/sign/poster/official/random/directional/west, -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "uuA" = ( /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, @@ -70812,19 +75550,24 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"uuE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner{ +"uuD" = ( +/obj/item/encryptionkey/headset_com{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/encryptionkey/headset_sec{ + pixel_x = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/red/opposingcorners{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"uuF" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, /turf/open/floor/iron/dark, -/area/station/engineering/hallway) +/area/station/engineering/storage/tech) +"uuH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "uuP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/east, @@ -70841,21 +75584,43 @@ /turf/open/openspace, /area/station/security/checkpoint/supply) "uva" = ( -/obj/structure/railing{ - dir = 8 - }, /obj/effect/turf_decal/siding/blue{ dir = 9 }, +/obj/structure/railing{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "uve" = ( +/obj/effect/spawner/random/structure/crate, /obj/structure/disposalpipe/segment{ - dir = 9 + dir = 5 }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"uvf" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/engineering/engine_smes) "uvh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -70867,22 +75632,31 @@ /area/station/medical/medbay/central) "uvo" = ( /turf/open/floor/glass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uvq" = ( /obj/structure/table/wood, /turf/open/floor/iron/dark/smooth_large, /area/station/security/courtroom) -"uvu" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/white/textured, -/area/station/medical/surgery) "uvv" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/fullgrass/style_random, /obj/effect/landmark/start/hangover, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"uvw" = ( +/obj/item/clothing/head/costume/foilhat, +/obj/structure/sign/poster/contraband/kss13/directional/east, +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"uvx" = ( +/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/wood/large, +/area/station/commons/dorms) "uvF" = ( /obj/structure/railing/corner{ dir = 4 @@ -70914,6 +75688,11 @@ }, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/bomb) +"uvT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/keycard_auth/wall_mounted/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "uwg" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/light/directional/south, @@ -70949,11 +75728,27 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) -"uwn" = ( +"uwk" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"uwl" = ( +/obj/item/clothing/head/cone{ + pixel_x = 6; + pixel_y = -9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"uwr" = ( +/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/railing/corner, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "uwu" = ( /obj/machinery/shower/directional/east, /obj/effect/decal/cleanable/dirt/dust, @@ -70967,11 +75762,12 @@ /turf/open/floor/iron/freezer, /area/station/maintenance/port) "uwA" = ( -/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/bridge) +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/landmark/navigate_destination/bridge, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "uwD" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -71002,7 +75798,7 @@ }, /obj/structure/sign/poster/official/science/directional/north, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uwN" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 @@ -71011,7 +75807,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uwS" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -71061,38 +75857,28 @@ /turf/closed/wall, /area/station/cargo/warehouse) "uxq" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/glass, /obj/effect/turf_decal/siding/blue{ dir = 5 }, -/obj/machinery/recharger{ - pixel_y = 3 +/obj/structure/railing{ + dir = 4 }, -/obj/item/restraints/handcuffs{ - pixel_y = 3 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uxt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"uxz" = ( -/obj/item/kirbyplants/random, -/obj/machinery/button/door/directional/east{ - id = "Cabin3"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/structure/bookcase/random/reference, +/obj/item/book/manual/wiki/research_and_development{ + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "uxA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, @@ -71111,21 +75897,8 @@ dir = 1 }, /obj/machinery/newscaster/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Mining Departure" - }, /turf/open/floor/iron, /area/station/cargo/miningoffice) -"uxI" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "uxK" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -71137,31 +75910,32 @@ /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "uxW" = ( -/obj/effect/spawner/structure/window, +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; + dir = 1; + id = "Lcommissaryshutter"; name = "Vacant Commissary Shutter" }, -/obj/effect/turf_decal/tile/dark_green/fourcorners, /turf/open/floor/plating, /area/station/commons/vacant_room/office) -"uxY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"uxZ" = ( +/obj/structure/table, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"uya" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"uyb" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/ethereal, -/obj/item/reagent_containers/cup/soda_cans/monkey_energy, -/obj/item/reagent_containers/cup/soda_cans/monkey_energy, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "uyc" = ( /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/robotics, @@ -71174,9 +75948,9 @@ /turf/open/floor/iron, /area/station/science/robotics) "uyn" = ( -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/central) "uyq" = ( @@ -71187,21 +75961,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"uyr" = ( -/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, -/area/station/engineering/main) -"uyu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "uyw" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -71211,15 +75970,15 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/eighties/red, /area/station/maintenance/hallway/abandoned_recreation) -"uyD" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 10 - }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 4 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +"uyA" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"uyG" = ( +/obj/structure/ladder, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "uyN" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -71235,6 +75994,17 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) +"uyR" = ( +/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/flip{ + dir = 8 + }, +/obj/effect/mapping_helpers/mail_sorting/service/dormitories, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "uyT" = ( /obj/effect/turf_decal/caution/stand_clear{ dir = 8 @@ -71255,35 +76025,32 @@ /turf/open/openspace, /area/station/maintenance/port/aft) "uzg" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) -"uzh" = ( -/obj/structure/lattice/catwalk, /obj/structure/cable, -/obj/structure/holosign/barrier/engineering, +/turf/open/floor/plating, +/area/station/command/heads_quarters/captain/private) +"uzi" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/maintenance, /turf/open/openspace, -/area/station/engineering/atmos/project) +/area/station/maintenance/starboard/upper) "uzj" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"uzs" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"uzu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) +"uzB" = ( +/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/cafeteria, +/area/station/commons/dorms/laundry) "uzI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71300,34 +76067,40 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"uzN" = ( +"uzV" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"uAi" = ( +/obj/effect/turf_decal/trimline/purple/arrow_cw{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"uAl" = ( -/turf/closed/wall, -/area/station/engineering/lobby) -"uAm" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"uAn" = ( +/obj/structure/lattice/catwalk, /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, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=17-Dorms"; - location = "16-Laundry" +/obj/machinery/camera/autoname/directional/north{ + dir = 2 }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"uAn" = ( -/obj/machinery/light/dim/directional/south, /turf/open/openspace, -/area/station/cargo/storage) +/area/station/hallway/primary/central) +"uAp" = ( +/turf/closed/wall, +/area/station/maintenance/starboard) "uAB" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -71359,16 +76132,12 @@ /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) "uAP" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/east, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, +/obj/structure/railing, +/turf/open/openspace, /area/station/cargo/storage) +"uAX" = ( +/turf/open/floor/wood/large, +/area/station/commons/dorms) "uAZ" = ( /obj/machinery/netpod, /obj/effect/decal/cleanable/dirt, @@ -71377,21 +76146,18 @@ /obj/machinery/digital_clock/directional/north, /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) -"uBh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "uBj" = ( /obj/structure/cable, /turf/closed/wall/r_wall, /area/station/hallway/primary/aft) +"uBo" = ( +/mob/living/basic/parrot/poly, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "uBp" = ( /obj/machinery/holopad, /turf/open/floor/iron/smooth, @@ -71411,11 +76177,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, /area/station/science/breakroom) -"uBv" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "uBy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71434,11 +76195,34 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"uBU" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/starboard) +"uBY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "Rcommissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) +"uCa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "uCb" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -71459,28 +76243,22 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"uCA" = ( -/obj/machinery/power/apc/auto_name/directional/north, +"uCs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction, /obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "uCD" = ( +/obj/machinery/light/very_dim/directional/south, +/obj/effect/turf_decal/stripes/red/box, /obj/machinery/conveyor{ dir = 4; id = "garbage" }, -/obj/machinery/light/very_dim/directional/south, /turf/open/floor/plating, /area/station/maintenance/disposal) -"uCE" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/railing/corner/end{ - dir = 4 - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) "uCF" = ( /turf/open/floor/plating, /area/station/maintenance/port/fore) @@ -71491,15 +76269,32 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"uCI" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"uCO" = ( +/turf/open/openspace, +/area/station/maintenance/starboard/fore/upper) "uCP" = ( /obj/machinery/door/airlock/external{ name = "Medical Escape Pod" }, /obj/effect/landmark/navigate_destination/dockescpod1, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/iron/textured_half{ dir = 8 }, -/area/space/nearstation) +/area/station/medical/abandoned) "uCR" = ( /obj/effect/landmark/carpspawn, /turf/open/space/basic, @@ -71512,8 +76307,18 @@ /obj/structure/railing/corner{ dir = 1 }, +/mob/living/basic/pet/cat/space{ + name = "Tomas" + }, /turf/open/openspace, /area/station/commons/fitness/recreation) +"uDa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "uDd" = ( /obj/structure/railing{ dir = 8 @@ -71523,22 +76328,37 @@ /turf/open/floor/iron/large, /area/station/maintenance/starboard/central) "uDl" = ( -/obj/effect/landmark/firealarm_sanity, -/turf/open/openspace, -/area/station/command/meeting_room/council) -"uDv" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"uDD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"uDp" = ( +/obj/structure/railing{ dir = 1 }, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"uDx" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/station/engineering/lobby) +"uDD" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/iron, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "uDE" = ( /obj/effect/turf_decal/trimline/yellow/corner{ @@ -71568,6 +76388,7 @@ /obj/structure/railing/corner/end{ dir = 4 }, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) "uDX" = ( @@ -71580,6 +76401,13 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) +"uEi" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) "uEk" = ( /obj/structure/showcase/cyborg/old{ dir = 4; @@ -71590,7 +76418,11 @@ network = list("minisat") }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"uEl" = ( +/obj/effect/spawner/random/contraband/narcotics, +/turf/open/floor/plating, +/area/station/maintenance/port) "uEn" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -71599,10 +76431,6 @@ /obj/item/stack/rods, /turf/open/openspace, /area/station/maintenance/port/aft) -"uEs" = ( -/obj/effect/spawner/random/structure/crate_loot, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "uEz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -71610,23 +76438,35 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "uEG" = ( -/obj/structure/reagent_dispensers/plumbed/storage, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, -/obj/item/radio/intercom/directional/east, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = -2; + pixel_y = -7 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = 2; + pixel_y = -11 + }, +/obj/structure/closet/crate/science, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/structure/sign/poster/official/safety_eye_protection/directional/east, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "uEL" = ( -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron, /area/station/cargo/storage) -"uEM" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uEP" = ( /obj/structure/table/wood, /obj/item/radio/intercom, @@ -71636,12 +76476,28 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input, /turf/open/floor/engine/co2, /area/station/engineering/atmos/upper) +"uEU" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "uEZ" = ( -/obj/structure/ladder, /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/machinery/chem_heater/withbuffer, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"uFe" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "uFj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71649,22 +76505,40 @@ /obj/effect/turf_decal/trimline/red/warning, /turf/open/floor/iron/dark, /area/station/security/brig) +"uFl" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/medical/break_room) "uFo" = ( -/obj/effect/turf_decal/siding/white, -/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_blue/opposingcorners, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 9 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"uFv" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "uFH" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner, /obj/effect/spawner/random/maintenance, /turf/open/space/openspace, /area/space/nearstation) +"uFL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "uFM" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -71702,6 +76576,14 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/starboard) +"uGm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "uGo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71712,16 +76594,18 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "uGt" = ( -/obj/structure/tank_holder/extinguisher, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/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/medical/cryo) "uGx" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/obj/effect/turf_decal/tile/green{ - dir = 1 +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) @@ -71733,7 +76617,7 @@ /obj/effect/turf_decal/stripes/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uGH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -71742,14 +76626,14 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "uGJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/railing{ - dir = 8 +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/belt/utility{ + pixel_y = 6 }, -/obj/effect/decal/cleanable/rubble, -/turf/open/floor/iron/dark/smooth_large, -/area/station/cargo/miningoffice) +/turf/open/floor/iron, +/area/station/cargo/storage) "uGP" = ( /obj/effect/turf_decal/siding/purple/corner, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -71758,32 +76642,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/lab) -"uGT" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/obj/structure/closet/crate/medical, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/effect/spawner/random/maintenance, -/obj/item/pen/red{ - pixel_y = 10 - }, -/obj/structure/curtain/cloth/fancy/mechanical{ - name = "Psychologist's Office Curtains"; - id = "psychpriv" - }, -/turf/open/floor/wood/large, -/area/station/medical/psychology) "uGV" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -71791,21 +76649,16 @@ /obj/machinery/flasher/portable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"uHe" = ( +"uHd" = ( /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/cargo/miningoffice) -"uHg" = ( -/obj/structure/table/wood, -/obj/machinery/computer/arcade/orion_trail{ - desc = "For gamers only. Casuals need not apply."; - icon_screen = "library"; - icon_state = "oldcomp"; - name = "Gamer Computer" +/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 }, -/turf/open/floor/wood, -/area/station/commons/dorms) +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "uHh" = ( /obj/machinery/computer/teleporter{ dir = 1 @@ -71815,14 +76668,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"uHk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uHo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71848,15 +76693,18 @@ codes_txt = "patrol;next_patrol=16-Laundry"; location = "15-EVA" }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "uHD" = ( -/obj/structure/chair{ +/obj/effect/landmark/start/cargo_technician, +/obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "uHH" = ( /obj/machinery/washing_machine, /turf/open/floor/iron/dark/textured_large, @@ -71868,13 +76716,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"uHO" = ( -/obj/item/cigbutt{ - pixel_x = -9; - pixel_y = -2 +"uHT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/disposal) "uHV" = ( /obj/structure/chair/stool/bar/directional/west, /obj/effect/turf_decal/siding/wood{ @@ -71886,17 +76733,36 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood/large, /area/station/commons/lounge) -"uHY" = ( -/obj/machinery/recharge_station, +"uHW" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, /turf/open/floor/iron/dark, -/area/station/commons/dorms) -"uId" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/sign/poster/official/no_erp/directional/north, -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/commons/dorms) +/area/station/medical/chemistry) +"uIf" = ( +/obj/structure/disposalpipe/segment, +/obj/item/paper_bin{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/stamp/head/ce{ + pixel_x = 7 + }, +/obj/item/stamp/denied{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/pen, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "uIi" = ( /obj/machinery/telecomms/bus/preset_two, /obj/effect/turf_decal/tile/brown/fourcorners, @@ -71914,10 +76780,6 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"uIx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "uIA" = ( /obj/structure/railing{ dir = 4 @@ -71948,22 +76810,12 @@ /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"uJy" = ( -/obj/structure/table, -/obj/item/rcl/pre_loaded{ - pixel_y = 7 - }, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 +"uJF" = ( +/obj/item/statuebust{ + pixel_y = 12 }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "uJI" = ( /obj/structure/table, /obj/item/food/grown/banana{ @@ -71977,17 +76829,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/iron, /area/station/construction/storage_wing) -"uJR" = ( -/obj/item/ammo_casing/spent{ - pixel_x = -11; - pixel_y = -5 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -6; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "uJX" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -71999,13 +76840,15 @@ "uKa" = ( /turf/closed/wall, /area/station/security/warden) -"uKf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/plasma{ - dir = 4 +"uKb" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/surgery, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery) "uKh" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -72013,11 +76856,6 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) -"uKm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uKn" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 1 @@ -72039,6 +76877,17 @@ dir = 8 }, /area/station/commons/lounge) +"uKr" = ( +/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/duct, +/obj/structure/railing, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "uKt" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -72049,12 +76898,33 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"uKy" = ( +/obj/item/storage/toolbox/mechanical/old, +/obj/item/clothing/mask/gas, +/obj/item/toy/balloon/arrest, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"uKL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/welded, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plating, +/area/station/maintenance/port) "uKM" = ( -/obj/effect/spawner/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/right/directional/east{ + name = "Pharmacy Desk" + }, +/obj/effect/turf_decal/tile/yellow/full, +/obj/machinery/door/window/right/directional/west{ + name = "Pharmacy Desk"; + req_access = list("pharmacy") + }, /obj/machinery/door/poddoor/shutters/preopen{ dir = 4; id = "chemshutters"; - name = "Chemistry Shutters" + name = "Pharmacy Shutters" }, /turf/open/floor/plating, /area/station/medical/pharmacy) @@ -72071,6 +76941,11 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) +"uKO" = ( +/obj/structure/lattice, +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/commons/dorms) "uKP" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -72086,7 +76961,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"uLa" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "uLb" = ( /obj/structure/closet/crate/secure/trashcart, /obj/item/sord, @@ -72101,6 +76985,11 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/maintenance/port/aft) +"uLe" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "uLf" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -72126,26 +77015,19 @@ "uLj" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/corner, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uLo" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, /obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/airalarm/directional/west, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Medbay - Lower Morgue" - }, +/obj/effect/landmark/start/coroner, /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, /area/station/medical/morgue) "uLt" = ( +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/dark/half/contrasted{ dir = 8 }, -/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "uLw" = ( @@ -72157,6 +77039,22 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) +"uLD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/structure/sign/poster/contraband/singletank_bomb/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) +"uLI" = ( +/obj/effect/mob_spawn/corpse/human/assistant, +/obj/structure/closet/crate/trashcart, +/obj/effect/mob_spawn/corpse/human/monkey, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "uLL" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -72183,21 +77081,9 @@ }, /turf/open/floor/iron/dark/textured_corner, /area/station/science/ordnance) -"uMy" = ( -/obj/machinery/shower/directional/east, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/virology) -"uMD" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored{ - cable_layer = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +"uMt" = ( +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "uME" = ( /obj/structure/stairs/south, /obj/structure/railing{ @@ -72207,107 +77093,105 @@ dir = 1 }, /area/station/service/library/printer) -"uMT" = ( -/obj/effect/turf_decal/siding/wood{ +"uMG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"uMJ" = ( +/obj/effect/turf_decal/siding{ dir = 1 }, -/obj/structure/chair{ - dir = 1 +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + pixel_x = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"uNn" = ( -/obj/structure/table, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/spawner/random/techstorage/command_all, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"uNu" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"uNo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"uNG" = ( -/obj/machinery/washing_machine, -/obj/machinery/airalarm/directional/north, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/virology) "uNJ" = ( /obj/item/radio/intercom/prison/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"uNV" = ( -/obj/structure/chair{ - dir = 8 - }, +"uNT" = ( +/obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/effect/landmark/start/assistant, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "uNY" = ( -/obj/structure/bed{ +/obj/machinery/light_switch/directional/west, +/obj/machinery/rnd/production/techfab/department/medical, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"uOx" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 4 }, -/obj/item/bedsheet/cmo{ - dir = 1 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) -"uOh" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 }, -/obj/effect/turf_decal/trimline/red/line, -/obj/effect/landmark/start/hangover/closet, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"uOo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers{ - dir = 10 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"uOx" = ( -/obj/structure/table/glass, -/obj/machinery/wall_healer/directional/west, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/machinery/vending/coffee{ + pixel_x = -3 }, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "uOC" = ( /obj/machinery/vending/wardrobe/hydro_wardrobe, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"uOF" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "uOH" = ( /obj/structure/chair, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/security/interrogation) +"uOL" = ( +/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/trimline/blue/filled/warning, +/obj/effect/turf_decal/trimline/white/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"uOO" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/chaplain, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/service/chapel/office) "uOR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"uOS" = ( -/obj/structure/table/glass, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uOW" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -72318,16 +77202,14 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) -"uPn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"uPj" = ( +/obj/machinery/newscaster/directional/east, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/effect/landmark/start/paramedic, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "uPq" = ( /obj/structure/railing/corner{ dir = 1 @@ -72344,22 +77226,16 @@ "uPu" = ( /turf/open/floor/wood, /area/station/service/library) -"uPy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"uPB" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored{ - cable_layer = 1 +"uPz" = ( +/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, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "uPL" = ( /obj/item/controller, /obj/item/compact_remote, @@ -72374,26 +77250,69 @@ /obj/item/multitool/circuit, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) +"uPQ" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"uPY" = ( +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"uPZ" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "uQh" = ( /turf/open/floor/iron/dark, /area/station/security/medical) +"uQi" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"uQl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/sign/poster/official/random/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "uQv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 2 }, -/turf/open/floor/iron/white/textured_corner{ - dir = 8 +/obj/item/clothing/glasses/hud/health{ + pixel_y = 10 }, -/area/station/medical/surgery) +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "uQy" = ( /obj/structure/closet/crate/bin, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) -"uQH" = ( -/obj/structure/girder, -/obj/structure/grille, +/area/station/ai/satellite/maintenance/storage) +"uQX" = ( +/obj/machinery/door/airlock/external, +/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/starboard/aft) +/area/station/maintenance/starboard) "uRd" = ( /turf/open/openspace, /area/station/maintenance/port/fore) @@ -72402,19 +77321,6 @@ /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron, /area/station/construction/storage_wing) -"uRp" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/railing/corner/end, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "uRs" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -72428,25 +77334,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) -"uRu" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"uRx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/boritos, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "uRy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72464,30 +77351,30 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"uRB" = ( -/obj/machinery/atmospherics/pipe/smart/simple/supply{ - dir = 4 +"uRA" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"uRK" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 5 +/obj/structure/table, +/obj/item/flashlight{ + pixel_y = -2 }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 5 +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 }, -/obj/item/clothing/gloves/color/black, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"uRD" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "SM_shutters"; + name = "Supermatter Radiation Shutters"; dir = 1 }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/atmospherics/components/binary/pump/off/cyan/visible, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/plating, +/area/station/engineering/supermatter) "uRM" = ( /obj/structure/table, /obj/effect/spawner/random/trash/janitor_supplies{ @@ -72537,21 +77424,45 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"uSa" = ( +/obj/structure/sign/departments/medbay/alt/directional/south, +/turf/open/openspace, +/area/station/medical/abandoned) "uSg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/freezer, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"uSh" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + pixel_x = 8 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "uSl" = ( /turf/open/floor/wood/tile, /area/station/maintenance/port/aft) +"uSn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "uSq" = ( /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, /area/station/hallway/primary/port) -"uSs" = ( -/turf/open/floor/plating/airless, -/area/station/maintenance/port/aft) "uSw" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/structure/closet/secure_closet, @@ -72561,19 +77472,51 @@ /obj/item/poster/random_contraband, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"uSE" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 4 +"uSz" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) +"uSI" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 8 }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uSK" = ( +/obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/structure/fluff/paper/stack{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/yellow, +/obj/item/hand_labeler_refill{ + pixel_x = -1 + }, +/obj/structure/fluff/paper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) "uSL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) +"uSP" = ( +/obj/structure/sink/directional/west, +/obj/machinery/iv_drip, +/obj/structure/mirror/directional/east, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/medical/surgery) "uSV" = ( /mob/living/basic/lizard/wags_his_tail, /obj/structure/bed, @@ -72628,6 +77571,14 @@ }, /turf/open/space/basic, /area/space) +"uTj" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/space/basic, +/area/space/nearstation) "uTy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair, @@ -72636,40 +77587,41 @@ /obj/effect/turf_decal/tile/dark/full, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"uTI" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) "uTJ" = ( -/obj/machinery/light/directional/west, -/turf/open/openspace, -/area/station/cargo/storage) -"uTK" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 +/obj/structure/sign/directions/evac/directional/north{ + pixel_y = 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/engineering/engine_smes) +/obj/structure/sign/directions/vault/directional/north{ + pixel_y = -2 + }, +/turf/closed/wall, +/area/station/maintenance/port/fore) "uTP" = ( /obj/effect/turf_decal/siding/dark, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uTU" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/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/engineering/atmos/project) +/area/station/ai/satellite/interior) "uTY" = ( /obj/structure/fake_stairs/directional/north, /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/science/robotics) +"uUg" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/hangover, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/electric_shock/directional/west, +/turf/open/openspace, +/area/station/hallway/primary/starboard) +"uUx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can{ + pixel_x = -8 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "uUC" = ( /obj/structure/bed, /obj/structure/toilet/greyscale{ @@ -72695,24 +77647,10 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"uUH" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"uUK" = ( -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) "uUL" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/cargo/miningoffice) "uUO" = ( @@ -72729,6 +77667,16 @@ /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/smooth, /area/station/science/robotics) +"uUS" = ( +/obj/item/cigbutt, +/obj/structure/curtain, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "uUT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72737,16 +77685,20 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) -"uUX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/command/vault) "uUY" = ( /obj/structure/chair/plastic, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/black, /area/station/maintenance/hallway/abandoned_recreation) +"uVb" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "uVf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/west, @@ -72757,17 +77709,37 @@ /turf/closed/wall, /area/station/commons/toilet/auxiliary) "uVn" = ( -/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"uVD" = ( +/obj/structure/mop_bucket{ + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/bucket{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/mop, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/area/station/maintenance/starboard) "uVL" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/icecream_vat, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/structure/showcase/machinery/cloning_pod{ + desc = "An old decommissioned scanner, permanently scuttled."; + icon_state = "scanner"; + name = "decommissioned cloning scanner" + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "uVN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -72784,45 +77756,32 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood/tile, /area/station/science/robotics) -"uVX" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/medical/storage) -"uVY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/assistant, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "uWi" = ( /turf/open/openspace, -/area/station/ai_monitored/command/storage/eva) -"uWu" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, +/area/station/command/eva) +"uWp" = ( +/obj/machinery/duct, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard/central) "uWE" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/item/storage/box/shipping{ - pixel_x = 4; - pixel_y = 10 +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/item/clothing/head/costume/mailman, -/turf/open/floor/iron, +/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/cargo/sorting) +"uWI" = ( +/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/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) "uWO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -72846,10 +77805,19 @@ /turf/open/floor/iron/dark, /area/station/science/cytology) "uXj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/obj/effect/turf_decal/siding/dark_blue, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) +"uXm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/engineering/engine_smes) +"uXx" = ( +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/carpet/black, +/area/station/ai/upload/chamber) "uXz" = ( /obj/structure/bed{ dir = 4 @@ -72867,12 +77835,12 @@ /turf/open/floor/iron/dark/textured, /area/station/medical/virology) "uXE" = ( -/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, /obj/structure/cable, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/storage) "uXI" = ( @@ -72885,14 +77853,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"uXR" = ( -/obj/structure/table/wood/fancy/cyan, -/obj/item/book/manual/wiki/atmospherics{ - pixel_y = 8 - }, -/obj/machinery/light/directional/east, +"uXL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/directional/east, /turf/open/floor/engine, -/area/station/engineering/break_room) +/area/station/engineering/supermatter/room) +"uXN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "uXU" = ( /obj/effect/spawner/random/structure/chair_flipped, /obj/effect/decal/cleanable/dirt, @@ -72917,6 +77890,19 @@ /obj/effect/spawner/random/medical/surgery_tool, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"uYg" = ( +/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/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"uYs" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "uYu" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -72930,16 +77916,9 @@ dir = 8 }, /obj/machinery/vending/coffee, +/obj/machinery/airalarm/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"uYL" = ( -/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/maintenance/starboard/lesser) "uYP" = ( /obj/effect/spawner/random/trash/box, /obj/item/clothing/gloves/color/fyellow/old, @@ -72949,31 +77928,27 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"uYX" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/engineering/lobby) -"uZg" = ( -/obj/effect/turf_decal/stripes/line{ +"uYT" = ( +/turf/open/floor/iron, +/area/station/engineering/storage_shared) +"uYY" = ( +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) "uZn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/light/cold/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/server) -"uZs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) "uZu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72986,15 +77961,16 @@ /area/station/service/library) "uZQ" = ( /obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, /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/blue, -/turf/open/floor/engine/hull/air, +/turf/open/openspace, /area/station/medical/medbay/central) +"uZR" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/aft) "uZS" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/siding/purple{ @@ -73030,31 +78006,19 @@ dir = 8 }, /area/station/hallway/primary/starboard) +"vaj" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/medical/chemistry) +"vap" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "vav" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/stairs/medium, /area/station/medical/virology) -"vax" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 - }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"vaD" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Dock" - }, -/obj/effect/landmark/navigate_destination/dockaux, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "vaF" = ( /obj/structure/railing{ dir = 8 @@ -73072,11 +78036,16 @@ /obj/machinery/vending/boozeomat, /turf/open/floor/iron/checker, /area/station/service/bar) +"vaR" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "vbe" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/painting/library_private{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/item/cigbutt{ pixel_x = -12; @@ -73099,23 +78068,28 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"vbB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"vbx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"vbV" = ( -/obj/machinery/status_display/ai/directional/north, -/turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/aft) "vbX" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/flora/rock/pile/jungle/style_2, /obj/structure/flora/grass/jungle/a/style_5, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"vbZ" = ( +/obj/machinery/newscaster/directional/south, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"vca" = ( +/turf/open/openspace, +/area/station/maintenance/aft/upper) "vcf" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -73125,34 +78099,35 @@ c_tag = "Medbay - Upper Hallway"; network = list("ss13","medbay") }, -/turf/open/floor/iron/dark/textured_large, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "vcm" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, /area/station/maintenance/starboard/aft) -"vcn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -2 +"vcp" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 2; + name = "Mix to Port" }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vcF" = ( -/obj/structure/sign/warning/hot_temp, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/trimline/dark_green, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "vcH" = ( /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/machinery/navbeacon{ codes_txt = "patrol;next_patrol=5-Litterbox"; location = "4-RnD" }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2 + }, +/obj/effect/mapping_helpers/mail_sorting/science/robotics, /turf/open/floor/iron, /area/station/hallway/primary/aft) "vcI" = ( @@ -73165,35 +78140,32 @@ /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"vcT" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, +"vcX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vdg" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored{ - cable_layer = 1 +/area/station/engineering/atmos) +"vcY" = ( +/obj/machinery/flasher/directional/west, +/obj/structure/table/wood/fancy/black, +/obj/item/ai_module/supplied/freeform{ + pixel_x = -2; + pixel_y = -2 }, -/obj/machinery/atmospherics/pipe/smart/manifold/orange/visible{ - dir = 1 +/obj/item/ai_module/reset{ + pixel_x = 2; + pixel_y = 8 }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai/upload/chamber) "vdh" = ( -/obj/structure/secure_safe/directional/north{ - name = "armory safe A"; - pixel_x = -22; - pixel_y = 0 - }, /obj/structure/rack, /obj/effect/spawner/random/armory/laser_gun, +/obj/structure/secure_safe/directional/west{ + name = "Armory safe A" + }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vdi" = ( /obj/effect/landmark/start/ai/secondary, /obj/effect/turf_decal/delivery, @@ -73214,7 +78186,13 @@ name = "Private Channel" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"vdk" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) "vdl" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -73222,24 +78200,12 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"vdm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "vdq" = ( /obj/structure/broken_flooring/side/always_floorplane/directional/north, /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) -"vdr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "vdI" = ( /obj/structure/table, /obj/item/folder/red{ @@ -73254,21 +78220,14 @@ }, /turf/open/floor/carpet, /area/station/service/lawoffice) -"vdN" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/railing/corner/end{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "vdP" = ( /obj/structure/stairs/north, /turf/open/floor/iron/stairs/medium, /area/station/medical/medbay/central) +"vdZ" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "vef" = ( /obj/machinery/door/airlock{ name = "Coffin Storage" @@ -73283,15 +78242,31 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vel" = ( -/turf/open/floor/catwalk_floor, -/area/station/engineering/lobby) +/area/station/ai/satellite/foyer) +"veh" = ( +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"vek" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "vem" = ( /obj/structure/lattice, /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, /area/station/security/courtroom) +"vep" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/item/stack/rods{ + amount = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "ver" = ( /obj/effect/spawner/random/maintenance, /obj/item/storage/fancy/candle_box, @@ -73309,10 +78284,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"vet" = ( -/obj/effect/decal/cleanable/insectguts, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "veu" = ( /turf/closed/indestructible/riveted{ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; @@ -73330,49 +78301,21 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/iron, /area/station/science/lab) -"veS" = ( -/obj/structure/table, -/obj/item/storage/toolbox/artistic{ - pixel_x = -1; - pixel_y = 12 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = -7 - }, -/obj/item/stamp{ - pixel_x = 7; - pixel_y = -1 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = -7 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/station/service/library/printer) "veT" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"vfb" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/mapping_helpers/broken_machine, -/obj/machinery/vending/tool, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "vfe" = ( /turf/open/floor/iron, /area/station/commons/dorms) +"vfj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "vfp" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -73393,11 +78336,31 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"vfQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "vfV" = ( /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"vfX" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "vfZ" = ( /obj/structure/broken_flooring/side/directional/north, /turf/open/floor/plating, @@ -73408,6 +78371,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/service/chapel) +"vgf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "vgh" = ( /obj/structure/lattice/catwalk, /obj/machinery/griddle, @@ -73432,9 +78402,6 @@ /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, /obj/structure/table, /obj/item/radio/off{ pixel_y = 9 @@ -73448,47 +78415,54 @@ pixel_y = 4 }, /obj/item/radio/off, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/textured, +/area/station/command/eva) "vgB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/sign/poster/contraband/grey_tide/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"vgD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "vgF" = ( /obj/structure/closet/firecloset, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"vgJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vgN" = ( -/obj/machinery/newscaster/directional/north, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Deliveries" +/obj/machinery/computer/security/qm{ + dir = 4 }, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/structure/railing/corner/end/flip{ - dir = 8 +/obj/machinery/button/door/directional/west{ + pixel_y = 6; + name = "Cargo Lockdown"; + id = "cargolockdown"; + req_access = list("cargo") }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/cargo/sorting) +/obj/machinery/button/door/directional/west{ + id = "CargowatchShutter"; + name = "Window Shutters"; + pixel_y = -6 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) +"vgV" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"vgX" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "vhe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, @@ -73515,21 +78489,6 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar/backroom) -"vht" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner{ - dir = 4 - }, -/obj/structure/fluff/paper/stack{ - dir = 4 - }, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/folder/yellow{ - pixel_y = -6 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "vhv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -73541,6 +78500,13 @@ /obj/structure/closet/bombcloset/security, /turf/open/floor/iron/dark, /area/station/security/office) +"vhE" = ( +/obj/structure/table, +/obj/effect/spawner/random/entertainment/musical_instrument, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft) "vhJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -73571,19 +78537,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"viy" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/fluff/paper/stack{ - desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging." - }, -/obj/structure/fluff/paper{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "viD" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -73595,6 +78548,14 @@ /obj/structure/sign/departments/rndserver/directional/north, /turf/open/floor/iron, /area/station/science/lab) +"viF" = ( +/obj/structure/bed, +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/random/bedsheet, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "viI" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 4 @@ -73608,14 +78569,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai) -"viN" = ( -/obj/effect/decal/cleanable/dirt, -/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/starboard/lesser) +/area/station/ai/satellite/chamber) "viS" = ( /obj/structure/chair/office{ dir = 8 @@ -73634,62 +78588,57 @@ /turf/open/floor/iron/freezer, /area/station/commons/toilet/auxiliary) "viV" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "main_surgery" +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/trimline/white/filled/warning{ + dir = 1 }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/surgery) +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) "vjc" = ( /obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"vjC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/turf/open/openspace, -/area/station/engineering/atmos/project) "vjS" = ( /obj/structure/transit_tube, /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/light/floor, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vjZ" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/open/openspace, /area/station/security/detectives_office) "vka" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/machinery/cryo_cell, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/textured, /area/station/medical/cryo) "vkd" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vki" = ( /turf/open/openspace, /area/station/engineering/storage_shared) -"vkl" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner, -/obj/structure/fluff/paper/stack, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/fluff/paper/stack{ - desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; +"vkk" = ( +/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/opposingcorners{ dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"vky" = ( +/obj/machinery/vending/drugs, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "vkA" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 5 @@ -73717,6 +78666,21 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/station/security/courtroom) +"vkD" = ( +/obj/item/banner/cargo/mundane, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "vkO" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/brown/filled/line, @@ -73725,24 +78689,15 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) "vkQ" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase/secure{ - pixel_y = 3 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"vkU" = ( -/obj/item/clothing/head/cone{ - pixel_x = 5; - pixel_y = 10 +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "vkY" = ( /obj/structure/railing{ dir = 8 @@ -73766,6 +78721,15 @@ dir = 8 }, /area/station/science/ordnance) +"vla" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "vlc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -73813,21 +78777,32 @@ }, /area/station/hallway/primary/port) "vlE" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, +/obj/structure/window/spawner/directional/south, /turf/open/floor/plating, /area/station/maintenance/disposal) "vlH" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/space/openspace, /area/space/nearstation) -"vlK" = ( -/obj/effect/turf_decal/siding/white, +"vlI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "CE's Maintenance Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /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/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"vlK" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "vma" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -73835,11 +78810,14 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"vmd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"vme" = ( +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "vmh" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ @@ -73847,6 +78825,11 @@ }, /turf/open/openspace, /area/station/hallway/secondary/construction) +"vmk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "vmt" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -73871,9 +78854,31 @@ /obj/structure/disposalpipe/sorting/mail{ dir = 4 }, -/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) +"vmO" = ( +/obj/structure/rack, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/neck/tie/blue{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/soft/blue, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"vmR" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "vmZ" = ( /obj/structure/table/reinforced, /obj/item/circuitboard/machine/vendor, @@ -73909,6 +78914,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"vnh" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) "vnp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/graffiti, @@ -73918,25 +78929,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"vny" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "vnz" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L8" }, -/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"vnC" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/table/reinforced, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/cell_charger, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "vnR" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) "vnV" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L12" +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ + dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "voa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/siding/wood, @@ -73958,17 +78982,6 @@ /obj/effect/landmark/carpspawn, /turf/open/space/openspace, /area/space) -"voi" = ( -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) -"vok" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/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/starboard/lesser) "von" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment{ @@ -73992,6 +79005,10 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) +"voz" = ( +/obj/structure/disposalpipe/trunk/multiz, +/turf/closed/wall, +/area/station/medical/morgue) "voF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -74003,6 +79020,12 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"voO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "voP" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -74014,12 +79037,14 @@ /turf/open/floor/iron, /area/station/science/lobby) "voU" = ( -/turf/open/openspace, -/area/station/medical/chemistry) -"voV" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "Privacy Shutter" + }, /obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/command/heads_quarters/cmo) "voX" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /obj/structure/railing, @@ -74049,9 +79074,6 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"vpi" = ( -/turf/open/floor/eighties, -/area/station/engineering/lobby) "vpo" = ( /obj/machinery/power/terminal{ dir = 1 @@ -74059,12 +79081,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"vpt" = ( -/obj/structure/chair/pew/right{ - dir = 4 +"vpw" = ( +/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_large, +/area/station/maintenance/port) +"vpy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "vpz" = ( /obj/structure/transport/linear, /turf/open/openspace, @@ -74083,6 +79113,12 @@ /obj/item/wirecutters, /turf/open/floor/iron/dark, /area/station/security/office) +"vpX" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vqc" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -74092,14 +79128,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"vqi" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/engineering/lobby) "vql" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/effect/turf_decal/trimline/red/warning{ @@ -74108,51 +79136,28 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/port) -"vqn" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"vqq" = ( -/obj/structure/table, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/spawner/random/techstorage/ai_all, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "vqs" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Office" +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 9 }, -/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/all/supply/mining, +/obj/item/pen, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/disposalpipe/segment, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/hallway/primary/starboard) "vqu" = ( -/obj/structure/closet/crate/freezer, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"vqv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/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/maintenance/department/medical) +"vqv" = ( /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 4 }, @@ -74162,40 +79167,25 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) -"vqE" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_x = 12; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "revolution"; - name = "graffiti"; - paint_colour = "#FF0000"; - pixel_y = 32 - }, -/obj/item/ammo_casing/spent{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vqH" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"vqM" = ( -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/siding/blue{ dir = 1 }, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vqx" = ( +/obj/machinery/shower/directional/south, +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/item/razor{ + pixel_z = 7; + pixel_w = -7 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "vqP" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/newscaster/directional/south, @@ -74210,15 +79200,27 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"vqZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/recharge_floor, -/area/station/maintenance/starboard/lesser) -"vrx" = ( -/obj/machinery/shower/directional/west, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"vra" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation) +"vre" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/command/meeting_room/council) "vrA" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ @@ -74230,13 +79232,18 @@ /obj/machinery/light/directional/east, /turf/open/openspace, /area/station/science/xenobiology) -"vrO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 10 +"vrR" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +/obj/structure/table, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "vsf" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -74252,30 +79259,6 @@ }, /turf/open/floor/carpet/stellar, /area/station/service/library) -"vsm" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vsq" = ( -/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{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"vss" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "vsv" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/chapel{ @@ -74292,6 +79275,12 @@ /obj/machinery/photocopier/prebuilt, /turf/open/floor/iron, /area/station/science/research) +"vsD" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "vsK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74308,21 +79297,15 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 }, +/obj/effect/mapping_helpers/mail_sorting/medbay/virology, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"vsM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "vsO" = ( /obj/effect/turf_decal/trimline/dark_blue/line{ dir = 8 @@ -74337,7 +79320,7 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vsP" = ( /obj/structure/sign/poster/contraband/gorlex_recruitment, /turf/closed/wall/r_wall, @@ -74355,13 +79338,12 @@ /obj/machinery/holopad, /turf/open/floor/glass/reinforced, /area/station/science/ordnance) -"vsY" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/cmo/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +"vsW" = ( +/obj/machinery/flasher/directional/west, +/obj/structure/table/wood/fancy/cyan, +/obj/effect/spawner/round_default_module, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai/upload/chamber) "vtc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/virology{ @@ -74370,17 +79352,27 @@ /obj/effect/mapping_helpers/airlock/access/all/science/genetics, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"vti" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +"vth" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"vtm" = ( -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Medbay - Upper Storage North Hallway" +/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/layer5{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"vtm" = ( /obj/effect/turf_decal/siding/blue/corner, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, /turf/open/openspace, /area/station/medical/medbay/central) "vtu" = ( @@ -74401,31 +79393,28 @@ }, /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vtF" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) +"vtP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "vtT" = ( /turf/open/floor/glass, /area/station/science/zoo) -"vua" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/large, -/area/station/medical/psychology) "vuc" = ( /obj/item/banner/cargo/mundane, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"vuh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/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/engine, +/area/station/engineering/supermatter/room) "vuo" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -74441,13 +79430,15 @@ /obj/machinery/light/small/red/dim/directional/west, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) -"vuy" = ( -/obj/effect/landmark/start/station_engineer, -/obj/structure/chair/office{ - dir = 1 +"vuC" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) "vuN" = ( /obj/machinery/telecomms/message_server/preset, /turf/open/floor/iron/dark/telecomms, @@ -74462,26 +79453,17 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/wood, /area/station/security/detectives_office) -"vuV" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/turf_decal/siding/dark{ - dir = 4 +"vuR" = ( +/obj/structure/table/reinforced, +/obj/item/rcl/pre_loaded{ + pixel_y = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/departments/aisat/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"vvb" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/book/manual/wiki/atmospherics, -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) "vvc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -74522,15 +79504,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/science/explab) -"vvE" = ( -/obj/machinery/plumbing/input, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) -"vvL" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vvT" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/fake_stairs/directional/west, @@ -74538,14 +79511,6 @@ /obj/structure/stairs/west, /turf/open/floor/iron, /area/station/science/zoo) -"vvY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/structure/light_construct/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) "vwa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, @@ -74572,6 +79537,9 @@ /obj/structure/lattice/catwalk, /turf/open/space/openspace, /area/station/solars/starboard/aft) +"vwg" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/starboard) "vwh" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74586,18 +79554,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"vwp" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) "vwr" = ( /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"vwx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking/circle/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "vwB" = ( /obj/machinery/camera/directional/east{ c_tag = "Arrivals - Aft Arm" @@ -74608,6 +79576,11 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"vwI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/plating, +/area/station/cargo/miningoffice) "vwK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74619,20 +79592,17 @@ /obj/machinery/air_sensor, /turf/open/floor/iron, /area/station/security/prison/mess) -"vwQ" = ( -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/delivery/white{ - color = "#ff6600" - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"vwR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"vwL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, /obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) +"vxa" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/wood, +/area/station/maintenance/aft) "vxc" = ( /obj/machinery/door/airlock/security{ name = "Courtroom Cell" @@ -74640,6 +79610,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/courtroom) "vxe" = ( @@ -74657,13 +79628,19 @@ }, /turf/open/floor/iron/dark/smooth_half, /area/station/service/library) -"vxk" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/computer/atmos_control/plasma_tank{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"vxi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"vxr" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/fore/upper) +"vxz" = ( +/obj/machinery/duct, +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "vxJ" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ @@ -74671,22 +79648,21 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"vyp" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/modular_computer/preset/engineering{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +"vxS" = ( +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"vyu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 1; + name = "Airlock Pump"; + target_pressure = 300; + hide = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) -"vyt" = ( /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/starboard/aft) +/area/station/maintenance/starboard/fore/upper) "vyA" = ( /obj/structure/table/reinforced, /obj/item/camera, @@ -74702,35 +79678,49 @@ /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"vyG" = ( +/obj/machinery/computer/atmos_control/air_tank, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "vyH" = ( /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/aft) "vyV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/ai_monitored/turret_protected/ai_upload) -"vzf" = ( -/obj/structure/railing{ - dir = 1 +/obj/machinery/ai_slipper{ + uses = 8 }, -/obj/effect/turf_decal/siding/yellow{ +/turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/obj/item/plunger{ - pixel_x = -10; - pixel_y = 11 - }, -/obj/item/plunger{ - pixel_x = -14; - pixel_y = 6 +/area/station/ai/upload/chamber) +"vze" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner/end{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"vzf" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/warm/directional/west, /turf/open/floor/iron/dark, -/area/station/medical/chemistry) +/area/station/commons/dorms) +"vzk" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) "vzq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/door/airlock/command/glass{ @@ -74741,36 +79731,39 @@ /turf/open/floor/iron/dark, /area/station/science/server) "vzr" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; dir = 8 }, -/obj/machinery/computer/cargo{ - dir = 1 +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = -10 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/right/directional/east{ + req_access = list("cargo"); + name = "Cargo Desk" }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/pen, /turf/open/floor/iron, /area/station/cargo/storage) -"vzx" = ( -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) "vzB" = ( /turf/closed/wall, /area/station/command/heads_quarters/hop) -"vzM" = ( -/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/port) "vzN" = ( /obj/effect/turf_decal/tile/red/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/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "vzO" = ( /obj/effect/landmark/start/assistant, /turf/open/floor/iron, @@ -74797,16 +79790,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"vAa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "space-outpost" +"vzZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door/airlock/external, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "vAd" = ( /obj/structure/grille, /obj/structure/lattice, @@ -74823,19 +79813,8 @@ /turf/open/floor/iron, /area/station/service/cafeteria) "vAh" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/plasticflaps, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/engine/hull/air, /area/station/cargo/storage) -"vAl" = ( -/obj/structure/ladder, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "vAn" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -74852,40 +79831,6 @@ "vAs" = ( /turf/closed/wall, /area/station/command/corporate_showroom) -"vAv" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vAx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vAy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) -"vAF" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/ghetto_containers, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vAL" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4 @@ -74904,17 +79849,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/cytology) -"vBg" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "vBi" = ( /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/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "vBj" = ( /obj/machinery/porta_turret/ai{ @@ -74924,7 +79865,7 @@ dir = 6 }, /turf/open/floor/engine/hull/reinforced/air, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vBq" = ( /obj/machinery/power/terminal{ dir = 1 @@ -74932,7 +79873,7 @@ /obj/structure/cable/multilayer/connected, /obj/machinery/power/port_gen/pacman, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vBt" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/tile/purple, @@ -74962,13 +79903,17 @@ /turf/open/floor/plating, /area/station/commons/storage/tools) "vBN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 1; - id = "chemshutters"; - name = "Chemistry Shutters" +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 }, -/turf/open/floor/plating, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "vBS" = ( /obj/effect/turf_decal/siding/purple{ @@ -74979,6 +79924,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"vBT" = ( +/obj/structure/table, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/pen, +/obj/item/airlock_painter, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "vBU" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -74988,14 +79943,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"vBX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) "vBY" = ( /obj/item/raw_anomaly_core/random{ pixel_x = -5; @@ -75028,25 +79975,23 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) "vCk" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/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/structure/railing{ dir = 4 }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"vCr" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/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 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "vCB" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/status_display/ai/directional/south, @@ -75054,7 +79999,29 @@ /area/station/science/lobby) "vCE" = ( /turf/closed/wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) +"vCF" = ( +/obj/item/kirbyplants/synthetic/plant26{ + pixel_x = 10; + pixel_y = 18 + }, +/obj/item/kirbyplants/synthetic/plant27{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"vCG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "vCN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/public/glass{ @@ -75078,18 +80045,16 @@ }, /area/station/hallway/secondary/entry) "vCT" = ( -/obj/structure/bookcase/random/reference, -/obj/machinery/camera/autoname/directional/south, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "vCW" = ( /obj/structure/table/wood/poker, /obj/item/toy/cards/deck{ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "vDa" = ( /obj/machinery/camera/directional/west{ @@ -75110,37 +80075,31 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "vDi" = ( /turf/open/floor/iron/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vDF" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) -"vDL" = ( +/area/station/ai/satellite/foyer) +"vDu" = ( +/obj/structure/reagent_dispensers/plumbed, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"vDv" = ( +/obj/effect/spawner/random/engineering/tank, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/plasma, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"vDT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"vDV" = ( -/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/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"vDM" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/soda_cans/thirteenloko{ + pixel_x = 14; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_construction, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "vEi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -75148,6 +80107,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"vEp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "CO2 to Mix" + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"vEv" = ( +/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/engineering/main) "vEF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -75161,30 +80134,41 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"vEU" = ( -/obj/machinery/skill_station, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"vEH" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vEW" = ( +/obj/item/clothing/head/cone{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vEX" = ( /obj/structure/cable, /turf/open/floor/glass/reinforced, /area/station/solars/starboard/fore) +"vFf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vFk" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plating, /area/station/construction/storage_wing) -"vFr" = ( -/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/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "vFA" = ( /turf/closed/wall, /area/station/science/xenobiology) @@ -75197,40 +80181,19 @@ }, /turf/open/floor/engine/hull/air, /area/station/science/research) -"vFG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/water, -/area/station/maintenance/starboard/fore) -"vFP" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/line, -/obj/structure/railing{ - dir = 1 +"vFE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "vFR" = ( /turf/closed/mineral/random/stationside/asteroid/porus, /area/station/science/ordnance/bomb) -"vFU" = ( -/obj/structure/table/reinforced, -/obj/item/trash/candle{ - pixel_x = 11; - pixel_y = 11 - }, -/obj/item/trash/candle{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/trash/candle{ - pixel_x = -9; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "vFV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, @@ -75243,9 +80206,14 @@ /turf/open/floor/iron, /area/station/security/prison/mess) "vFZ" = ( -/obj/effect/turf_decal/siding/green, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/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/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) "vGi" = ( /obj/structure/table, /obj/item/training_toolbox{ @@ -75258,16 +80226,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"vGl" = ( -/obj/structure/fluff/paper/stack{ - dir = 10 - }, -/obj/structure/sign/flag/nanotrasen/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "vGr" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/mid_joiner, @@ -75283,6 +80241,19 @@ /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"vGu" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/item/cigbutt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"vGB" = ( +/obj/structure/sign/poster/official/soft_cap_pop_art/directional/west, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "vGC" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -75292,37 +80263,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"vGE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine/hull/reinforced, -/area/station/engineering/atmos/hfr_room) -"vGQ" = ( -/obj/structure/table, -/obj/item/clothing/under/costume/seifuku/tan{ - pixel_x = -14; - pixel_y = -2 - }, -/obj/item/trash/boritos{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/clothing/glasses/sunglasses/gar/orange{ - pixel_x = 4 - }, -/obj/structure/sign/poster/contraband/energy_swords/directional/north, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) -"vGX" = ( -/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/smooth_large, -/area/station/maintenance/department/medical) -"vHa" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) "vHe" = ( /obj/structure/closet/crate/trashcart/laundry, /obj/item/clothing/under/rank/prisoner, @@ -75334,27 +80274,30 @@ /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) "vHo" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/station/hallway/secondary/command) "vHp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "vHz" = ( /obj/structure/table, /obj/machinery/air_sensor, /turf/open/floor/iron/grimy, /area/station/security/interrogation) -"vHO" = ( -/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 +"vHC" = ( +/obj/structure/stairs/east, +/obj/machinery/status_display/supply{ + pixel_x = 32 }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/station/cargo/storage) "vHV" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -75364,10 +80307,27 @@ /obj/effect/spawner/random/bureaucracy/pen, /turf/open/openspace, /area/station/maintenance/port/aft) +"vIb" = ( +/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{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "vIc" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"vId" = ( +/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/port) "vIg" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -75381,6 +80341,11 @@ /obj/item/clothing/glasses/welding, /turf/open/floor/iron/dark/smooth_large, /area/station/security/mechbay) +"vIr" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) "vIs" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/siding/dark{ @@ -75390,19 +80355,11 @@ dir = 8 }, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vIw" = ( /obj/structure/railing, /turf/open/openspace, /area/station/hallway/primary/central) -"vIy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "vIz" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -75410,24 +80367,44 @@ }, /turf/open/floor/iron, /area/station/science/research) -"vIX" = ( -/obj/machinery/camera/autoname/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) +"vIE" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"vIG" = ( +/obj/structure/fluff/paper/stack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "vJe" = ( /obj/structure/chair, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) +"vJf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/east, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "vJz" = ( /obj/structure/railing{ dir = 4 }, -/turf/open/floor/wood, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "HoPsToy"; + name = "Loading Conveyor"; + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "vJB" = ( /obj/effect/turf_decal/trimline/red/filled/line{ @@ -75436,13 +80413,27 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/port) +"vJD" = ( +/obj/structure/lattice, +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/commons/fitness/recreation) "vJF" = ( /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, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) +"vJI" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "vJP" = ( /obj/structure/table, /obj/item/storage/box/hug/plushes{ @@ -75459,14 +80450,6 @@ }, /turf/open/floor/eighties, /area/station/construction/storage_wing) -"vJV" = ( -/obj/machinery/door/airlock/external, -/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/starboard/lesser) "vKc" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -75482,74 +80465,42 @@ /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) "vKi" = ( -/obj/structure/table/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/central) +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "vKq" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/vending/assist, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "vKt" = ( /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"vKw" = ( -/obj/structure/table, -/obj/item/reagent_containers/cup/glass/bottle/vodka{ - pixel_y = 15; - pixel_x = 6 - }, -/obj/item/reagent_containers/cup/glass/bottle/juice/orangejuice{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_containers/cup/glass/flask{ - pixel_x = -6 +"vKA" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/item/reagent_containers/cup/glass/flask{ - pixel_x = 11 +/obj/effect/turf_decal/siding/blue{ + dir = 10 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "vKL" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/table, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/autoname/directional/south, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"vKW" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/locker) +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/textured, +/area/station/command/eva) "vKZ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -75568,15 +80519,6 @@ /obj/structure/sink/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"vLb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/lobby) "vLe" = ( /obj/structure/table, /obj/item/taperecorder{ @@ -75591,21 +80533,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/security/execution/education) -"vLj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "vLx" = ( /obj/machinery/conveyor{ dir = 4; id = "garbage" }, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "vLC" = ( @@ -75626,94 +80559,41 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron, /area/station/science/research) -"vLU" = ( -/obj/item/kirbyplants/random/fullysynthetic, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"vLZ" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/broadcaster{ - pixel_y = 2 - }, -/obj/item/circuitboard/machine/telecomms/bus{ - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"vMn" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"vMs" = ( -/obj/machinery/door/airlock/maintenance, -/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 = 4 +"vMm" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Freezer Bypass" }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "vMt" = ( /obj/structure/cable, /turf/closed/wall/r_wall, /area/station/security/checkpoint/science) "vMv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, /obj/machinery/door/firedoor, +/obj/machinery/airalarm/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"vMG" = ( -/obj/item/kirbyplants/random, -/obj/machinery/button/door/directional/west{ - id = "Cabin4"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"vMH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/item/reagent_containers/blood/ethereal{ - pixel_x = -6; - pixel_y = 6 +"vMN" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 }, -/obj/item/cigbutt{ - pixel_x = 9; - pixel_y = 14 +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 }, -/obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/west, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) -"vMO" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 +/obj/effect/turf_decal/siding/red{ + dir = 4 }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/grass, -/area/station/engineering/lobby) -"vMP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/turf/open/floor/iron/textured_edge{ dir = 4 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/area/station/command/gateway) +"vMP" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "vMR" = ( /obj/machinery/modular_computer/preset/civilian{ dir = 4 @@ -75727,8 +80607,15 @@ dir = 4 }, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) +"vNb" = ( +/obj/machinery/atmospherics/components/unary/passive_vent, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) "vNc" = ( /obj/structure/railing{ dir = 10 @@ -75745,18 +80632,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"vNg" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/north, -/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, -/turf/open/openspace, -/area/station/medical/storage) +"vNl" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "vNm" = ( /obj/item/bodypart/chest/lizard, /obj/effect/mapping_helpers/broken_floor, @@ -75795,17 +80678,18 @@ }, /turf/open/floor/plating, /area/station/science/zoo) +"vNE" = ( +/obj/structure/stairs/south, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/maintenance/starboard) "vNJ" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/window/reinforced/tinted/spawner/directional/west, /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"vNM" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vOg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -75817,43 +80701,56 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/obj/structure/sign/directions/medical/directional/east{ - dir = 2; - pixel_y = 9 - }, -/obj/structure/sign/directions/science/directional/east{ - dir = 2; - pixel_y = 3 - }, -/obj/structure/sign/directions/security/directional/east{ - dir = 2; - pixel_y = -3 +/turf/open/floor/iron/edge{ + dir = 4 }, -/turf/open/floor/iron/large, /area/station/hallway/primary/central) "vOy" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/status_display/ai/directional/north, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) "vOE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"vPa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +"vON" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/stamp/denied{ + pixel_x = 6 + }, +/obj/item/stamp/granted{ + pixel_x = -4 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) +"vPk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/decal/cleanable/cobweb, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "vPp" = ( /obj/machinery/microwave, /turf/open/floor/plating, @@ -75866,17 +80763,26 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"vPK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"vPE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Engine"; - dir = 8 +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"vPF" = ( +/obj/machinery/atmospherics/pipe/multiz/green/visible{ + dir = 8; + name = "mix to space multi-deck adaper" }, -/obj/effect/turf_decal/trimline/brown, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) +/obj/effect/turf_decal/tile/dark_green/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "vPN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -75886,10 +80792,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"vPU" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "vPX" = ( /obj/effect/turf_decal/tile/dark_blue, /obj/structure/cable, @@ -75902,15 +80804,36 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 }, -/obj/effect/landmark/start/shaft_miner, +/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/cargo/miningoffice) -"vQf" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/area/station/cargo/storage) +"vQe" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"vQj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"vQm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/button/door/directional/north{ + id = "abandoned_kitchen" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vQo" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line, @@ -75973,6 +80896,7 @@ }, /obj/machinery/light/directional/south, /obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/green/filled/corner, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "vQP" = ( @@ -75983,12 +80907,15 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/wood, /area/station/security/courtroom) +"vQQ" = ( +/turf/open/floor/plating, +/area/station/hallway/secondary/construction) "vQR" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/computer/gateway_control{ dir = 4 }, -/turf/open/floor/carpet, +/turf/open/floor/carpet/purple, /area/station/command/gateway) "vRb" = ( /obj/structure/sign/poster/official/tactical_game_cards/directional/west, @@ -75997,15 +80924,6 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/cargo/bitrunning/den) -"vRc" = ( -/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/thinplating/dark{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/station/medical/psychology) "vRd" = ( /obj/effect/decal/cleanable/dirt, /obj/item/circuitboard/computer/operating, @@ -76018,32 +80936,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"vRi" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "vRp" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/item/clothing/mask/bandana/skull/black, /obj/structure/sign/poster/contraband/lizard/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"vRz" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) +"vRy" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "vRD" = ( /obj/structure/table, /obj/item/toy/cards/deck/wizoff{ @@ -76052,12 +80955,6 @@ }, /turf/open/floor/iron, /area/station/science/breakroom) -"vRE" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "vRF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -76154,6 +81051,10 @@ }, /turf/open/floor/iron, /area/station/science/robotics) +"vSA" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "vSC" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ name = "euthanization chamber freezer" @@ -76187,17 +81088,26 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"vSJ" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"vSO" = ( +/turf/open/floor/glass/reinforced, +/area/station/medical/chemistry) "vSS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"vSU" = ( -/obj/effect/decal/cleanable/glitter, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vSW" = ( -/turf/open/floor/carpet, -/area/station/ai_monitored/turret_protected/ai_upload) +/obj/machinery/holopad/secure, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai/upload/chamber) "vSX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -76207,6 +81117,10 @@ /obj/structure/railing/corner, /turf/open/floor/iron, /area/station/science/robotics) +"vTh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vTm" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -76217,15 +81131,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"vTq" = ( -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "vTu" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -76233,25 +81138,24 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"vTv" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 +"vTB" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 +/obj/effect/turf_decal/plaque{ + icon_state = "L13" }, -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) "vTE" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"vTH" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) +/obj/machinery/door/airlock/mining{ + name = "Deliveries" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/shipping, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "vTI" = ( /obj/structure/railing{ dir = 1 @@ -76260,23 +81164,15 @@ /obj/effect/turf_decal/tile/purple/fourcorners, /turf/open/floor/iron, /area/station/science/research) -"vTV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark/corner, -/obj/effect/turf_decal/trimline/dark/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vUb" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Quarters" +"vTQ" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "vUd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -76287,6 +81183,11 @@ }, /turf/open/floor/wood, /area/station/service/library) +"vUf" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "vUi" = ( /obj/structure/chair/pew/left{ dir = 8 @@ -76294,11 +81195,19 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/service/chapel) -"vUm" = ( -/obj/machinery/power/smes/engineering, +"vUx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vUN" = ( /obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/engine_smes) +/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/upper) "vUQ" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/table/wood, @@ -76322,35 +81231,33 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/science/lobby) -"vVb" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"vVi" = ( +/obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"vVp" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"vVv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"vVD" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"vVp" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"vVt" = ( +/obj/structure/chair/sofa/right/brown, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/poster/contraband/pwr_game/directional/north, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) +"vVH" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/docking/directional/south, +/turf/open/space/basic, +/area/space/nearstation) "vVR" = ( /obj/structure/broken_flooring/pile/directional/north, /turf/open/floor/plating, @@ -76394,31 +81301,50 @@ /area/station/science/lab) "vWI" = ( /obj/structure/rack, -/obj/item/reagent_containers/cup/bottle/fluorine{ +/obj/item/reagent_containers/cup/bottle/formaldehyde{ + pixel_x = 1 + }, +/obj/item/reagent_containers/cup/bottle/acidic_buffer{ pixel_x = 7; pixel_y = 3 }, -/obj/item/reagent_containers/cup/bottle/iodine{ - pixel_x = 1 +/obj/item/reagent_containers/cup/bottle/basic_buffer{ + pixel_x = -5; + pixel_y = 3 }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) "vXh" = ( /obj/item/radio/intercom/directional/west, /turf/open/floor/carpet/black, /area/station/service/library/private) -"vXt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +"vXi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/large, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"vXt" = ( +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) +"vXv" = ( +/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/science/breakroom) "vXz" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 @@ -76428,6 +81354,16 @@ /obj/machinery/mining_weather_monitor/directional/north, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"vXB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) +"vXC" = ( +/obj/machinery/newscaster/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "vXQ" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -76437,21 +81373,12 @@ }, /turf/open/floor/iron, /area/station/science/lab) -"vXU" = ( -/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/port) "vYe" = ( /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/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "vYm" = ( /obj/effect/turf_decal/stripes/corner{ @@ -76459,12 +81386,16 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"vYq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "vYs" = ( -/obj/structure/table/optable, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured_edge, /area/station/medical/morgue) "vYt" = ( @@ -76482,10 +81413,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"vYI" = ( -/obj/structure/reagent_dispensers/plumbed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"vYN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/dorms) +"vYQ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "vYS" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -76504,43 +81443,19 @@ }, /turf/open/floor/iron, /area/station/science/breakroom) -"vYV" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "vYX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) -"vZc" = ( -/obj/item/trash/can{ - pixel_x = -8 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = -13 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = -13 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = -13 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = -13 +"vZa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = -13 +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 }, -/obj/structure/sign/poster/contraband/grey_tide/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "vZd" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners, /obj/structure/railing/corner/end/flip{ @@ -76550,8 +81465,13 @@ /turf/open/floor/iron/dark, /area/station/science/cytology) "vZG" = ( -/turf/open/openspace/coldroom, -/area/station/medical/coldroom) +/turf/open/openspace, +/area/station/maintenance/department/medical) +"vZH" = ( +/obj/item/radio/headset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "vZI" = ( /obj/effect/turf_decal/tile/dark_green{ dir = 4 @@ -76585,18 +81505,24 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron, /area/station/science/lab) -"wag" = ( -/obj/item/cigbutt{ - pixel_x = -11; - pixel_y = 14 +"wap" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/arrows/red{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"waq" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/arrows/red{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) +"war" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "was" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/effect/turf_decal/trimline/red/warning{ @@ -76610,12 +81536,12 @@ "wau" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "waz" = ( /turf/closed/wall, /area/station/security/interrogation) "waA" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/iron/dark, /area/station/science/lobby) "waH" = ( @@ -76629,13 +81555,17 @@ /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/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "waU" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/floor/engine{ name = "Holodeck Projector Floor" }, /area/station/holodeck/rec_center) +"waY" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/starboard/fore) "wbc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/sink/directional/west, @@ -76659,24 +81589,39 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/turf_decal/arrows{ - dir = 1 - }, /obj/machinery/button/door/directional/south{ id = "gateshutter"; name = "Gateway Shutter Control"; pixel_x = -24; pixel_y = 0; - req_access = list("command") + req_access = list("command"); + dir = 8 }, /obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, /area/station/command/gateway) +"wbJ" = ( +/obj/effect/turf_decal/siding/dark_blue/corner, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "wbK" = ( /obj/item/poster/random_contraband, /obj/structure/cursed_money, /turf/open/floor/plating, /area/station/maintenance/port) +"wbM" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/warning/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "wbR" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 8 @@ -76716,20 +81661,6 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"wcJ" = ( -/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ - dir = 4; - name = "Atmos to Engine" - }, -/obj/effect/turf_decal/trimline/brown, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wcL" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/athletic_mixed, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "wcN" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -76738,15 +81669,6 @@ /obj/machinery/holopad, /turf/open/floor/wood, /area/station/hallway/primary/central) -"wcT" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"wcV" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "wcY" = ( /obj/structure/railing{ dir = 8 @@ -76762,8 +81684,8 @@ /area/station/science/research) "wdb" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/wood/tile, /area/station/maintenance/port/aft) "wdd" = ( @@ -76794,11 +81716,14 @@ /obj/effect/spawner/random/trash/botanical_waste, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"wdu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +"wdt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) "wdw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, @@ -76818,14 +81743,22 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/ai) -"wdD" = ( +/area/station/ai/satellite/chamber) +"wdB" = ( +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/communist_state/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"wdF" = ( +/obj/machinery/shower/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "wdQ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair{ @@ -76837,7 +81770,10 @@ /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 4 }, -/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/storage) "weg" = ( @@ -76867,6 +81803,12 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"wel" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/engine/hull, +/area/station/maintenance/starboard/aft/upper) "weo" = ( /obj/effect/spawner/random/trash/garbage, /obj/item/clothing/head/cone{ @@ -76894,11 +81836,20 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/yellow/fourcorners, /obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/construction/mining/aux_base) +"weC" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/directional/west, +/turf/open/openspace, +/area/station/engineering/lobby) "weF" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -76917,20 +81868,13 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark, /area/station/security/warden) -"weJ" = ( +"weM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/cable, /turf/open/floor/plating/airless, -/area/station/maintenance/starboard/aft) -"weK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/aft/upper) "weO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -76944,7 +81888,10 @@ dir = 8; id = "cargounload" }, -/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/plating, /area/station/cargo/storage) "weX" = ( @@ -76957,23 +81904,6 @@ /obj/item/tank/internals/oxygen/yellow, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"wfk" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/item/cigbutt, -/obj/structure/bed/maint, -/obj/effect/spawner/random/bedsheet, -/turf/open/floor/wood, -/area/station/commons/dorms) -"wfp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump/on/layer5{ - name = "O2 to Airmix" - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "wfq" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, @@ -76983,17 +81913,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"wfz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4 - }, -/obj/effect/mapping_helpers/mail_sorting/engineering/general, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "wfF" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 4 @@ -77012,10 +81931,16 @@ }, /area/station/tcommsat/server) "wfN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"wfO" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "wfV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77061,20 +81986,14 @@ }, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/burnchamber) +"wgq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "wgx" = ( -/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, /obj/machinery/light_switch/directional/east, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -77083,12 +82002,23 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) -"wgD" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/medical/chem_storage) +"wgE" = ( +/obj/structure/sign/directions/engineering/directional/west{ + dir = 1; + pixel_y = 6; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/west{ + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/science/directional/west{ + pixel_y = -6; + pixel_x = 0 + }, +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) "wgM" = ( /obj/structure/statue/sandstone/venus{ dir = 1 @@ -77112,6 +82042,17 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"wgZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "wha" = ( /obj/structure/cable, /obj/machinery/fax{ @@ -77133,19 +82074,25 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"whs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance" +"whn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"whs" = ( /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/all/medical/morgue, -/turf/open/floor/plating, -/area/station/maintenance/port) +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "whu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/east, @@ -77154,7 +82101,18 @@ "whw" = ( /obj/machinery/teleport/hub, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) +"whG" = ( +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"whH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/photocopier/prebuilt, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "whJ" = ( /obj/structure/sign/departments/science/alt/directional/south, /obj/effect/turf_decal/tile/green/full, @@ -77199,10 +82157,6 @@ /obj/structure/sign/departments/genetics/directional/east, /turf/open/floor/iron/stairs/medium, /area/station/science/cytology) -"wid" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "wie" = ( /obj/structure/chair{ dir = 4 @@ -77210,6 +82164,10 @@ /obj/structure/reagent_dispensers/wall/peppertank/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/security/courtroom) +"wij" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "wik" = ( /obj/machinery/camera/autoname/directional/west, /obj/effect/turf_decal/siding/thinplating_new/dark/end{ @@ -77217,13 +82175,41 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) +"wim" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"win" = ( +/obj/machinery/plumbing/input, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "wiq" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk, /obj/machinery/airalarm/directional/north, -/turf/open/openspace/coldroom, -/area/station/medical/coldroom) +/turf/open/openspace, +/area/station/maintenance/department/medical) +"wir" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wit" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "wiv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/box, @@ -77243,11 +82229,6 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/virology, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"wiA" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "wiF" = ( /obj/effect/spawner/random/structure/crate_abandoned, /obj/effect/spawner/random/maintenance, @@ -77257,67 +82238,49 @@ "wiK" = ( /turf/open/floor/carpet/black, /area/station/service/library/private) -"wiO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "CE's Maintenance Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"wiZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/effect/landmark/start/hangover, -/turf/open/openspace, -/area/station/commons/dorms) "wji" = ( /obj/structure/chair/stool/bar/directional/west, /obj/effect/landmark/start/assistant, /turf/open/floor/carpet/orange, /area/station/commons/lounge) -"wju" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/item/mop, -/obj/item/grenade/chem_grenade/cleaner, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "wjv" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, /area/station/maintenance/port/greater) "wjw" = ( -/obj/effect/spawner/structure/window, +/obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"wjz" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) +"wjx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/flag/terragov/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"wjG" = ( +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "wjH" = ( /obj/structure/stairs/west, /obj/structure/railing{ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wjO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 8 - }, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/interior) +"wjP" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space/basic, +/area/station/solars/starboard/fore) "wjV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -77343,6 +82306,30 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"wkb" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/command/bridge) +"wkf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/mod/module/thermal_regulator, +/obj/item/mod/module/plasma_stabilizer, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) +"wkh" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"wkn" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "wko" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77355,9 +82342,6 @@ "wkt" = ( /obj/machinery/shower/directional/east, /obj/structure/curtain, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, /obj/item/soap, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) @@ -77366,24 +82350,39 @@ /obj/effect/spawner/random/engineering/canister, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"wkF" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "wkH" = ( /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"wkP" = ( -/obj/effect/turf_decal/siding{ - dir = 1 - }, +"wkW" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) +"wkX" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 1; + name = "Mix to Chamber" + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "wlc" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 8 @@ -77396,26 +82395,32 @@ /obj/structure/cable, /turf/open/floor/wood/tile, /area/station/security/detectives_office/private_investigators_office) -"wlg" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) "wlq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id = "chemshutters"; - name = "Chemistry Shutters" +/obj/structure/sign/warning/chem_diamond/directional/north, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"wlF" = ( +"wlx" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/item/storage/toolbox/fishing, +/obj/item/storage/box/lights/mixed{ + pixel_x = -8; + pixel_y = 1 + }, /obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance/two, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/obj/structure/railing{ + dir = 4 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) +"wlI" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/engineering/tank, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) "wlL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -77425,24 +82430,20 @@ /turf/open/floor/plating, /area/station/service/lawoffice) "wlM" = ( +/obj/machinery/status_display/ai/directional/south, /obj/structure/bodycontainer/morgue{ dir = 1 }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"wlV" = ( -/obj/machinery/newscaster/directional/east, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "wlY" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, /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/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "wma" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77452,6 +82453,13 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) +"wmg" = ( +/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/sorting) "wmm" = ( /obj/structure/railing{ dir = 4 @@ -77462,50 +82470,38 @@ /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) -"wmn" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/chair/sofa/corp/right{ +"wmt" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ dir = 1 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wmr" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/chief_engineer, -/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/wood, -/area/station/command/heads_quarters/ce) -"wmt" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/item/clothing/head/fedora/white, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "wmw" = ( /obj/structure/bookcase/random/reference, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/science/zoo) -"wmx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "wmy" = ( /obj/machinery/pdapainter{ pixel_y = 2 }, /obj/structure/railing, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) +"wmC" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "wmK" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, @@ -77514,13 +82510,24 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wmR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"wmS" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"wmX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "wmZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/tank_holder, @@ -77539,13 +82546,13 @@ }, /turf/open/floor/plating, /area/station/construction/mining/aux_base) -"wnn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +"wnm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 }, +/obj/machinery/suit_storage_unit/engine, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/area/station/engineering/engine_smes) "wny" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -77557,7 +82564,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wnD" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance/three, @@ -77581,12 +82588,14 @@ /turf/open/floor/wood/large, /area/station/medical/psychology) "wnY" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/openspace, -/area/station/medical/storage) +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms/room_a) "woe" = ( /obj/effect/spawner/random/trash/garbage, /obj/effect/decal/cleanable/greenglow, @@ -77600,19 +82609,13 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"woh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/sign/poster/official/work_for_a_future/directional/west, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "wom" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/internals, /obj/effect/spawner/random/maintenance, /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, -/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "wot" = ( @@ -77627,6 +82630,12 @@ /obj/structure/sign/poster/contraband/free_drone/directional/north, /turf/open/openspace, /area/station/maintenance/port/fore) +"woy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 5 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "woA" = ( /obj/structure/ladder, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77634,32 +82643,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"woG" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/item/storage/box/lights/mixed{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/stock_parts/power_store/cell/emproof{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/stock_parts/power_store/cell/emproof{ - pixel_x = -4; - pixel_y = 6 +"woN" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 }, -/obj/item/stock_parts/power_store/cell/emproof{ - pixel_x = -4; - pixel_y = 6 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/structure/sign/warning/gas_mask/directional/west, +/turf/open/floor/plating/airless, +/area/space/nearstation) "woT" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/item/kirbyplants/random, @@ -77673,15 +82666,23 @@ /turf/open/floor/plating, /area/station/service/kitchen/abandoned) "woX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"wpd" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/machinery/door/window/left/directional/south{ + req_access = list("shipping"); + name = "Chute Access" + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"wpg" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "wps" = ( /turf/open/floor/engine, /area/station/science/xenobiology) @@ -77698,22 +82699,39 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/brig) +"wpK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"wpL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"wpM" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "wpW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/red/dim/directional/north, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"wqb" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) -"wqg" = ( -/obj/structure/chair/sofa/right/brown, -/obj/machinery/newscaster/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +"wqe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/starboard) "wqi" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -77728,19 +82746,22 @@ /obj/effect/turf_decal/trimline/green/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"wqk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"wqq" = ( +/obj/machinery/stasis, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) "wqB" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sign/directions/command/directional/north{ - dir = 2 - }, -/obj/structure/sign/directions/security/directional/north{ +/obj/structure/sign/directions/medical/directional/east{ dir = 2; - pixel_y = 38 + pixel_x = 0 }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) +/turf/closed/wall, +/area/station/commons/vacant_room/office) "wqI" = ( /obj/item/cigarette/cigar{ pixel_x = 4 @@ -77751,26 +82772,38 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) "wqN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/cargo/storage) +"wqU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "wqZ" = ( /obj/machinery/door/airlock{ name = "Prison Showers" }, /turf/open/floor/iron/freezer, /area/station/security/prison/shower) -"wre" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ +"wrb" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"wrd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, -/turf/open/openspace, -/area/station/engineering/break_room) +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "wrf" = ( /obj/machinery/atmospherics/pipe/multiz/yellow/visible{ dir = 8 @@ -77780,32 +82813,35 @@ dir = 1 }, /area/station/science/ordnance/storage) +"wrn" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "wrE" = ( /turf/open/floor/glass, /area/station/hallway/secondary/entry) "wrI" = ( /obj/machinery/light/directional/north, -/obj/structure/sign/directions/vault/directional/north{ - pixel_y = 30 - }, -/obj/structure/sign/directions/evac/directional/north{ - pixel_y = 36 +/turf/open/floor/iron/edge{ + dir = 1 }, -/turf/open/floor/iron/large, /area/station/hallway/primary/central) "wrQ" = ( /turf/open/floor/iron/smooth, /area/station/engineering/main) -"wsc" = ( -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"wrT" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/upper) "wsm" = ( /obj/structure/lattice/catwalk, /obj/machinery/light/directional/east, /obj/item/wrench, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wsn" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/random/directional/west, @@ -77828,11 +82864,17 @@ }, /turf/open/floor/iron, /area/station/service/cafeteria) -"wsR" = ( -/obj/structure/table, -/obj/item/wrench, -/turf/open/floor/wood, -/area/station/commons/dorms) +"wsP" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/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, +/area/station/engineering/lobby) "wsU" = ( /obj/structure/railing{ dir = 10 @@ -77843,10 +82885,6 @@ /obj/structure/table/reinforced, /turf/open/floor/engine/hull, /area/space/nearstation) -"wtd" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/stairs/medium, -/area/station/maintenance/disposal/incinerator) "wti" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/spawner/directional/north, @@ -77867,14 +82905,7 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wtn" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "wts" = ( /obj/structure/railing/corner{ dir = 4 @@ -77887,8 +82918,9 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "wtz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "wtB" = ( /obj/structure/window/reinforced/spawner/directional/south, @@ -77900,6 +82932,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/solars/starboard/aft) +"wtD" = ( +/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/delayed{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/security/detectives_office/private_investigators_office) "wtI" = ( /obj/structure/table, /obj/item/pipe_dispenser, @@ -77925,6 +82967,13 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) +"wtN" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "wtO" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -77933,22 +82982,16 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/space/openspace, /area/space/nearstation) -"wul" = ( -/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/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "wuo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - dir = 4; - name = "decommissioned sleeper" +/obj/structure/table/wood, +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 4; + pixel_x = 4 }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/turf/open/floor/wood/large, +/area/station/medical/break_room) "wuq" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -77978,15 +83021,16 @@ /turf/open/floor/glass/reinforced, /area/station/solars/starboard/fore) "wuz" = ( -/obj/structure/railing{ +/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/brown/filled/warning{ dir = 8 }, -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/machinery/door/firedoor/border_only{ 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, /area/station/cargo/storage) "wuG" = ( @@ -78008,27 +83052,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) -"wuZ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/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/lesser) +"wuV" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "wvc" = ( /obj/structure/table/wood/poker, /obj/item/storage/dice, /turf/open/floor/carpet/stellar, /area/station/service/library) -"wve" = ( -/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/engineering/hallway) "wvi" = ( /obj/effect/turf_decal/tile/dark_green{ dir = 4 @@ -78055,21 +83088,12 @@ /turf/open/floor/iron/checker, /area/station/service/bar) "wvw" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/structure/railing, -/turf/open/floor/iron, -/area/station/cargo/storage) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "wvx" = ( /obj/structure/cable, /turf/open/floor/iron/stairs, @@ -78103,21 +83127,50 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) +"wvM" = ( +/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/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/service/library/printer) +"wvR" = ( +/obj/machinery/power/turbine/core_rotor{ + dir = 8; + mapping_id = "main_turbine" + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"wwd" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/starboard) "wwf" = ( -/obj/machinery/computer/communications, /obj/effect/turf_decal/siding/blue{ dir = 1 }, /obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) -"wwj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "wwl" = ( /obj/structure/railing/corner{ dir = 8 @@ -78137,16 +83190,33 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/station/security/detectives_office) -"www" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +"wwn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"wwt" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "wwx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "wwz" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -78178,7 +83248,7 @@ }, /obj/structure/table/reinforced, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wwG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/optable, @@ -78204,10 +83274,13 @@ /turf/open/floor/wood, /area/station/security/courtroom) "wxb" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/firealarm/directional/west, -/turf/open/openspace, -/area/station/medical/cryo) +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant10, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) "wxk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -78215,16 +83288,37 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"wxq" = ( -/obj/effect/landmark/event_spawn, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "wxx" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/vacant_room/office) +"wxy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -2 + }, +/obj/structure/rack, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"wxE" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/textured_half, +/area/station/medical/surgery) "wxH" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -78240,33 +83334,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/security/brig) -"wxU" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"wyc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/structure/holosign/barrier/engineering, -/turf/open/openspace, -/area/station/engineering/atmos/project) "wyj" = ( /obj/item/cigbutt, /turf/open/floor/engine/hull, /area/space/nearstation) +"wyl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/upper) "wyq" = ( /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, @@ -78279,23 +83356,53 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) +"wyv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) "wyx" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, -/obj/structure/railing/corner/end{ - dir = 8 +/obj/item/radio/intercom/directional/east, +/obj/structure/rack, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades{ + pixel_y = 1 + }, +/obj/item/book/manual/wiki/plumbing{ + pixel_x = 4; + pixel_y = -2 }, -/obj/machinery/light/directional/east, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"wyF" = ( -/obj/structure/flora/tree/palm/style_random, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +"wyA" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_y = 10 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"wyV" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"wzi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "wzj" = ( /turf/closed/wall/r_wall, /area/station/tcommsat/server) @@ -78305,18 +83412,9 @@ /turf/open/floor/plating, /area/station/security/execution/education) "wzp" = ( -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, /obj/effect/landmark/start/chemist, -/turf/open/floor/iron/dark, +/turf/open/floor/glass/reinforced, /area/station/medical/chemistry) -"wzr" = ( -/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/break_room) "wzs" = ( /obj/structure/rack, /obj/item/storage/box/lights/mixed, @@ -78331,14 +83429,6 @@ dir = 1 }, /area/station/hallway/secondary/entry) -"wzB" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron, -/area/station/engineering/main) -"wzM" = ( -/obj/machinery/recharge_station, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) "wzO" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -78348,11 +83438,13 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "wzS" = ( -/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/command/meeting_room/council) +/obj/structure/table/reinforced/rglass, +/obj/machinery/keycard_auth{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "wzT" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, @@ -78384,7 +83476,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wAx" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -78399,15 +83491,6 @@ /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"wAO" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/storage/toolbox/mechanical/old, -/obj/item/sticker/syndicate{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) "wAQ" = ( /obj/machinery/door/airlock/public/glass{ name = "Circle Center" @@ -78434,11 +83517,10 @@ /obj/effect/turf_decal/siding/red/corner, /turf/open/floor/engine, /area/station/engineering/supermatter) -"wAW" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/condiment, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +"wAV" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "wAZ" = ( /obj/machinery/light/directional/west, /obj/structure/cable, @@ -78448,6 +83530,11 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"wBd" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname/directional/west, +/turf/open/openspace, +/area/station/commons/dorms) "wBu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -78457,18 +83544,14 @@ /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/structure/chair/plastic{ dir = 1 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "wBJ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -78476,11 +83559,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/medical) -"wBK" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "wBO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -78502,6 +83580,24 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"wBT" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"wBY" = ( +/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/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "wCa" = ( /obj/effect/turf_decal/arrows/white{ color = "#F7F707"; @@ -78512,47 +83608,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"wCj" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner{ - dir = 4 - }, -/obj/structure/fluff/paper/stack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wCm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"wCn" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/box{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/openspace, -/area/station/engineering/break_room) -"wCr" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech 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/mapping_helpers/airlock/access/all/engineering/tech_storage, -/obj/effect/landmark/navigate_destination/techstorage, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "wCv" = ( /obj/structure/table, /obj/item/storage/box{ @@ -78569,39 +83624,34 @@ /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) "wCP" = ( -/obj/effect/turf_decal/siding/white{ - dir = 6 +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/flasher/directional/east{ + id = "hopflash" + }, +/obj/effect/turf_decal/arrows{ + 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/smooth_large, /area/station/hallway/primary/central) "wCZ" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/south, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wDf" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/area/station/ai/satellite/interior) +"wDp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "wDs" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/rack, /obj/item/clothing/gloves/latex, /turf/open/floor/iron/dark, -/area/station/science/lobby) -"wDt" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/area/station/science/lobby) "wDu" = ( /obj/machinery/light/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -78615,12 +83665,27 @@ }, /turf/open/floor/wood/large, /area/station/medical/psychology) -"wDQ" = ( -/obj/structure/chair/office{ - dir = 8 +"wDz" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) +"wDK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/wood, -/area/station/commons/dorms) +/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/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wDX" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "wDY" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/machinery/door/airlock/public/glass{ @@ -78643,13 +83708,19 @@ /obj/machinery/telecomms/processor/preset_four, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"wEn" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin2"; - name = "Decomissioned Cabin" +"wEg" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner, +/obj/structure/fluff/paper/stack, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/structure/fluff/paper/stack{ + desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; + dir = 1 }, /turf/open/floor/plating, -/area/station/commons/dorms) +/area/station/maintenance/aft) "wEt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate_loot, @@ -78663,20 +83734,54 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/checkpoint/science) +"wEK" = ( +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "wEN" = ( /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) "wER" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/wood/parquet, -/area/station/medical/break_room) +/obj/machinery/button/door/directional/east{ + id = "rear_surgery"; + name = "Rear Shutters Control"; + req_access = list("surgery") + }, +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/medical/surgery) +"wES" = ( +/obj/effect/spawner/random/decoration/showcase, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wEU" = ( +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "wEX" = ( /obj/structure/sign/poster/contraband/hacking_guide/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"wFc" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "wFf" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -78688,12 +83793,19 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) -"wFj" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/reagent_containers/cup/soda_cans/pwr_game, -/obj/item/radio/intercom/directional/north, +"wFi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/pen/red{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/wood, -/area/station/commons/dorms) +/area/station/maintenance/aft) "wFk" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -78711,6 +83823,9 @@ "wFl" = ( /turf/open/floor/engine/n2, /area/station/engineering/atmos/upper) +"wFm" = ( +/turf/closed/wall, +/area/station/solars/starboard/fore) "wFt" = ( /obj/structure/showcase/mecha/marauder, /turf/open/floor/iron/dark, @@ -78751,21 +83866,10 @@ }, /obj/machinery/door/firedoor, /obj/effect/landmark/navigate_destination/court, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/security/courtroom) -"wGi" = ( -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "wGD" = ( /obj/effect/turf_decal/trimline/purple/arrow_cw{ dir = 8 @@ -78780,7 +83884,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wGN" = ( /obj/machinery/light/warm/dim/directional/south, /obj/item/kirbyplants/potty, @@ -78790,6 +83894,10 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) +"wGP" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "wGS" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -78810,12 +83918,37 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"wHd" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) "wHp" = ( /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/starboard) +"wHw" = ( +/obj/machinery/door/airlock/mining{ + name = "Deliveries" + }, +/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/brown/fourcorners, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/supply/shipping, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den, +/turf/open/floor/iron, +/area/station/cargo/sorting) "wHx" = ( /obj/machinery/camera/directional/east, /turf/open/openspace, @@ -78826,6 +83959,23 @@ }, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"wHz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) +"wHB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/engineering/engine_smes) "wHE" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 @@ -78834,7 +83984,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wHK" = ( /turf/open/floor/engine/hull/reinforced/air, /area/station/maintenance/port) @@ -78856,26 +84006,32 @@ "wIf" = ( /obj/machinery/button/door/directional/east{ id = "qm_cargobay"; - name = "Cargo Bay Door Control"; - pixel_x = -24 + name = "Cargo Bay Inner Shutters"; + pixel_x = -24; + dir = 8 }, /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 }, -/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) -"wIg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +"wIi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"wIl" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"wIo" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin4"; + name = "Cabin 5" + }, +/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/dark/textured_large, +/area/station/commons/dorms) "wIw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -78884,19 +84040,10 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"wIK" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/station/commons/dorms) -"wIS" = ( -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"wIW" = ( -/obj/structure/ladder, +"wIN" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/department/crew_quarters/dorms) "wJn" = ( /obj/machinery/door/airlock/command{ name = "E.V.A. Storage" @@ -78904,8 +84051,9 @@ /obj/effect/mapping_helpers/airlock/access/all/command/eva, /obj/effect/landmark/navigate_destination/eva, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wJs" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -78920,12 +84068,6 @@ /obj/machinery/holopad, /turf/open/floor/wood, /area/station/service/chapel) -"wJF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/light/directional/south, -/obj/structure/tank_dispenser, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) "wJI" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ @@ -78936,19 +84078,31 @@ network = list("aicore") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"wJJ" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"wJU" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) +/area/station/ai/satellite/chamber) +"wJV" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "wKb" = ( /turf/closed/wall, /area/station/maintenance/starboard/aft) +"wKe" = ( +/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/yjunction{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "wKg" = ( /obj/structure/railing/corner{ dir = 8 @@ -78958,13 +84112,42 @@ "wKi" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "wKl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/station/maintenance/starboard/aft) +"wKr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/clothing/gloves/color/blue{ + desc = "An old pair of nitrile gloves, with no sterile properties."; + name = "old nitrile gloves" + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"wKx" = ( +/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/catwalk_floor, +/area/station/maintenance/starboard/fore) +"wKC" = ( +/obj/structure/reagent_dispensers/plumbed, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) "wKD" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -78976,53 +84159,28 @@ }, /turf/open/floor/iron/dark, /area/station/security/range) -"wKI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "wKR" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/carpet, /area/station/service/chapel) -"wKV" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +"wKS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "wLc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/command/corporate_showroom) -"wLe" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"wLf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/storage/box/lights/mixed{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wLg" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) +"wLi" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) +"wLm" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "wLv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -79061,20 +84219,21 @@ /turf/open/floor/engine/hull, /area/space/nearstation) "wLV" = ( -/obj/machinery/button/door/directional/west{ - id = "hosprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 8; - pixel_y = 25 - }, /obj/machinery/holopad/secure, /obj/machinery/keycard_auth/wall_mounted/directional/north{ pixel_x = -6 }, +/obj/machinery/button/door/directional/north{ + pixel_x = 7; + name = "Privacy Shutters Control"; + id = "hosprivacy" + }, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) "wMc" = ( /obj/effect/turf_decal/trimline/red/filled/warning, +/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) "wMn" = ( @@ -79092,11 +84251,11 @@ }, /turf/open/floor/iron/large, /area/station/hallway/primary/central) -"wMu" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) +"wMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "wMD" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/clown/directional/south, @@ -79116,22 +84275,37 @@ /obj/machinery/vending/snack/blue, /turf/open/floor/iron, /area/station/construction/storage_wing) +"wMO" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 1 + }, +/obj/machinery/meter{ + name = "C02 meter" + }, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "CO2 Multideck Adapter"; + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "wMS" = ( /obj/item/kirbyplants/random, /obj/machinery/firealarm/directional/east, /obj/machinery/airalarm/directional/north, /turf/open/floor/wood, /area/station/security/courtroom) -"wMZ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +"wMX" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ dir = 1 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/obj/structure/table/wood, +/obj/effect/spawner/random/medical/medkit, +/obj/item/clothing/neck/stethoscope{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/holofloor/dark, +/area/station/command/heads_quarters/cmo) "wNi" = ( /obj/effect/spawner/random/vending/colavend, /obj/structure/disposalpipe/segment{ @@ -79146,6 +84320,10 @@ /obj/structure/cable, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) +"wNp" = ( +/obj/item/binoculars, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "wNq" = ( /obj/structure/cable, /obj/machinery/computer/records/security{ @@ -79166,27 +84344,47 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) "wNw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/camera/autoname/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/gun/energy/recharge/kinetic_accelerator{ + name = "the QM's Accelerator"; + pixel_y = 6 + }, +/obj/item/clothing/head/fedora/white, +/obj/effect/turf_decal/siding/dark/end, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) "wNC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/item/radio/intercom/directional/east, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, /area/station/science/server) +"wNJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) "wNL" = ( /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/commons/storage/tools) +"wNN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) "wNO" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance) +"wNR" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "wOb" = ( /obj/structure/table/wood/fancy, /obj/effect/spawner/random/decoration/statue{ @@ -79217,18 +84415,12 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "wOx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/station/maintenance/starboard/aft) -"wOG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "wOK" = ( -/obj/machinery/light/small/directional/east, /obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured_large, @@ -79245,33 +84437,42 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/lab) -"wOR" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/rack, -/obj/item/encryptionkey/headset_sci{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/encryptionkey/headset_med, -/obj/item/encryptionkey/headset_eng{ - pixel_x = 6; - pixel_y = -1 +"wPf" = ( +/obj/effect/turf_decal/trimline/blue/filled/end, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 8 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"wPf" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white/textured, -/area/station/medical/surgery) +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"wPj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron, +/area/station/engineering/lobby) "wPl" = ( /obj/effect/decal/cleanable/blood/oil/slippery, /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) +"wPp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"wPt" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) "wPG" = ( /turf/open/floor/carpet/black, /area/station/service/theater) @@ -79279,17 +84480,9 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"wPP" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "wPV" = ( /turf/closed/wall, /area/station/security/detectives_office/private_investigators_office) -"wPX" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/maintenance/port) "wQc" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -79299,7 +84492,9 @@ }, /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/dark/smooth_large, /area/station/medical/pharmacy) "wQh" = ( @@ -79320,6 +84515,20 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"wQt" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wQu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) "wQw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, @@ -79344,6 +84553,11 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) +"wQA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard) "wQD" = ( /obj/machinery/light/small/directional/east, /obj/item/solar_assembly, @@ -79368,10 +84582,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/solars/starboard/aft) -"wQH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) "wQS" = ( /obj/structure/railing, /obj/effect/turf_decal/siding/thinplating, @@ -79391,14 +84601,11 @@ }, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"wRi" = ( +"wRb" = ( /obj/effect/turf_decal/siding/wood, -/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/wood/tile, -/area/station/security/detectives_office/private_investigators_office) +/obj/machinery/holopad, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "wRj" = ( /obj/item/storage/fancy/cigarettes/cigpack_shadyjims, /obj/structure/rack, @@ -79442,6 +84649,31 @@ /obj/structure/cable, /turf/open/floor/iron/grimy, /area/station/security/interrogation) +"wRL" = ( +/obj/structure/table/reinforced, +/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/trash/can{ + pixel_x = -8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"wRQ" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"wRT" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "wSa" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -79449,12 +84681,25 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wSj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet, /area/station/service/abandoned_gambling_den) +"wSn" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/effect/landmark/navigate_destination/dorms, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) "wSs" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/iron/smooth, @@ -79473,6 +84718,14 @@ }, /turf/open/floor/iron, /area/station/science/research) +"wSD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/chair, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "wSP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/autoname/directional/north, @@ -79481,10 +84734,6 @@ }, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"wSW" = ( -/obj/structure/bonfire/prelit, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "wSZ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -79499,31 +84748,12 @@ /turf/open/floor/plating, /area/station/maintenance/port) "wTn" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" +/obj/machinery/computer/cargo/request{ + dir = 1 }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /turf/open/floor/iron, -/area/station/cargo/storage) -"wTr" = ( -/obj/structure/railing, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -12; - pixel_y = 7 - }, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/structure/cable, -/turf/open/floor/wood/large, -/area/station/service/library/private) +/area/station/hallway/primary/starboard) "wTx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -79531,13 +84761,39 @@ /obj/structure/disposalpipe/junction/flip{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) +"wTE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/machinery/requests_console/directional/west{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) "wTJ" = ( /obj/structure/railing, /obj/structure/lattice, /turf/open/openspace, /area/station/maintenance/port/aft) +"wTP" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/structure/closet/secure_closet/medical3, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "wTR" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -79551,8 +84807,14 @@ /area/station/security/office) "wTU" = ( /obj/structure/chair/comfy/brown, -/obj/structure/cable, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = -5 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "wUb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ @@ -79561,29 +84823,25 @@ /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) +"wUh" = ( +/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/airless, +/area/station/maintenance/starboard/aft) "wUk" = ( /obj/structure/ladder, /turf/open/floor/engine/hull, /area/space/nearstation) -"wUm" = ( -/obj/effect/spawner/random/structure/chair_flipped{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) "wUu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /obj/structure/grille/broken, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"wUI" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "wVd" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, @@ -79591,6 +84849,19 @@ "wVf" = ( /turf/closed/wall, /area/station/security/prison/rec) +"wVh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"wVu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "wVx" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -79636,13 +84907,41 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"wVX" = ( -/obj/structure/railing{ +"wVP" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Testing Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"wVY" = ( +/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/airless, +/area/station/maintenance/aft) +"wWg" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"wWi" = ( +/obj/effect/turf_decal/stripes/red/end, +/obj/effect/turf_decal/siding/red/end, +/turf/open/floor/iron/textured_corner{ dir = 1 }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/break_room) +/area/station/command/gateway) +"wWk" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "wWm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, @@ -79657,6 +84956,9 @@ /area/station/service/cafeteria) "wWy" = ( /obj/machinery/camera/autoname/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/iron, /area/station/hallway/primary/aft) "wWA" = ( @@ -79672,6 +84974,14 @@ }, /turf/open/floor/carpet, /area/station/service/lawoffice) +"wWM" = ( +/obj/effect/spawner/random/techstorage/command_all, +/obj/structure/rack, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "wWO" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input, /turf/open/floor/engine/n2, @@ -79684,14 +84994,14 @@ /turf/open/floor/iron/white/smooth_large, /area/station/hallway/secondary/entry) "wWV" = ( -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/obj/effect/turf_decal/arrows{ - dir = 8 +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "Privacy Shutters" }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) "wWX" = ( /obj/structure/railing/corner{ dir = 1 @@ -79731,6 +85041,14 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"wXj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "wXk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/smooth_large, @@ -79777,35 +85095,42 @@ /area/station/maintenance/hallway/abandoned_recreation) "wXL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_corner{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "wXM" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 + dir = 1 }, -/obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/storage) -"wXU" = ( -/obj/item/bedsheet/captain, -/obj/structure/bed, -/obj/effect/landmark/start/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"wXW" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 +"wXQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible, +/obj/machinery/meter{ + name = "Mix Meter" }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/turf/open/floor/iron/smooth, +/turf/open/floor/iron/dark, /area/station/engineering/atmos/upper) +"wXU" = ( +/obj/machinery/newscaster/directional/south, +/obj/machinery/suit_storage_unit/captain, +/obj/item/mod/module/longfall{ + pixel_x = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"wYb" = ( +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "wYk" = ( /obj/effect/turf_decal/siding/dark/end{ dir = 8 @@ -79826,6 +85151,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"wYy" = ( +/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/medical/cmo, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) "wYz" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/floor/engine/hull/air, @@ -79846,17 +85182,18 @@ /turf/open/openspace, /area/station/maintenance/port/aft) "wYH" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 4 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "wYJ" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/wood, @@ -79870,10 +85207,9 @@ /area/station/commons/lounge) "wYS" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/area/station/cargo/storage) "wYU" = ( /obj/item/radio/intercom/directional/south, /obj/effect/turf_decal/siding/thinplating_new/dark, @@ -79882,15 +85218,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"wZb" = ( -/obj/effect/turf_decal/stripes/line{ +"wYX" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "wZg" = ( /obj/structure/toilet{ dir = 8; @@ -79916,23 +85251,24 @@ /obj/machinery/light/directional/north, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"wZk" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"wZn" = ( +/obj/machinery/light/directional/east, +/turf/open/openspace, +/area/station/ai/upload/chamber) "wZy" = ( /obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"wZA" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/turf/open/floor/iron/edge{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/central) "wZE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -79955,11 +85291,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/freezer, /area/station/commons/toilet/auxiliary) -"xah" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/aft) +"xae" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/indigo, +/turf/open/space/basic, +/area/space/nearstation) "xaj" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -79977,7 +85313,10 @@ /area/station/commons/toilet/restrooms) "xar" = ( /obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark/textured_large, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "xat" = ( /obj/effect/turf_decal/trimline/blue/filled/line, @@ -79995,47 +85334,38 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"xau" = ( +/obj/machinery/light/warm/dim/directional/east, +/obj/structure/table, +/obj/item/clothing/gloves/cargo_gauntlet, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 3 + }, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "xaz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron, /area/station/hallway/secondary/construction) "xaH" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/turf/open/floor/wood, +/obj/structure/bed/medical/emergency, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"xaP" = ( -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/stamp{ - pixel_x = -7; - pixel_y = 2 - }, -/turf/open/floor/wood/large, -/area/station/service/library/private) "xaQ" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/maintenance, /turf/open/floor/carpet/stellar, /area/station/maintenance/hallway/abandoned_recreation) -"xaT" = ( -/obj/structure/lattice, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "xaU" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/glass/reinforced, @@ -80048,18 +85378,16 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison/mess) +"xba" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/virology) "xbm" = ( /obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/construction) -"xbz" = ( -/obj/structure/chair/sofa/left/brown{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/wood, -/area/station/commons/dorms) "xbF" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ @@ -80067,21 +85395,9 @@ }, /turf/open/space/basic, /area/space/nearstation) -"xbI" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Oxygen Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos/upper) "xbL" = ( /turf/open/floor/iron/dark, /area/station/service/chapel) -"xbP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) "xbR" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -80093,16 +85409,20 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xbZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/ladder, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xce" = ( -/obj/machinery/light/warm/dim/directional/west, -/turf/open/openspace, -/area/station/hallway/primary/central) +"xca" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/arrow_ccw{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4; + pixel_y = -2 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "xci" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, @@ -80116,17 +85436,15 @@ /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"xcq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/smooth, +/area/station/science/robotics) "xcx" = ( /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/interrogation) -"xcR" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/computer/atmos_control/nitrogen_tank, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "xcT" = ( /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -80135,19 +85453,12 @@ /obj/structure/closet/secure_closet/evidence, /turf/open/floor/iron/dark, /area/station/security/evidence) -"xcV" = ( -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +"xcZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible, +/obj/machinery/light/directional/south, +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xda" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -80185,13 +85496,16 @@ /area/station/service/hydroponics) "xdG" = ( /obj/structure/cable, -/obj/effect/turf_decal/tile/green/opposingcorners{ - 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/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xdK" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 6 @@ -80199,6 +85513,20 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"xdS" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/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/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmoslowersm" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "xdT" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/vending/coffee, @@ -80206,30 +85534,20 @@ /turf/open/floor/iron, /area/station/science/lab) "xdU" = ( -/obj/structure/railing/corner, -/obj/structure/table/glass, -/obj/item/assembly/flash/handheld{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/cigarette/cigar{ - pixel_x = -6; - pixel_y = 5 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 }, -/obj/effect/turf_decal/tile/red{ - dir = 1 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xdV" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/lounge) -"xdZ" = ( -/obj/structure/bed, -/obj/item/bedsheet/ce, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "xeb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -80244,14 +85562,38 @@ /obj/item/pai_card{ pixel_y = 5 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"xej" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) "xes" = ( /obj/structure/lattice/catwalk, -/obj/machinery/recharge_station, /obj/machinery/light/directional/west, /turf/open/openspace, -/area/station/medical/storage) +/area/station/medical/medbay/central) +"xex" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) +"xeD" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/bed/dogbed/runtime, +/obj/item/toy/cattoy, +/mob/living/basic/pet/cat/runtime, +/obj/machinery/light/small/dim/directional/north, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/cmo) "xeM" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -80259,20 +85601,13 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "xeN" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/button/door/directional/east{ - id = "cargounload"; - name = "Loading Doors"; - pixel_y = 6 +/obj/machinery/conveyor{ + dir = 5; + id = "cargoload" }, -/obj/machinery/button/door/directional/east{ - id = "cargoload"; - name = "Loading Doors"; - pixel_y = -6 +/obj/effect/turf_decal/stripes/end{ + dir = 8 }, -/obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) "xeQ" = ( @@ -80298,26 +85633,21 @@ /obj/structure/chair/office, /turf/open/floor/iron/dark/smooth_large, /area/station/tcommsat/server) -"xfa" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, +"xeY" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"xfj" = ( -/obj/structure/railing{ - dir = 4 +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) +"xfi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/engineering/lobby) +/area/station/maintenance/starboard/aft/upper) "xfn" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -80328,30 +85658,38 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"xfq" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"xfr" = ( -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - name = "decommissioned sleeper" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct/directional/east{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "xfs" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"xfy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/lobby) +"xfQ" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -6; + pixel_y = 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/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "xfV" = ( /obj/structure/railing/corner{ dir = 8 @@ -80364,19 +85702,9 @@ dir = 1 }, /obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/light/floor, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"xfX" = ( -/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/engineering/lobby) -"xgb" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/cup/soda_cans/monkey_energy, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "xgC" = ( /obj/machinery/light_switch{ pixel_x = -9; @@ -80390,7 +85718,41 @@ name = "Unit 2" }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"xgK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured, +/area/station/commons/dorms) +"xgP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/elevator/directional/east{ + id = "catwalk_atmos"; + name = "Elevator Button" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"xgR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) +"xgT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "xgV" = ( /obj/effect/turf_decal/tile/blue/full, /obj/effect/turf_decal/tile/dark/full, @@ -80409,11 +85771,12 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"xhr" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +"xhv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/closet/emcloset, +/obj/effect/spawner/random/maintenance, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "xhF" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark/textured_corner{ @@ -80442,35 +85805,61 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"xhV" = ( +/obj/item/melee/flyswatter{ + pixel_x = -2 + }, +/obj/item/toy/plush/lizard_plushie/green{ + name = "Steals-The-Cheese"; + pixel_x = 8; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/dark_green/opposingcorners, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/lizard/directional/west, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "xhX" = ( /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/service/abandoned_gambling_den) -"xib" = ( -/obj/structure/lattice/catwalk, -/obj/item/toy/plush/lizard_plushie/green{ - name = "Hides-In-Rafters" +"xif" = ( +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) +"xig" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/dark, +/area/station/medical/cryo) "xit" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, /obj/structure/sign/departments/telecomms/directional/south, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xiy" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; + dir = 8 }, -/turf/open/floor/iron, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/station/cargo/sorting) "xiQ" = ( -/obj/effect/turf_decal/tile/red/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xiR" = ( /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/plating, @@ -80496,10 +85885,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/circuit/red, /area/station/maintenance/hallway/abandoned_recreation) -"xjc" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/science/explab) "xjm" = ( /obj/item/vending_refill/donksnackvendor{ pixel_y = 15 @@ -80518,44 +85903,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xjq" = ( -/obj/structure/table/reinforced, -/obj/item/rcl/pre_loaded{ - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/ce) "xjr" = ( -/obj/machinery/modular_computer/preset/id{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/secure_safe/caps_spare{ - pixel_x = 35 +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 }, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xjz" = ( /turf/open/floor/plating/elevatorshaft, /area/station/science/robotics) -"xjK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"xjL" = ( -/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 = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "xjR" = ( /obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80583,15 +85943,39 @@ }, /turf/open/floor/iron/dark, /area/station/science/cytology) +"xkc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/engineering/atmos/office) "xkn" = ( /obj/structure/railing/corner, /obj/structure/cable, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "xky" = ( -/obj/structure/chair, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/cargo/storage) +"xkG" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"xkJ" = ( +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "xkL" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -80609,15 +85993,10 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) "xkV" = ( -/obj/machinery/camera/motion{ - c_tag = "Armory - Internal"; - dir = 8 - }, -/obj/effect/turf_decal/caution{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/rd) "xkZ" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -80643,6 +86022,12 @@ }, /turf/open/openspace, /area/station/hallway/primary/central) +"xlt" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "xlw" = ( /obj/structure/bed/dogbed{ name = "spider bed" @@ -80651,13 +86036,6 @@ /obj/structure/flora/bush/flowers_br, /turf/open/floor/grass, /area/station/command/heads_quarters/hos) -"xlH" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/machinery/shower/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "xlL" = ( /obj/effect/turf_decal/delivery, /obj/machinery/vending/coffee, @@ -80669,15 +86047,6 @@ /obj/structure/broken_flooring/corner/always_floorplane/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"xmd" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "SM_shutters"; - name = "Supermatter Radiation Shutters" - }, -/obj/machinery/atmospherics/components/binary/pump/off/cyan/visible, -/obj/effect/turf_decal/trimline/blue, -/turf/open/floor/plating, -/area/station/engineering/supermatter) "xme" = ( /obj/structure/flora/bush/large/style_2, /obj/structure/flora/rock/pile/style_2, @@ -80704,10 +86073,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/brig) -"xmq" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) "xms" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -80721,15 +86086,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"xmx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "xmA" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/camera/autoname/directional/south, @@ -80745,12 +86101,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"xmQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "xne" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -80789,6 +86139,14 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"xnL" = ( +/obj/structure/cable, +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "xnP" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 8 @@ -80819,12 +86177,6 @@ dir = 4 }, /area/station/service/chapel) -"xoh" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/engine, -/area/station/engineering/break_room) "xol" = ( /obj/effect/turf_decal/delivery, /obj/machinery/airalarm/directional/north, @@ -80854,28 +86206,23 @@ /obj/effect/turf_decal/trimline/purple/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"xoH" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/light_switch/directional/north, -/turf/open/openspace, -/area/station/engineering/break_room) "xoT" = ( /obj/structure/barricade/wooden, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"xoZ" = ( -/obj/effect/turf_decal/siding{ +"xpd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ dir = 1 }, -/obj/effect/turf_decal/trimline/white/corner{ - dir = 8 +/obj/structure/railing{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xpj" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -80889,42 +86236,20 @@ /obj/structure/closet/secure_closet/security/sec, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) +"xpo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xpq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"xpr" = ( -/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/dark, -/area/station/engineering/atmos/project) -"xpv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "xpw" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/entry) -"xpF" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "xpV" = ( /obj/effect/landmark/start/bartender, /obj/effect/turf_decal/tile/dark_green{ @@ -80964,20 +86289,10 @@ dir = 8 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 6 }, /turf/open/floor/iron/dark, /area/station/science/lobby) -"xqm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 6 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/openspace, -/area/station/engineering/lobby) "xqo" = ( /obj/effect/decal/cleanable/ash{ beauty = 50; @@ -80993,32 +86308,13 @@ "xqs" = ( /turf/closed/wall/r_wall, /area/station/engineering/engine_smes) -"xqy" = ( -/obj/structure/stairs/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xqE" = ( -/obj/machinery/camera/autoname/directional/south, +"xqD" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 + dir = 1 }, -/obj/machinery/door/firedoor/heavy, -/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/engine, -/area/station/engineering/supermatter/room) -"xqG" = ( -/obj/structure/sign/poster/contraband/communist_state/directional/south, -/obj/item/ammo_casing/spent{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/medical/chemistry) "xqK" = ( /obj/structure/table, /obj/item/instrument/harmonica, @@ -81030,28 +86326,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"xqL" = ( -/obj/effect/turf_decal/siding/blue/corner, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ +"xqR" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/plumbing/receiver{ dir = 1 }, -/obj/structure/table/glass, -/obj/item/reagent_containers/chem_pack{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/syringe{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) "xqU" = ( /obj/machinery/smartfridge/petri/preloaded, /obj/effect/turf_decal/tile/dark_blue{ @@ -81097,6 +86383,18 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/station/hallway/primary/central) +"xrw" = ( +/obj/item/stack/sheet/iron{ + amount = 34 + }, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "xrx" = ( /obj/structure/lattice/catwalk, /turf/open/space/openspace, @@ -81135,23 +86433,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"xrJ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"xrM" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/red/corner, -/obj/machinery/airalarm/directional/west, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/hallway/primary/port) +"xrI" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/engine_smes) "xrP" = ( /obj/structure/lattice/catwalk, /obj/structure/table/reinforced, @@ -81160,13 +86447,19 @@ }, /turf/open/openspace, /area/station/security/checkpoint/customs) +"xrU" = ( +/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/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "xrX" = ( /obj/machinery/light/directional/west, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","medbay"); - c_tag = "Medbay - Lower Hallway North" +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/turf/open/floor/iron/white/textured_large, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/iron/white, /area/station/medical/medbay/central) "xsh" = ( /obj/effect/turf_decal/siding/blue{ @@ -81183,6 +86476,23 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/cytology) +"xsq" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation) +"xst" = ( +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) "xsv" = ( /obj/machinery/light/cold/directional/south, /turf/open/floor/engine, @@ -81193,22 +86503,29 @@ /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "xsD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Primary Surgical Theatre" - }, -/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, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"xsF" = ( +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "catwalk_engi" + }, +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "xsJ" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -81223,40 +86540,69 @@ }, /turf/open/floor/iron, /area/station/science/explab) +"xsK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "N2O to Mix" + }, +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xsS" = ( /turf/closed/wall/r_wall, /area/station/engineering/transit_tube) "xsU" = ( -/obj/structure/railing{ - dir = 9 +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" }, -/turf/open/openspace, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, /area/station/cargo/storage) "xta" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"xtf" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/sign/directions/engineering/directional/east{ - dir = 1 +"xts" = ( +/obj/structure/closet/crate/bin, +/obj/structure/sign/poster/official/random/directional/south, +/obj/machinery/button/door/directional/east{ + id = "Cabin5"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"xtA" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xtC" = ( -/obj/structure/chair{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/machinery/light/floor, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"xtE" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 }, +/obj/effect/landmark/start/depsec/engineering, /turf/open/floor/iron/dark, -/area/station/hallway/primary/central) +/area/station/security/checkpoint/engineering) "xtG" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -81269,45 +86615,57 @@ }, /turf/open/floor/iron/dark/textured, /area/station/engineering/supermatter/room) +"xtS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/space/basic, +/area/station/maintenance/solars/port/aft) +"xtW" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/east, +/turf/open/space/openspace, +/area/space/nearstation) "xut" = ( /turf/closed/wall, /area/station/service/abandoned_gambling_den) -"xuu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) -"xuy" = ( -/obj/effect/spawner/random/trash/hobo_squat, +"xuz" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "chemshutters"; + name = "Pharmacy Shutters" + }, +/obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xuB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/medical/pharmacy) "xuF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"xuM" = ( +/obj/structure/cable, +/obj/machinery/requests_console/directional/south{ + department = "Engineering"; + name = "Engineering Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 8 + }, +/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/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "xuP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) -"xuQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/turf/open/floor/wood/large, -/area/station/medical/psychology) -"xuU" = ( -/obj/machinery/door/airlock{ - name = "Abandoned Chapel" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "xuV" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -81341,18 +86699,33 @@ dir = 4 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"xvv" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/chamber) "xvw" = ( -/obj/machinery/door/window/right/directional/east{ - name = "Captain's Desk"; - req_access = list("captain") +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/turf/open/floor/wood, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/melee/chainofcommand{ + pixel_y = -12 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/stamp/head/captain{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "xvy" = ( /obj/structure/table, @@ -81364,43 +86737,41 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "xvA" = ( -/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 +/obj/effect/turf_decal/siding/blue/end{ + dir = 8 }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/shower/directional/west, +/turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/central) -"xvD" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "xvN" = ( /obj/item/radio/intercom/directional/west, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) -"xvQ" = ( -/obj/structure/chair/office, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "xwg" = ( /obj/structure/railing/corner/end, /obj/machinery/light/cold/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) +"xwk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/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) "xwn" = ( /obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/engine/hull, /area/space/nearstation) -"xwu" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "xwB" = ( /obj/structure/fake_stairs/directional/east, /obj/structure/railing, @@ -81411,15 +86782,6 @@ }, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"xwC" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) "xwF" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, @@ -81442,22 +86804,56 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/fore) -"xxd" = ( -/obj/effect/turf_decal/tile/dark_green{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) "xxe" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/openspace, /area/station/hallway/primary/fore) +"xxh" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"xxr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) +"xxs" = ( +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "xxz" = ( -/turf/open/floor/engine/hull/air, +/obj/structure/sign/warning/gas_mask/directional/west, +/obj/structure/table/reinforced/plasmarglass, +/obj/machinery/reagentgrinder{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/folder/white{ + pixel_x = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, /area/station/medical/chemistry) +"xxE" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xxF" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 4 @@ -81483,20 +86879,51 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xyz" = ( -/turf/open/openspace, -/area/station/medical/virology) -"xyC" = ( -/obj/structure/railing/corner{ +"xym" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/machinery/door/airlock/medical{ - name = "Medbay Storage" +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"xyn" = ( +/obj/machinery/turretid{ + control_area = "/area/station/ai/upload/chamber"; + name = "AI Upload Turret Control" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/storage) +/turf/closed/wall/r_wall, +/area/station/ai/upload/foyer) +"xyt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/spawner/random/engineering/vending_restock/common, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"xyz" = ( +/turf/open/openspace, +/area/station/medical/virology) +"xyA" = ( +/obj/effect/spawner/random/food_or_drink/snack, +/obj/structure/table, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/glass, +/area/station/medical/patients_rooms/room_a) +"xyD" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "xyF" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) @@ -81507,28 +86934,27 @@ }, /turf/open/space/basic, /area/space/nearstation) -"xyX" = ( -/obj/structure/table, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"xzm" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xzo" = ( -/obj/machinery/door/airlock/maintenance, +"xzl" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/spawner/random/structure/crate, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) +"xzn" = ( +/obj/machinery/light/red/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"xzr" = ( +/obj/structure/table/wood, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "xzy" = ( /turf/closed/wall, /area/station/science/genetics) @@ -81562,13 +86988,37 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/hallway/secondary/service) +"xAm" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/airlock_painter, +/obj/item/storage/belt/utility, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/gloves/color/fyellow, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "xAn" = ( /obj/machinery/shower/directional/west, /obj/effect/turf_decal/trimline/blue/end{ dir = 8 }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"xAr" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 4; + name = "Mix to Recycle" + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xAs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /obj/machinery/door/window/brigdoor/left/directional/north{ @@ -81587,12 +87037,16 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/hallway/secondary/service) -"xAu" = ( -/turf/closed/wall, -/area/station/medical/chemistry) -"xAI" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"xAC" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "xAN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -81641,7 +87095,7 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xBr" = ( /obj/structure/closet/crate/coffin, /obj/item/toy/plush/lizard_plushie/green{ @@ -81649,36 +87103,28 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"xBt" = ( -/obj/machinery/camera/autoname/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"xBC" = ( +/obj/structure/safe, +/obj/item/storage/fancy/pickles_jar, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xBE" = ( /turf/closed/wall/r_wall, /area/station/engineering/supermatter) -"xBO" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/chaplain, -/obj/structure/disposalpipe/segment{ - dir = 4 +"xBP" = ( +/obj/item/trash/can{ + pixel_x = -8 }, -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"xBQ" = ( +/turf/open/floor/engine/hull/air, +/area/station/commons/dorms) +"xBU" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ - dir = 9 + dir = 1 }, -/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/corner, /turf/open/openspace, -/area/station/engineering/atmos/project) -"xBR" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/engineering/supermatter/room/upper) "xBZ" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -81687,7 +87133,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xCe" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -81695,6 +87141,17 @@ /obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron, /area/station/cargo/storage) +"xCj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "xCq" = ( /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ dir = 4 @@ -81706,12 +87163,10 @@ dir = 4 }, /area/station/hallway/secondary/exit/departure_lounge) -"xCt" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, +"xCs" = ( +/obj/structure/table/glass, /turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/area/station/maintenance/starboard) "xCu" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -81730,55 +87185,38 @@ /turf/open/floor/plating, /area/station/maintenance/port) "xCz" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 +/obj/structure/bed/pod{ + desc = "An old medical bed, just waiting for replacement with something up to date."; + name = "medical bed" }, -/obj/machinery/holopad, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/surgery) -"xCI" = ( -/obj/structure/railing, -/obj/effect/turf_decal/tile/red{ +/obj/effect/turf_decal/siding/dark_blue/corner{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xCJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"xCI" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xCK" = ( /turf/open/openspace, /area/station/security/interrogation) "xCO" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/east{ - name = "Cargo Desk"; - req_access = list("cargo") +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 }, -/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/effect/turf_decal/trimline/brown/arrow_ccw, /turf/open/floor/iron, -/area/station/cargo/storage) +/area/station/hallway/primary/starboard) "xCQ" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, /obj/item/radio/intercom/directional/east, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xCS" = ( /obj/item/clothing/suit/jacket/straight_jacket, /obj/structure/closet, @@ -81802,29 +87240,54 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"xCV" = ( +/obj/item/radio/intercom/directional/east, +/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) "xCW" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"xDp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"xDe" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste to Filter"; + dir = 4 + }, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"xDq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter/monitored/waste_loop, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"xDw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xDs" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "xDB" = ( /obj/machinery/computer/dna_console{ dir = 1 @@ -81835,15 +87298,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xDR" = ( -/obj/machinery/wall_healer/directional/south, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "xDW" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -81876,12 +87335,13 @@ /obj/effect/landmark/start/bitrunner, /turf/open/floor/iron/dark/textured_half, /area/station/cargo/bitrunning/den) -"xEl" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners{ +"xEh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/engineering/lobby) "xEm" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -81892,15 +87352,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"xEo" = ( -/obj/structure/railing/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "xEr" = ( /obj/item/radio/intercom/directional/north, /turf/open/floor/plating, /area/station/maintenance/disposal) +"xEt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "xEB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -81908,6 +87368,21 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"xED" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"xEF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos/upper) +"xEJ" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "xEL" = ( /obj/structure/rack, /obj/item/melee/skateboard{ @@ -81926,6 +87401,15 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/port) +"xEM" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "Chief Engineers Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) "xEO" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 6 @@ -81939,8 +87423,35 @@ /area/station/maintenance/port/greater) "xEU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/obj/structure/cable, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/binoculars{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"xEW" = ( +/obj/structure/rack, +/obj/item/analyzer, +/obj/item/wrench, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"xFg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"xFh" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/station/medical/surgery) "xFj" = ( /obj/effect/turf_decal/tile/blue/full, /obj/effect/turf_decal/tile/dark/full, @@ -81970,21 +87481,6 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) -"xFw" = ( -/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/plating, -/area/station/maintenance/starboard/aft) -"xFA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/athletic_mixed, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "xFH" = ( /obj/machinery/light/directional/east, /obj/structure/cable, @@ -82016,21 +87512,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"xFS" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/machinery/door/airlock/command{ - name = "Abandoned Lab" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +"xFN" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "xFT" = ( /turf/open/floor/iron/stairs, /area/station/maintenance/starboard/aft) +"xGb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "xGe" = ( /obj/structure/railing/corner, /turf/open/openspace, @@ -82048,12 +87544,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) -"xGG" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/medbay/central) "xGL" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -82066,6 +87556,17 @@ }, /turf/open/floor/iron, /area/station/science/explab) +"xGN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"xGS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xGU" = ( /obj/structure/table/reinforced, /obj/item/tank/internals/oxygen, @@ -82075,6 +87576,19 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"xGV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/railing/corner{ + 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/openspace, +/area/station/engineering/lobby) "xHi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, @@ -82089,29 +87603,78 @@ /obj/item/storage/medkit/brute, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xHP" = ( -/obj/structure/chair{ - dir = 1; - pixel_y = -2 +"xHC" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 }, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) +"xHE" = ( +/obj/structure/sign/directions/command/directional/west{ + dir = 2; + pixel_y = 5; + pixel_x = 0 + }, +/obj/structure/sign/directions/evac/directional/west{ + dir = 2; + pixel_y = -3; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/commons/locker) +"xHS" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "xHV" = ( -/obj/effect/turf_decal/siding/blue, -/obj/effect/turf_decal/siding/blue{ +/obj/effect/landmark/navigate_destination/hop, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - location = "Head of Personnel" +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"xId" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "xIe" = ( /obj/structure/lattice, /obj/effect/spawner/random/structure/grille, /turf/open/space/openspace, /area/space/nearstation) +"xIh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/clock/directional/east, +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"xIk" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/bot_red, +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xIl" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -82132,46 +87695,54 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"xIJ" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 +"xIs" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/structure/chair/office, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "xIN" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, /turf/open/openspace, /area/station/maintenance/port/fore) -"xIV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"xIT" = ( +/obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/rebels_unite/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/department/crew_quarters/dorms) +"xIW" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/engine/hull, +/area/station/solars/starboard/fore) "xJo" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/port) "xJq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - dir = 1; - name = "decommissioned sleeper" - }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"xJt" = ( -/obj/structure/lattice/catwalk, -/obj/item/clothing/accessory/armband/cargo{ - pixel_x = 8; - pixel_y = 10 +/obj/machinery/vending/cigarette, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"xJs" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 }, -/obj/structure/sign/poster/contraband/rebels_unite/directional/north, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "xJH" = ( /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ @@ -82187,20 +87758,32 @@ pixel_y = 5 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xJI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 +/area/station/ai/satellite/interior) +"xJJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/flag/tizira/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"xJL" = ( +/obj/item/clothing/head/cone{ + pixel_x = 5; + pixel_y = 10 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard) "xJV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"xJZ" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "xKb" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -82209,27 +87792,41 @@ /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) "xKc" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 +/obj/machinery/light/directional/east, +/obj/machinery/status_display/supply{ + pixel_x = 32 }, +/obj/structure/railing, /obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, /obj/structure/disposalpipe/trunk{ dir = 8 }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) "xKg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/opposingcorners{ +/obj/effect/turf_decal/trimline/blue/warning, +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ dir = 1 }, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/smooth_half{ + dir = 4 + }, /area/station/medical/cryo) "xKj" = ( /obj/structure/railing/corner/end, /turf/open/openspace, /area/station/maintenance/port/aft) +"xKo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "xKr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/warm/dim/directional/east, @@ -82238,26 +87835,41 @@ }, /turf/open/floor/glass, /area/station/science/zoo) +"xKs" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "xKx" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron, /area/station/engineering/lobby) -"xKz" = ( -/obj/structure/rack, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/spawner/random/techstorage/engineering_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "xKB" = ( /obj/structure/rack, /obj/item/toy/basketball, +/obj/item/poster/random_official, /turf/open/floor/plating, /area/station/maintenance/port) "xKG" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/station/medical/virology) +"xKJ" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/north, +/turf/open/openspace, +/area/station/commons/fitness/recreation) "xKQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -82266,6 +87878,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"xKS" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "xLf" = ( /obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, /obj/structure/chair/sofa/middle/brown{ @@ -82273,17 +87889,11 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) -"xLj" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Telecomms - Storage" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +"xLl" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/commons/dorms) "xLy" = ( /obj/structure/cable, /obj/effect/landmark/secequipment, @@ -82300,13 +87910,6 @@ /obj/structure/sign/poster/abductor/ayy_cops, /turf/closed/wall, /area/station/maintenance/port) -"xLF" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "xLQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -82328,31 +87931,46 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/station/security/execution/education) +"xMf" = ( +/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/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) +"xMn" = ( +/obj/structure/table, +/obj/machinery/computer/arcade/orion_trail{ + desc = "For gamers only. Casuals need not apply."; + icon_screen = "library"; + icon_state = "oldcomp"; + name = "Gamer Computer" + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) "xMq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/food/pizzaslice/moldy/bacteria, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"xMv" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/structure/chair/sofa/corp/left{ + dir = 8 }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/siding/dark_blue, +/obj/structure/sign/poster/official/moth_epi/directional/east, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) +"xMu" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xMz" = ( -/obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /obj/structure/cable, -/obj/effect/landmark/start/depsec/medical, -/obj/machinery/firealarm/directional/west{ - pixel_y = -28 - }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) "xME" = ( @@ -82364,29 +87982,44 @@ }, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"xMJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xML" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/directional/west, /turf/open/floor/wood, /area/station/hallway/primary/central) -"xMS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ +"xMT" = ( +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "xMV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/yellow/full, /obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Storage" +/obj/machinery/door/airlock/medical{ + name = "Chemical Storage" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock_note_placer{ + note_info = "Looking for your chem factory area? Go upstairs and you will find it above the Pharmacy. You also have a new Controlled Hazard Chamber"; + note_name = "Projects" }, /turf/open/floor/iron/dark/smooth_large, -/area/station/medical/medbay/central) +/area/station/medical/chem_storage) "xMY" = ( /obj/machinery/holopad, /obj/machinery/navbeacon{ @@ -82404,15 +88037,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"xNe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/area/station/ai/satellite/foyer) +"xNk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, /obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "xNn" = ( /obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ dir = 4 @@ -82437,16 +88075,21 @@ /turf/open/floor/wood, /area/station/security/courtroom) "xNB" = ( -/obj/structure/table/wood, /obj/structure/sign/painting/library{ persistence_id = "captain"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, -/obj/machinery/fax{ - fax_name = "Captain's Office"; - name = "Captain's Fax Machine" +/obj/structure/table/wood, +/obj/item/storage/briefcase/secure{ + pixel_x = 4; + pixel_y = 8 }, -/turf/open/floor/wood, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "xNF" = ( /obj/structure/lattice/catwalk, @@ -82483,13 +88126,17 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_white, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xOh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "CargowatchShutter"; + name = "Outside Shutter"; + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/qm) "xOl" = ( /obj/item/restraints/handcuffs/fake, /obj/structure/table/wood, @@ -82542,24 +88189,32 @@ }, /turf/open/space/openspace, /area/space/nearstation) +"xOG" = ( +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"xOU" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/briefcase, +/obj/effect/spawner/random/bureaucracy/folder, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "xOW" = ( /turf/open/floor/plating, /area/station/security/interrogation) -"xPg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"xPj" = ( -/obj/machinery/duct, -/obj/machinery/door/airlock/maintenance, +"xPy" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/sign/warning/electric_shock/directional/north, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/engine_smes) "xPU" = ( /obj/structure/sign/poster/contraband/space_cube/directional/east, /turf/open/floor/plating, @@ -82570,13 +88225,16 @@ }, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"xQB" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - co2 Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos/upper) +"xQg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"xQr" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/maintenance/two, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "xQC" = ( /obj/machinery/camera/autoname/directional/north, /obj/structure/closet/crate/trashcart/filled, @@ -82591,8 +88249,18 @@ /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/maintenance/department/medical) +"xQJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) "xQK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -82613,32 +88281,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"xQU" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/modular_computer/preset/cargochat/engineering{ - dir = 1 - }, -/obj/machinery/requests_console/directional/west{ - name = "Engineering Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/mapping_helpers/requests_console/assistance, -/turf/open/floor/wood, -/area/station/engineering/lobby) -"xQV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/photocopier/prebuilt, -/turf/open/floor/wood, -/area/station/engineering/lobby) "xQW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, /obj/machinery/light/directional/south, /obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "xRg" = ( /obj/effect/decal/cleanable/dirt, @@ -82665,11 +88311,30 @@ /obj/item/storage/bag/plants, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) -"xRI" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" +"xRp" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/minisat, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "transitlockdown" }, +/obj/effect/landmark/navigate_destination/minisat_access_tcomms_ai, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"xRD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"xRI" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 1 }, @@ -82679,23 +88344,17 @@ dir = 1 }, /obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xRJ" = ( -/obj/item/banner/cargo/mundane{ - pixel_y = 27 +/obj/structure/railing{ + dir = 8 }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_y = 10 +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 }, -/obj/item/ammo_casing/spent{ - pixel_x = -8; - pixel_y = -4 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron, +/area/station/cargo/storage) "xRK" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ @@ -82712,20 +88371,27 @@ /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) "xRZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/greenglow, /obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"xSb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white/textured_corner{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"xSb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) +"xSc" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) "xSj" = ( /obj/structure/railing, /turf/open/floor/iron/stairs/medium{ @@ -82738,8 +88404,22 @@ dir = 8 }, /obj/effect/baseturf_helper/reinforced_plating/ceiling, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) +"xSq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/command/meeting_room/council) "xSv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -82752,10 +88432,27 @@ /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/starboard) +"xSA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/multiz/purple/visible{ + dir = 2; + name = "mix to recycle multi-deck adapter" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"xSB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xSD" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron, /area/station/science/breakroom) +"xSL" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "xSO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -82778,7 +88475,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xSS" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -82814,23 +88511,39 @@ /obj/effect/spawner/random/trash/crushed_can, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"xTq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"xTs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xTt" = ( -/obj/structure/table/wood, /obj/item/radio/intercom/directional/west{ freerange = 1; name = "Captain's Intercom"; pixel_x = 0; pixel_y = 25 }, -/obj/item/pinpointer/nuke{ - pixel_x = -7; +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; pixel_y = 5 }, +/obj/item/pen/fourcolor{ + pixel_x = -15; + pixel_y = 1 + }, /obj/item/hand_tele{ pixel_x = 13; - pixel_y = 15 + pixel_y = 5 }, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "xTD" = ( /obj/structure/disposalpipe/segment{ @@ -82841,6 +88554,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"xTJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "xTT" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/disposal/bin, @@ -82857,19 +88577,18 @@ /obj/effect/spawner/random/structure/grille, /turf/open/floor/engine/hull, /area/space/nearstation) -"xTY" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "xUa" = ( /obj/effect/mapping_helpers/iannewyear, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) +"xUf" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) "xUj" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -82911,7 +88630,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xUy" = ( /obj/machinery/light/directional/west, /obj/machinery/light_switch/directional/west, @@ -82937,7 +88656,7 @@ pixel_y = 2 }, /obj/structure/window/reinforced/spawner/directional/west, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "xUE" = ( /obj/effect/turf_decal/stripes/line{ @@ -82952,18 +88671,37 @@ "xUJ" = ( /turf/closed/wall, /area/station/medical/storage) -"xUV" = ( -/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/directional/east, +"xUR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay"); + c_tag = "Medbay - Lower Operating Room" + }, +/obj/structure/table/reinforced/rglass, +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/storage/box/gloves{ + pixel_y = 10 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"xUT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, /turf/open/floor/iron, -/area/station/commons/dorms) -"xUW" = ( -/obj/structure/cable, -/obj/structure/sign/poster/contraband/fake_bombable/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "xVq" = ( /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, @@ -82987,7 +88725,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -83009,13 +88747,12 @@ /obj/structure/sign/poster/official/obey/directional/north, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"xVF" = ( -/obj/structure/lattice/catwalk, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/break_room) +"xVG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "xVJ" = ( /obj/machinery/firealarm/directional/south, /obj/structure/chair/stool/bar/directional/east, @@ -83024,21 +88761,17 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"xVL" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/medbay/central) "xVM" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) -"xVZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +"xVP" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "xWw" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -83058,12 +88791,16 @@ }, /turf/open/openspace, /area/station/maintenance/port/fore) -"xWy" = ( +"xWz" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, /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/dark, -/area/station/commons/dorms) +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "xWK" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -83073,13 +88810,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"xWM" = ( -/obj/item/grapple_gun{ - pixel_x = 2; - pixel_y = 3 +"xWN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "xWS" = ( /obj/effect/turf_decal/trimline/dark_blue/corner{ dir = 4 @@ -83087,7 +88828,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xWT" = ( /obj/structure/railing{ dir = 1 @@ -83112,6 +88853,28 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron/dark/smooth_half, /area/station/service/library) +"xXj" = ( +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Air Pump Room"; + req_access = list("atmospherics") + }, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"xXm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=7-Gateway"; + location = "6-Courtroom" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) "xXr" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/cobweb, @@ -83133,12 +88896,6 @@ dir = 8 }, /area/station/maintenance/hallway/abandoned_recreation) -"xXx" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "xXy" = ( /obj/structure/railing{ dir = 1 @@ -83149,6 +88906,16 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"xXC" = ( +/obj/item/pickaxe{ + pixel_x = 4; + pixel_y = 12 + }, +/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, +/area/station/maintenance/starboard/central/upper) "xXH" = ( /obj/effect/turf_decal/siding/blue{ dir = 5 @@ -83165,6 +88932,18 @@ /obj/structure/broken_flooring/singular/always_floorplane/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"xXQ" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) +"xXR" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "xXU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -83180,7 +88959,7 @@ codes_txt = "patrol;next_patrol=10-Vault"; location = "9-Bridge" }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "xXV" = ( /obj/structure/reflector/double{ @@ -83197,24 +88976,13 @@ /obj/item/kirbyplants/random, /turf/open/floor/wood, /area/station/security/detectives_office) -"xYa" = ( -/obj/structure/frame, -/obj/structure/sign/poster/contraband/shamblers_juice/directional/east, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) -"xYb" = ( -/obj/structure/cable/layer1, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) -"xYf" = ( -/obj/structure/table, -/obj/item/reagent_containers/cup/soda_cans/cola{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/effect/spawner/random/entertainment/coin, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +"xYc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/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/engineering/atmos/upper) "xYh" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -83223,37 +88991,26 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"xYi" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) "xYk" = ( -/obj/machinery/computer/monitor{ +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/dark_blue{ dir = 1 }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/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/command/meeting_room/council) "xYm" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/thinplating/corner, /turf/open/floor/iron/dark/smooth_half, /area/station/service/library) "xYn" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/stamp/head/hop{ - pixel_x = 8; - pixel_y = 4 - }, /obj/structure/cable, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "xYy" = ( /obj/machinery/nuclearbomb/selfdestruct, @@ -83261,12 +89018,13 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) -"xYL" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/command/vault) +"xYC" = ( +/obj/machinery/shower/directional/south, +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "xYS" = ( /obj/machinery/computer/operating{ dir = 1 @@ -83274,17 +89032,26 @@ /obj/effect/turf_decal/tile/purple/half, /turf/open/floor/iron/white/textured_half, /area/station/science/robotics) -"xZd" = ( -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "xZn" = ( /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/aft) "xZp" = ( -/obj/machinery/modular_computer/preset/research, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1 + }, +/obj/item/lighter{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) +"xZu" = ( +/obj/machinery/photocopier/prebuilt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/aft) "xZG" = ( /obj/structure/table/wood, /obj/item/pen/fourcolor{ @@ -83296,6 +89063,12 @@ }, /turf/open/floor/carpet, /area/station/service/chapel/office) +"xZM" = ( +/obj/effect/spawner/random/structure/chair_maintenance{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "xZP" = ( /obj/structure/table, /obj/item/wrench{ @@ -83311,12 +89084,12 @@ dir = 2 }, /obj/effect/mapping_helpers/mail_sorting/security/detectives_office, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"yav" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) +"yau" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) "yaw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83329,11 +89102,19 @@ }, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) +"yay" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "yaE" = ( /obj/effect/decal/cleanable/dirt, /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"yaI" = ( +/turf/closed/wall, +/area/station/hallway/primary/fore) "yaM" = ( /obj/machinery/vending/wardrobe/gene_wardrobe, /obj/structure/extinguisher_cabinet/directional/north, @@ -83358,27 +89139,6 @@ }, /turf/open/floor/plating, /area/station/security/execution/education) -"yaU" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/vending/medical, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/openspace, -/area/station/medical/storage) -"ybh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/stamp/granted{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/stamp/denied{ - pixel_x = 7 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "ybF" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/green/filled/corner{ @@ -83399,6 +89159,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/space_hut) +"ybM" = ( +/obj/machinery/computer/atmos_control/oxygen_tank, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ybO" = ( /obj/structure/rack, /obj/structure/window/reinforced/spawner/directional/north{ @@ -83413,8 +89180,12 @@ pixel_x = -4; pixel_y = 1 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/machinery/door/window/right/directional/east{ + name = "Jetpack Storage"; + req_access = list("eva") + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "ybR" = ( /turf/open/floor/glass/reinforced, /area/station/construction/storage_wing) @@ -83436,6 +89207,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"yca" = ( +/obj/effect/turf_decal/trimline/blue/arrow_ccw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/arrow_cw, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) "ycf" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -83465,23 +89243,34 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "ycm" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/openspace, -/area/station/medical/cryo) -"yco" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, -/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, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"yco" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "yct" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -83492,27 +89281,38 @@ /obj/machinery/light/floor, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"ycC" = ( -/obj/structure/table, -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1447; - name = "Private Channel" +"ycy" = ( +/obj/structure/closet/crate/secure/engineering{ + name = "Advanced Materials" }, -/obj/item/folder/blue{ - pixel_x = -13; - pixel_y = 5 +/obj/item/stack/sheet/plasteel, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 }, -/obj/item/folder/white{ - pixel_x = -6; - pixel_y = 2 +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" }, -/obj/item/pen/blue{ - pixel_x = -21; - pixel_y = 2 +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"ycC" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/kirbyplants/organic/plant19{ + pixel_x = -3; + pixel_y = 12 }, -/turf/open/floor/carpet, -/area/station/ai_monitored/turret_protected/ai_upload) +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai/upload/chamber) +"ycK" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "ycM" = ( /obj/structure/lattice, /turf/open/floor/plating/airless, @@ -83525,10 +89325,6 @@ /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, /area/station/hallway/primary/central) -"ydi" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/hallway) "ydo" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -83540,21 +89336,6 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"ydy" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 6 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"ydH" = ( -/obj/effect/landmark/firealarm_sanity, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) -"ydI" = ( -/obj/structure/fake_stairs/directional/south, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "ydN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -83573,6 +89354,11 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) +"ydV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/engine, +/area/station/engineering/atmos) "ydX" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -83584,43 +89370,53 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "yeg" = ( -/obj/structure/chair/office/light{ - dir = 1; - name = "RD's Chair"; - pixel_y = 3 +/obj/structure/table/wood, +/obj/item/radio/intercom, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) +"yel" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"yeo" = ( +/obj/structure/fireaxecabinet/directional/east, +/obj/machinery/airalarm/directional/north, +/obj/structure/table/reinforced/rglass, +/obj/item/radio/off{ + pixel_x = 3; + pixel_y = 5 }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination/bridge, -/turf/open/floor/carpet, +/obj/item/assembly/signaler{ + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, /area/station/command/bridge) -"yem" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "yer" = ( /turf/open/openspace, /area/station/science/genetics) "yes" = ( -/obj/machinery/door/window/left/directional/east{ - name = "Captain's Desk"; - req_access = list("captain") - }, /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/command/heads_quarters/captain/private) -"yeu" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_y = 6 +/obj/machinery/door/window/right/directional/west{ + req_access = list("captain"); + name = "Captain's Desk" }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) "yeA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -83638,21 +89434,15 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 5 }, -/obj/structure/table, -/obj/item/wrench, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, +/obj/structure/table/reinforced, +/obj/machinery/button/door/directional/west{ + id = "Rcommissaryshutter"; + name = "Right Shutter Control"; + pixel_x = 0 + }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"yeH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/item/clothing/glasses/welding{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "yeJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -83673,12 +89463,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"yeT" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) +/area/station/ai/satellite/interior) "yfj" = ( /obj/structure/ladder, /turf/open/floor/plating, @@ -83686,23 +89471,57 @@ "yfm" = ( /turf/closed/wall, /area/station/science/explab) -"yfs" = ( -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"yfq" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "yfv" = ( -/obj/structure/table/wood, -/obj/item/binoculars{ - pixel_x = -5; - pixel_y = 6 +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/wrench/medical, +/obj/structure/table/reinforced/rglass, +/obj/item/gun/syringe{ + desc = "The Holy Syringe Gun. Identical to the regular syringe gun. You have a feeling that you shouldn't touch this."; + name = "Holy Syringe Gun"; + pixel_x = -3; + pixel_y = 3 }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = 3; - pixel_y = -1 +/obj/machinery/door/window/right/directional/west{ + name = "First Aid Supplies"; + req_access = list("medical") }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/cmo) +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"yfx" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 1; + name = "Ports To Mix" + }, +/obj/effect/turf_decal/trimline/dark_green, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"yfH" = ( +/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/opposingcorners{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_all, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"yfJ" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron, +/area/station/commons/dorms) "yfK" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -83710,28 +89529,46 @@ /obj/effect/turf_decal/siding/purple, /turf/open/floor/iron, /area/station/science/lab) -"yfM" = ( +"yfS" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, /obj/structure/table, -/obj/item/gavelhammer{ - pixel_y = 3 +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 }, -/obj/structure/cable, -/obj/machinery/light/small/directional/north, -/turf/open/floor/wood, -/area/station/security/courtroom) +/obj/item/storage/toolbox/electrical{ + pixel_y = 2 + }, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "yge" = ( /obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) "ygn" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +/obj/machinery/door/airlock/medical{ + name = "Primary Surgical Theatre" }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/disposalpipe/segment, /obj/structure/cable, -/turf/open/floor/iron/white/textured, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_large, /area/station/medical/surgery) +"ygq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine/hull/reinforced, +/area/station/ai/upload/chamber) "ygr" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -83755,6 +89592,12 @@ "ygD" = ( /turf/closed/wall, /area/station/medical/coldroom) +"ygK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ygM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83762,7 +89605,7 @@ /obj/structure/disposalpipe/junction/flip{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "ygN" = ( /obj/structure/table, @@ -83771,18 +89614,21 @@ }, /turf/open/floor/iron, /area/station/science/breakroom) +"ygT" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "chemshutters"; + name = "Chemistry Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/pharmacy) "ygW" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance/two, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) -"yhf" = ( -/obj/structure/cable/layer1, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "yhq" = ( /obj/effect/turf_decal/caution, /obj/effect/turf_decal/stripes/line, @@ -83794,18 +89640,27 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "yhu" = ( -/obj/machinery/button/door/directional/south{ - id = "CargowatchShutter"; - name = "Outside Shutter Control" +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "yhx" = ( /obj/structure/musician/piano/unanchored, /turf/open/floor/plating, /area/station/maintenance/department/science/central) +"yhD" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "yhJ" = ( /obj/structure/grille, /turf/open/space/basic, @@ -83815,11 +89670,6 @@ dir = 1 }, /area/station/service/library/private) -"yhN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/layer1, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) "yhO" = ( /obj/machinery/door/airlock/atmos/glass{ name = "Atmospherics Testing Room" @@ -83828,6 +89678,20 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) +"yhP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/tlv_cold_room, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/sign/warning/cold_temp/directional/east, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) "yhW" = ( /obj/structure/table/reinforced, /obj/item/screwdriver{ @@ -83836,6 +89700,24 @@ /obj/item/clothing/mask/gas, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"yhY" = ( +/obj/structure/table, +/obj/item/hfr_box/body/moderator_input{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/hfr_box/body/waste_output{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/hfr_box/body/interface{ + pixel_x = 5 + }, +/obj/item/hfr_box/body/fuel_input{ + pixel_x = -10 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) "yib" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -83843,32 +89725,39 @@ /obj/structure/cable/layer3, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "yin" = ( /obj/structure/chair, /turf/open/floor/iron/dark/smooth_large, /area/station/security/interrogation) -"yiy" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"yiL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/machinery/cloning_pod{ - desc = "An old prototype cloning pod, permanently decommissioned following the incident."; - name = "decommissioned cloner" +"yiw" = ( +/obj/structure/chair/pew/left{ + dir = 4 }, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) +"yiB" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"yiF" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Engineering Lobby"; + name = "Engineering Lobby Fax Machine" + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "yiP" = ( /obj/machinery/washing_machine, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) -"yiW" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "yiY" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/item/wrench{ @@ -83887,30 +89776,34 @@ /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) "yjD" = ( -/obj/machinery/atmospherics/pipe/multiz/general/visible, +/obj/structure/table, /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/light/directional/east, -/obj/item/storage/box/beakers{ - pixel_x = -12; - pixel_y = 15 +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = 6 }, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) -"yjM" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_x = 32; - pixel_y = 37 +/obj/item/pen{ + pixel_y = 8; + pixel_x = -6 }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_x = 32; - pixel_y = 27 +/obj/item/toy/figure/paramedic{ + pixel_x = -5; + pixel_y = -3 }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/office) +"yjM" = ( +/obj/structure/sign/directions/upload/directional/north{ + desc = "It stands for Up Le Dable"; + dir = 2; + name = "Button Indicator"; + pixel_y = 10 + }, +/turf/closed/wall, +/area/station/service/kitchen) "yjT" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 8 @@ -83919,12 +89812,19 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "yjV" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/effect/landmark/event_spawn, /turf/open/floor/grass, /area/station/science/cytology) +"ykc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "ykf" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -83953,15 +89853,32 @@ }, /turf/open/floor/iron/dark, /area/station/commons/storage/art) +"ykx" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 2 + }, +/turf/closed/wall, +/area/station/maintenance/port) "ykz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) "ykG" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"ykK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/rebels_unite/directional/west, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "yla" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -83978,23 +89895,7 @@ name = "Minisat Monitor" }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"yli" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, -/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/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"ylo" = ( -/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/textured_large, -/area/station/engineering/gravity_generator) +/area/station/ai/satellite/interior) "ylu" = ( /obj/structure/closet/crate, /obj/effect/spawner/random/contraband/prison, @@ -84009,19 +89910,25 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"yly" = ( -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/medbay/central) -"ylO" = ( -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"yma" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 +"ylN" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/door/window/right/directional/south{ + req_access = list("shipping"); + name = "Chute Access" + }, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"yme" = ( +/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/starboard/fore/upper) (1,1,1) = {" dcE @@ -101148,7 +107055,7 @@ bWY dcE dcE dcE -kpJ +qBy dcE dcE dcE @@ -101918,9 +107825,9 @@ bWY azt azt azt -azt -azt -azt +twz +twz +twz azt vNz azt @@ -102176,7 +108083,7 @@ azt vNz dcE dcE -azt +rNc dcE bWY bWY @@ -102433,7 +108340,7 @@ azt vNz dcE dcE -azt +twz dcE heR dcE @@ -102685,14 +108592,14 @@ bWY bWY xbF bWY -bWY +twz azt +twz bWY bWY -bWY -rNc -bWY -bWY +azt +twz +twz vNz azt dcE @@ -102945,7 +108852,7 @@ dcE vNz azt vNz -iFM +fVD nTA nxa crs @@ -103159,7 +109066,7 @@ tDx bHr xLX hRx -edN +kRR uHH wVf wVf @@ -103445,7 +109352,7 @@ bWY dcE dcE dcE -jJm +bWY dcE dcE dcE @@ -103456,10 +109363,10 @@ bWY bWY xbF bWY -bWY +twz azt -bWY -fVD +twz +xtS nTA jgu okc @@ -103702,7 +109609,7 @@ iWu iWu fWI iWu -kzG +bYT fWI iWu heR @@ -103959,7 +109866,7 @@ dLq dLq jPs heR -eYH +bWY dcE heR bYT @@ -104216,7 +110123,7 @@ dLq heR dcE dcE -eYH +bWY dcE dcE heR @@ -104473,7 +110380,7 @@ dcE dcE dcE dcE -eYH +bWY dcE dcE heR @@ -104730,7 +110637,7 @@ dLq heR dcE dcE -eYH +bWY dcE dcE iWu @@ -104987,7 +110894,7 @@ riD riD riD heR -eYH +bWY dcE dcE iWu @@ -105244,7 +111151,7 @@ jgR aEO riD riD -nXp +dLq dcE dcE gmt @@ -105501,7 +111408,7 @@ gjW wTk eoI riD -bHM +kxE dLq dcE dcE @@ -105753,12 +111660,12 @@ nJk rjd riD riD -alx +fYa riD riD riD riD -bDm +uKL oaa oaa dcE @@ -106009,14 +111916,14 @@ rjd ydo xJo riD -cJb -unK -awv -rPU -uJi -uJi -qnS -tlQ +mpW +tEv +sHr +nOV +wTk +wTk +tEv +wTk oaa oaa dcE @@ -106266,14 +112173,14 @@ mqt fyx riD riD -uJi +wTk wTk riD riD tEv twD wTk -tlQ +wTk tEv oaa heR @@ -106522,15 +112429,15 @@ oCE xJo riD riD -uJi -unK +wTk +tEv sPT riD wRj wTk wTk tEv -tlQ +wTk wTk oaa heR @@ -106779,7 +112686,7 @@ nFL riD riD gir -pQG +upp wTk cbx riD @@ -106787,7 +112694,7 @@ riD nCM fES juE -tlQ +wTk oaa oaa heR @@ -107036,7 +112943,7 @@ kUq aJV riD tOW -uJi +wTk wTk wTk qTy @@ -107044,7 +112951,7 @@ riD riD riD riD -bDm +uKL oaa heR heR @@ -107293,7 +113200,7 @@ eYP bsy riD mXW -uJi +wTk ifC tEv tEv @@ -107301,7 +113208,7 @@ pmI wbK riD kxE -crE +dLq heR dcE dcE @@ -107549,8 +113456,8 @@ dNR gAl uIG riD -riv -uJi +iBW +wTk wTk wTk wTk @@ -107558,7 +113465,7 @@ riD riD riD dLq -mRf +heR dcE dcE dcE @@ -107575,12 +113482,12 @@ mIJ pim jbS qpI -ygD -ygD +uIO +uIO eeH -ygD -ygD -lIr +uIO +uIO +uIO uYP bPC ecL @@ -107806,7 +113713,7 @@ kTw wNv riD riD -dEu +mXW wTk tEv okf @@ -107815,7 +113722,7 @@ riD nPY riD riD -nxv +tao heR heR slD @@ -107831,14 +113738,14 @@ rCa fcw gUh uIO -ygD -ygD +uIO +uIO gTW -rYd +pTp jrv jFG -ygD -lIr +uIO +uIO xXW iDq lIr @@ -108062,8 +113969,8 @@ iTI kTw wNv wPl -mpT -dEu +wNv +mXW tzi flg riD @@ -108072,7 +113979,7 @@ uwu cOm deC ckM -tEc +mCR ckM ckM ckM @@ -108086,16 +113993,16 @@ cdw uIO pUj jVY -hGu +pim dfK -rTD +cVe kBq -kyx -kyx +xej +nEr kyx qbY uVL -ygD +uIO bPC fqK lIr @@ -108278,7 +114185,7 @@ oLN vwl ilE chu -wNu +lUD sQY aHS pMT @@ -108320,7 +114227,7 @@ kTw riD riD flg -dEu +mXW uCG riD riD @@ -108344,12 +114251,12 @@ uIO uTy uYd kbB -ygD +uIO ceQ eKW gLQ -rYd -cVe +pTp +wKr xQI cVe qsD @@ -108585,7 +114492,7 @@ mRt pPl kUq kUq -ssO +uSn hyi cIE oid @@ -108600,16 +114507,16 @@ oSt uIO uIO jVY -mWX -ygD +nDe +uIO coI eKW -oGj +pTp bkD veT -xQI +uDp vqu -ygD +uIO fqK bPC lIr @@ -108842,8 +114749,8 @@ eTY cOm dHm dFG -hyi -lIp +lUg +qIQ ckM ckM ckM @@ -108857,16 +114764,16 @@ bfj bVW eTr jVY -qze -ygD -dOr -eKW +nDe +uIO +uVL +arG lXG -rYd -are +nuJ +cVe rYd opJ -ygD +uIO wuN bPC lIr @@ -109085,7 +114992,7 @@ riD riD riD riD -wPX +riD riD riD riD @@ -109114,16 +115021,16 @@ hfF kHZ uIO vhP -hGu -ygD -ygD +pim +nGq +uIO fNw fxS fxS wxk qmD -ygD -ygD +uIO +uIO rGK rGK lIr @@ -109342,7 +115249,7 @@ bmI wVL mTq sTv -arN +bOt qMr sTv hNC @@ -109360,8 +115267,8 @@ jHr ckM iVX ijh -wwj -wwj +xba +xba bZo ckM ckM @@ -109371,15 +115278,15 @@ wAT uIO uIO gHC -vGX +jYM gjB -ygD -ygD +uIO +uIO hhH izg vzN -ygD -ygD +uIO +uIO mwO rPw sZL @@ -109582,12 +115489,12 @@ fWY bNt aHO bNt -bNt -wqB +awD +wAx sRY xDM uKn -vzM +ruR tZz riD uJi @@ -109599,7 +115506,7 @@ lqn ykm bAL sTv -yfM +avj ojE sTv hTI @@ -109607,7 +115514,7 @@ riD mOW dEu wTk -wTk +jJd flg flg flg @@ -109617,11 +115524,11 @@ rzp cDs dAR lAN -fxc +ldL lAN -goI -rUf -oNb +fYH +etQ +lja ybF njH njH @@ -109631,11 +115538,11 @@ fZG epk sGQ qpI -ygD -ygD -ygD +uIO +uIO +uIO dWi -ygD +uIO oQV hCk lIi @@ -109844,7 +115751,7 @@ ssg ubo bNt gBF -dMR +vId pTT lmB uJi @@ -109856,17 +115763,17 @@ sTv ait sTv sTv -teZ +sTv dNA sTv uga riD gZY dEu -uJi -uJi -uJi -uJi +wTk +wTk +wTk +wTk ayF kUq iKx @@ -109874,11 +115781,11 @@ rzp ckM tKx oiR -iea -pHC +xba +uNu dos ckM -npG +aWE cMq uZV nKn @@ -110101,7 +116008,7 @@ gfc bNt bNt fhO -dMR +vId xmA riD riD @@ -110113,17 +116020,17 @@ sTv qAJ aZC kzi -ers +pMu izl ahD wie riD riD -qgD +ihn riD osU flg -uJi +wTk nBu kUq fJx @@ -110135,7 +116042,7 @@ lqd jDe ygB ygB -vVD +jAg jgW qaL nKn @@ -110356,9 +116263,9 @@ nuw ssg teC bNt -xrM +iJX bOC -dMR +vId jUt sTv aVb @@ -110370,17 +116277,17 @@ sTv qdk ksO aPq -cLP +nCT jFo nLC lQd riD fLX -pSF +qIL tVl srD flg -uJi +wTk xKB kUq gga @@ -110392,7 +116299,7 @@ wix cDs ygB aWo -rIZ +ycK pOD kUq kUq @@ -110584,9 +116491,9 @@ rqR pvg anm sES -cCA +oUL crW -veS +bFx ayR gPW acl @@ -110613,9 +116520,9 @@ wEX gBE icO bNt -uOh +tiG jUu -dMR +vId hDT nDA aLJ @@ -110634,10 +116541,10 @@ fZc jKZ xCv bFe -okf +pyA srD flg -uJi +tZx riD kUq kUq @@ -110646,10 +116553,10 @@ kPZ nIW toh als -hET -hET -fAB -pHd +cjW +cjW +eeE +vFE kUq kUq xNK @@ -110875,7 +116782,7 @@ gfo dMR wMc wFX -aLJ +nnf aIb ryJ uVN @@ -110889,12 +116796,12 @@ dFZ uvq xor riD -jJd +rPE bFe -pqQ -qDn -uJi -uJi +wQt +cxs +wTk +nVV riD cTJ kUq @@ -110902,18 +116809,18 @@ kUq xwK lUn oFg -bBy +hIE cPq -bBy +xMT pOD kUq kUq nyb wTk wTk -riD -ycg +hqz ycg +qzP ycg lIr dfL @@ -111089,7 +116996,7 @@ gIw eCD qPX tci -xBO +uOO xZG qPX lrp @@ -111099,7 +117006,7 @@ rqR xxZ lFK lFK -bRv +wvM bxT wIa gPW @@ -111145,32 +117052,32 @@ kpC dFZ nIA akE -riD -aDh -bFe -rPE -srD +fbC +fbC +sQs +fbC +voz jDx -ddx ovx -tRJ -dWj +ovx +eNb +wES +kUq kUq kUq -aDY kUq vsP kUq -rea +ucc kUq kUq wTk wTk -wTk +eAH nCc -riD -ieD -ieD +hqz +rlB +csW ieD lIr lIr @@ -111402,32 +117309,32 @@ rrj mDF mDF mDF -riD +fbC fik -bFe +iEL hHs -riD +lQc bvH riD riD -wTk -mXW -gom -uMy -ciS -aZP -uJi -dXD -uJi +uEl uJi uJi uJi uJi uJi uJi -riD -bit -spl +for +wir +jNe +onB +jNe +jNe +jNe +jNe +pFS +vXB +mpp spl dmV biZ @@ -111621,7 +117528,7 @@ gPW egU gPW gPW -hRX +yjM neF lAW pbk @@ -111659,35 +117566,35 @@ dkO iFR iFR sfp -riD -riD +fbC +dmM whs -riD -riD +rNU +vSJ lVs riD cSy eNb -sAG +uJi +riD +riD +riD +riD +riD +riD +riD riD -pkc -psQ riD riD riD riD riD -oxp riD -fbK -eAH -lzP -lCO ibJ hSu tNd lIr -bPC +oRi sTT rtf biG @@ -111697,12 +117604,12 @@ ekQ jii mHQ mHQ -jii -jii -fHg -jii -jii -jii +hgW +hgW +dri +hgW +hgW +hgW hgW lIr lVM @@ -111925,26 +117832,26 @@ hoP riD riD riD -nen -riD +bzd riD +oTS mDX -ccN -ccN +aKG +xUR ghR sCA fFm ctE lUI -riD -riD +uKb +oTq bEU -riD +ccN ruJ -iVi -pWF +hSu +pYi lIr -bPC +bDz iBK idd voX @@ -111952,7 +117859,7 @@ kWO eqV wPV wPV -tBa +gzJ wPV lmV eOG @@ -112177,16 +118084,16 @@ fbC cRL hnH aDm -ceV +vYs nSu fbC vdP -mYe -lIC +fIS +ptM xrX rQU eRT -ccN +wbJ fRd pAU rTp @@ -112194,25 +118101,25 @@ iGH nLU rDc jWF -riD -riD -riD -nfR +wxE +amW +ccN +pEO tCO -nfR +pEO lIr abE lIr lIr lIr -pcQ +wYX lIr wPV nFO wld -hlJ -itV -fUd +iTR +oDu +tQR qVs qQb wPV @@ -112411,7 +118318,7 @@ dBm dBm dBm cHI -kFP +sLt iGB kBi dkz @@ -112427,23 +118334,23 @@ bJJ iyv iyv kpC -iyv +seD iyv aYR fbC jVQ -sKC +hnH qfh -eeA +vYs gFt fbC vdP mYe -uCE -kDa -xVL +ptM +fGU +vKA afg -viV +iFy bPH rZP fch @@ -112451,12 +118358,12 @@ buk pyf cDB urk -nfR +lzW gZj oZn -hQa +xeM gDs -nfR +sny ttr aYm oZD @@ -112469,7 +118376,7 @@ wPV aIP tPr ebj -euN +bXl kUr mnG aPQ @@ -112680,40 +118587,40 @@ jOE jOE aUn fYS -gjU -lIM +lRY lIM -peF lIM +nDA +hiA lIM -hWw +nDA fbC nWD frB cHZ -eeA +vYs wlM fbC -pEO -pEO +tqq +vJI dUw -dUw -lIC -afg +xeM +kWp +acS cxD -bPH +fPt wPf rhx jYJ ygn aeq ajU -nfR -btJ -gWp -uPn -duq -nfR +qIc +gZj +oZn +xeM +fYF +sny ttC hAM dBy @@ -112726,11 +118633,11 @@ wPV eug uXU sIp -wUm -dcv -wRi -mPV -mHQ +eWS +rUq +jSK +wtD +jii fdl dXA lVM @@ -112916,61 +118823,61 @@ gtZ mBb nPW akU -fLr -fLr +itA +itA rfU -fLr +itA dNV nrP pJn ozK -fLr -fLr +itA +itA oLS sJQ aSD sJQ pwz -fLr -ckZ +itA +itA rfU -fLr +itA rHo -cuY -cuY -fLr -fLr -rnd -fLr -fLr -lkC -fbC +wdt +wdt +itA +itA +itA +pkx +itA +tLA +rTe lPn qMz ugj eBQ -wlM -fbC -sbT -pEO -pEO -pEO -lIC -afg +tON +gpT +xeM +xeM +hrX +xeM +kWp +hTy aMK wYH mfs qWy rDN -uvu +nLU xSb hSz -nfR +wxE taG -rZv -nFD +oZn +xeM tuV -nfR +sny vWI pPn rah @@ -113150,7 +119057,7 @@ wRp vwb pES gzs -oLO +lOD gPW ndl vxh @@ -113170,8 +119077,8 @@ qpP qNw qNw mDZ -jrz -fyz +idO +tau bmD fUb fUb @@ -113199,42 +119106,42 @@ vYe fcn fcn sXj -cXw +xXm qeZ -rEt +jDx obQ hDd aoz -dGm fbC fbC -hRa -kQh -jrf +fbC +fkD +fkD pEO -lIC +leK +kWp asY -ccN +wqq cqe xCz uQv cCt -nNZ +ctE tYC qdd -nfR +uSP wER -juc -vAy -qpw -nfR +oZn +xeM +fYF +kLI wgx hzG hhb kqv kqv clb -kqv +clb kqv fcK fcK @@ -113410,92 +119317,92 @@ iUx gPW gPW utq -nyq +cTk wQS svW mHJ -rUC +qGn fFe uPu fEc byY lNg byY -byY +fkp byY oSI hGP fzV xrl -fLr +dlx pzy -gxP -fLr -fLr -fLr -fLr -fLr -fLr +qhz +qNe +qNe +qNe +qNe +qNe +qNe cuY -fLr +qNe fom -fLr -fLr -fLr +qNe +qNe +qNe iwu -aZs +fpw mNY -fLr -fLr -fLr +keq +keq +iBM ulZ -fLr -fLr +qNe +qNe qNe fHW -pVy -fLr -aKc +jeh +qNe +aVN iLm -fLr -fbC -tkX -tkX -tkX -fbC -fbC +fDd +hSk +hSk +hSk +hSk +hSk +pSd jDD pZQ gie mKs -pEO -lIC -afg -ccN -ccN +xeM +kWp +rQR +jiL +oNB jiL emn vqv -ppa -tSo +xFh ccN -nfR -nfR -jzY -gEc -nfR -nfR -pEO +ccN +ccN +ccN +ccN +ibM +gFn +sny +sny xMV -pEO +sny kqv dcE dcE dcE dcE dcE -dcE sWJ +ahx cSN fwF hbi @@ -113684,9 +119591,9 @@ aEG kEn gnA dJV -fLr +idO pzy -fLr +vXt jGw bpl oGG @@ -113700,11 +119607,11 @@ eLU pKd pKd eLU -sle +eLU eLU jKF jKF -eLU +sle eLU vAs qiH @@ -113712,48 +119619,48 @@ tHs gUQ qiH qiH -fLr +idO iLm -fDd -hSk -hSk -hSk -hSk +vXt +qKV +oDq +wTE +gvR hSk qDh tLU kIt msF iKH -fkD -hNj +xeM +gNp iQA -fNa -ccN -ccN -viV +vJI +vJI +vJI +pkh xsD viV -ccN -ccN +iKa +uNT pMm -jIF -aXH xeM xeM +xeM +siR mJg gpx gPu -xeM +xqR fQp fQp fQp +dsx +dsx fQp fQp fQp -dcE -sWJ -tDP +cSN wiv bYn bYn @@ -113941,26 +119848,26 @@ lDE lDE lDE lDE -fLr +idO pzy -fLr +vXt fOe -lPw +saq qyy qTG cVs -wxq +vuO aZE eIm qae eLU -pdf -pdf +hVC +iiO oST bRW wbH -pdf -pdf +jRH +jRH pdf eLU ucp @@ -113969,9 +119876,9 @@ dnH khi chO qiH -fLr +idO iLm -fLr +vXt qKV cpG nng @@ -113979,36 +119886,36 @@ xMz eJb myh oJv -kWv -qUW -qUW -uec -eZE -eZE -qUW -qUW -bHj -qUW -eZE -qUW +pkn +pkn +mQK +ene +eFk +ene +gPC +gPC +gPC +gPC +ped +uOL oOS -qUW -qUW +aJR +pTV eZE +gPC +gPC +ovh +ljq +vkk qUW -qUW -qUW -qUW -qUW -qUW -xeM +izk fQp -qIp +vcY sKF hNb qIp -fQp -fQp +uXx +vsW fQp kqv kqv @@ -114173,9 +120080,9 @@ xvg ixF vsv qXQ -tgV +lZt glz -tLl +lum ixF gPW xKQ @@ -114186,7 +120093,7 @@ wvx fPb vRM haB -uPu +inD hgL gNr gNr @@ -114200,8 +120107,8 @@ pRw lDE cKg vMU -fLr -jwI +vXt +fOe dwf nDS saq @@ -114213,7 +120120,7 @@ ecw eLU dzx pog -dzx +cUl hqf aoQ bvv @@ -114226,42 +120133,42 @@ nrg wLc pJG tdW -fLr +idO iLm -fLr +vXt qKV jGh mFR bIZ qKV -xqL +msF lQV -qNy -oXE -oXE +msF +eBD +mKs tYN sSF cyM xvA -oXE -oXE -oXE -tgE -dZd +kZs +rfL +esR +xeM +viV oXE vsL -xeM -fYF -nSk +wJV pdO pdO -wlq -wlq -jYI +ygT +slK pdO +wlq +eXz +nKs fQp -aIU -ccr +pLG +mvq ccr jfi mvq @@ -114457,23 +120364,23 @@ iTM eEV gSG mEk -fLr -fOe -qTG +vXt +dWp +wCP xHV -dwf +cnL ehZ vuO kyJ eaj xat eLU -hwR -hwR -hwR +jrS +vMN +wWi nrw -hwR -hwR +dHq +jYI chQ hwR eLU @@ -114485,31 +120392,31 @@ bcH vAs dQP iLm -fLr +agu hSk qKV iCd hSk hSk sfj -xeM +gci tbu -xeM +fMx lqZ -irh +phw +fMx irh uFM -pem +nbE uFM irh irh -suP -cmY +irh rEL usD gWO -jTt -pdO +mJg +fEQ snE ksX mCM @@ -114518,9 +120425,9 @@ wQc ugq fQp bZC -vSW -vSW -vyV +mvq +mvq +mvq tPC ycC fQp @@ -114683,9 +120590,9 @@ dcE dcE dcE dcE -heR +vVH ixF -iZK +avJ myb xbL jHV @@ -114704,27 +120611,27 @@ fvk kHv aUU gNr -eAT -llv +wlI +jJE lDE uKN -lio +wyv vcR qkF eVl hZD iLm -fLr -dWp -okC +vXt +vuO +vuO ams -uzg +wWV wWV vuO kRk kWR hnF -psk +eLU fSl xUD vQR @@ -114742,40 +120649,40 @@ vAs tNV crk fDc -crk -pEO -rsU -xeM +fNB +bHV +oIA +mDr fHf -rde -fYF +sgT +qOG pMi -tbu +yca oJe gND -irh +qKP jcy -tBh +irh oiH gXT gZT -irh +knf qFa -qFj -hXT +irh +vky uvh hXT -xsC +xuz bRm eMd -lqp -tRY +nFz +nFz tRY wXL uEZ fQp kSB -vSW +mvq vSW vyV tPC @@ -114961,8 +120868,8 @@ bfw kHv uPu ojU -llv -llv +jJE +jJE lDE tjg pJD @@ -114971,12 +120878,12 @@ oHw eVl wUb vMU -fLr -vuO +jMi vuO +bBZ pPt -hRd -vuO +hKy +inh vuO vOy kZo @@ -114999,26 +120906,26 @@ mrj ddz ckZ iLm -fLr -pEO -aVL +vXt +bHV +rsU sGy -xeM +dMh ujD -fYF -xeM +uya +gzi klc bxa sZn -irh +qKy jeq -lyz +irh vka kwh uGt -uFM +kdk niy -iyL +uFM xaH dJE ioq @@ -115206,7 +121113,7 @@ jMr nJl pPf gqp -nmO +fWy gPW dIW rYV @@ -115218,18 +121125,18 @@ bfw tbw scE gNr -edl -llv +aqP +jJE lDE hdX hni uIt cfp lDE -req +osf vMU -jMi -vuO +vXt +rBE ugN tGb xYn @@ -115240,10 +121147,10 @@ kWR iWk vHo vHo -iis -iis -iis -iis +aWV +aWV +aWV +aWV aWV heR heR @@ -115253,33 +121160,33 @@ qeX qeX cqj qeX -cmp -cnL +vNo +idO iLm -fLr -bES -fYF +vXt +prV +qXc jEG mqQ -rde -fYF +eyP +sWl rHB -ivM -hXT -xsC -irh +yca +eoj +biO +fwv rFk eKh eME xKg kxL -uFM +wqk bWI glH lEe -uvh -hXT +uHd xsC +mJg vBN pgN rRy @@ -115292,7 +121199,7 @@ idq hDg hDg ewA -hDg +xyn hDg fQp aWH @@ -115475,8 +121382,8 @@ bfw kHv woT gNr -jYE -llv +wlx +agq lDE lDE hAm @@ -115485,8 +121392,8 @@ lDE lDE kTW vMU -fLr -hRd +vXt +rBE bUO aqo fVx @@ -115495,51 +121402,51 @@ inT whZ bqR ecw -fwP +omw sjC -iis +aWV dNc rPQ qCe aWV dcE gmE -gmE +pxK bTU tBo tBo tBo -tBo +ipi deJ -vNo -gHa -mBb -jDi -iyn -oXE -oXE -tYN +nbU +iLm +vXt +prV +djc +mAY +qOG +kaF iyn dGy lXM -hXT +oJe fdb +ggR +jdH irh -jeq -bLK elP hrm gob -uFM +xig ocq -tMg -lEe +uFM +sgN vmJ rYF -rMv +eVr tYE -oYy -cfi +rSj +rSj rSj tzS taS @@ -115547,7 +121454,7 @@ rxx fQp fqn hDg -mTp +lCY oAz toj hDg @@ -115720,7 +121627,7 @@ rpU rpU pfu gqp -pUr +jzD gPW nvR aXe @@ -115732,17 +121639,17 @@ bfw kHv izF gNr -tfr -llv -llv -llv -ayD -lkj -lkj -caF -ckZ +ruA +pkw +jJE +jJE +wHz +jJE +jJE +fQL +idO vMU -fLr +vXt hRd jCt xSk @@ -115754,7 +121661,7 @@ ojx ecw fwP sjC -iis +aWV mYf qSv sSY @@ -115762,39 +121669,39 @@ lll dcE gmE rVE -eRs tbZ -uLt cZE +uLt bnl +rAL mAr ojj -oNM -fLr -fkD -uNV -kVu +iLm +vXt +bHV +bHV +prV cRb -rde +cav prV -dwP bHV -jxx +bHV +fMx lXX -irh +lgK yjD -qep +irh afl kDP ofr -irh +htj khC -jcj +irh nKB ccH fDk -xDs pdO +azo pmL oTO nzj @@ -115996,10 +121903,10 @@ weF qqz bOk bOk -bOk +uTJ wrI -fjt -xDR +vMU +vXt vuO ilg wmy @@ -116009,63 +121916,63 @@ vzB gDG lWc ecw -lll -lll -iis +uoF +uoF +aWV wTU vCW jkn -lll +gwk heR gmE mcX -eRs iHB eQA eLc jzP +jmG hXc -nYZ -uFo +ojj +iLm lkC fBQ -fkD -fkD -fkD -pEO -pEO -rde -rde -rde -pEO -irh +rJL +xca +dwh +hgN +rWZ +atZ +fXP +fMx +aZG +fMx +aZG irh jIf jIf -jIf irh irh -pEO -pEO -rde +irh +irh +ioo klI ioo -pEO pdO -pQV +pdO +pLV pLV pdO -uKM +iia uKM pdO -pdO -fDg +fXP +fQp hDg hDg pYI hDg hDg -nZF +eOh aWH xsh nZF @@ -116254,73 +122161,73 @@ kCP ofi rHD hAi -fLr -fjt +idO +vMU tWt qQd qQd -mmS +qQd qQd qQd qQd jFU bRx ecw -lll +uoF eYe mqm duE ibO ibO -lll +uzg dcE gmE mbY -eRs dmL +xUf uGx -jyd lVt +eRs pGV -kzf -uFo -gxP +ojj +iLm +byR gTL pJS -pJS -vgD +eDq +hOG qkm pJS pJS -pJS -pJS +ghu +pLL pJS ghu -uxY pJS +uDa pJS pJS ghu -czJ +pJS vMv +pLL pJS +siA pJS -hOG -iev hCs ghu -vgD pJS pJS +reg pJS pJS wWy xZn pJS bMo -ghu +ctm iev -xZn +jkJ eMi nZF aWH @@ -116511,14 +122418,14 @@ qWj qST qST ipt -bsH +qUD xXU rnd mVm dtx iqC qHB -dtx +bdW nvX sJy rHq @@ -116527,9 +122434,9 @@ eLl lzk lzk sAm -wtz +vnh iXw -lll +uzg heR gmE czp @@ -116540,8 +122447,8 @@ bBK eRd vnz hJA -hnb -vYe +pfR +bic wAQ iFU iFU @@ -116746,7 +122653,7 @@ izW iXP iXP iXP -vTV +nQE xCq jNL eia @@ -116764,14 +122671,14 @@ fJz bxK fJz fWt -fJz -iIi -aFP +uYY +kuw +pjj jAT -fLr +idO fjt -jOi -qQd +vXt +iRC qQd qQd qQd @@ -116781,7 +122688,7 @@ fDb eIm tXS uoF -fkp +eYe lKk cSO jMo @@ -116796,25 +122703,25 @@ kkd egp scJ gNL -dXh -vlK +idO +aZs fLr gTL pJS pJS -bkv pJS +hOG pJS pJS bLu +xgT pJS pJS pJS pJS -vhv -pJS pJS pJS +xgT pJS bSD pJS @@ -116832,9 +122739,9 @@ pJS pJS pJS bMo -pJS -pJS -pJS +vnV +vnV +vnV eMi eGc nZF @@ -117000,14 +122907,14 @@ iFB iFB vyA jZs -cpQ +iXP iXP rpU -sjq +iMX mIa jMr -dCm -dCm +fMH +fMH vCE uka uka @@ -117020,14 +122927,14 @@ luY gIE ykn luY -dCm -dCm -voV -dCm -dCm -jrV +dTL +qTT +dTL +sWH +dTL +wrI fjt -fLr +vXt drX qye rYu @@ -117037,9 +122944,9 @@ pZX gDG lkt tXS -lll -lll -iis +uoF +uoF +aWV yes xvw tRt @@ -117047,21 +122954,21 @@ lll heR gmE xef -vFZ knq kCN +pZv hoq cER edz -vnV -vlK +idO +aZs lkC fXP iXg +jli wGD -tep -wGD -wGD +uAi +jli jVu fXP xEm @@ -117089,7 +122996,7 @@ pHl pHl wgS uqo -yjM +pJS pJS pJS uqo @@ -117260,10 +123167,10 @@ nvv rsb rsb rsb -gnV +hOJ rpU pPk -dCm +fMH dcE dcE dcE @@ -117277,41 +123184,41 @@ dKv xWY iAu bGJ -dCm -eOB -nIq -jUS -voV -fLr +dTL +prZ +rCh +cMj +sWH +idO fjt pKT drX nol -qKB -qKB +oNM +vkQ wKi pZX qhq eIm wFP -fwP +omw sjC -iis -aNb +aWV +jwI gzt jFp lll dcE gmE eqa -vFZ jEw siZ siZ jEw +vTB juH -ibo -wCP +idO +aZs jMi tDY tDY @@ -117345,10 +123252,10 @@ cPY tNP tNP fAl -jkr -ruK -szy -djL +bCD +pJS +pJS +pJS pQc pQU nZF @@ -117517,10 +123424,10 @@ xCq cGa nUC cGa -eds +nsr rpU gOR -dCm +fMH dcE dcE jph @@ -117530,19 +123437,19 @@ jph jph dcE luY -uJy -aYk +jHH +cVQ cBB -bNu -dCm -emL -jGQ -rJe -voV -fLr +rZH +dTL +jaY +ini +eBo +sWH +idO fjt -qtW -jFV +drg +drX maO wlY twp @@ -117553,28 +123460,28 @@ eZA tXS fwP sjC -iis +aWV nFA oSb gBG aWV dcE gmE -gmE +oRD ruc pcf pcf pcf -pcf enE vNo +idO aZs -fLr +vXt tDY kVK eXe xqk -eXe +nps lHK cYT jJX @@ -117602,10 +123509,10 @@ pHc thf thf vXQ -fAl -tUH -nLp -nLp +lPw +pJS +pJS +pJS eap fxY qBm @@ -117774,10 +123681,10 @@ iol eet jMr ibK -jqv +sBv oFC -nhP -dCm +sxO +fMH heR heR jph @@ -117791,15 +123698,15 @@ luY luY luY luY -dCm -cbS -rpL -hmY -dCm -rdx +dTL +itm +eBo +rNa +dTL +vdk fjt qtW -jFV +mmS svp sqQ bMd @@ -117823,15 +123730,15 @@ qeX qeX qeX qeX -keq +vNo idO aZs -fLr +vXt vUS wDZ quJ egX -ghV +aOE quJ wDs jJX @@ -117861,8 +123768,8 @@ ntN nTK fAl tVo -nLp -nLp +szy +djL eap eap qhH @@ -118025,17 +123932,17 @@ dcE dcE iFB iFB -dCm -dCm -dCm -dCm -dCm -dCm -pfK -dCm -dCm -dCm -dCm +fMH +fMH +fMH +fMH +fMH +fMH +xIT +fMH +fMH +fMH +fMH dcE jph frY @@ -118043,24 +123950,24 @@ uUT nyA jph dcE +bbn +iqX +kJG +fDV +kiY dTL -oHs -xYf -fpM -gTH -dCm -jqo -eaw -tEt -voV -fLr +kfo +azj +reW +sWH +idO uHy qtW jFV tgT sGj -qKB -ckd +nRN +goK pZX gyq wXk @@ -118068,7 +123975,7 @@ rTR aWV bCC lZn -aNb +vFZ opj wXU aWV @@ -118081,9 +123988,9 @@ oOx bpx oht kfA -fLr +idO aZs -fLr +vXt vUS afL quJ @@ -118099,7 +124006,7 @@ xhn sns jZc wSs -mHi +xcq mZA fTt kTJ @@ -118120,13 +124027,13 @@ fAl jYq nLp hFi -mUi -wKb -wKb -rdN -wKb -wKb -wKb +dVx +ohG +ohG +uPY +ohG +ohG +ohG jWB odZ nCo @@ -118281,18 +124188,18 @@ dcE dcE dcE dcE -dcE -dCm -akS -wag -gaj -uHO -dXy -tmO -xNe -wIW -tAV -dCm +lnB +fMH +nrT +mTo +sQK +ixG +hMJ +sZA +hSe +hoe +crP +fMH heR jph oIT @@ -118300,20 +124207,20 @@ xYy iOE jph heR +gVQ +aOI +oFa +eJS +tHu dTL -jDr -oNp -sPC -sOw -dCm -rpL -lHY -uyD -voV -fLr +nAv +mTv +lYH +sWH +idO fjt qtW -jFV +mmS svp hEE qKB @@ -118340,7 +124247,7 @@ dBm hsR crk ucO -crk +fNB tDY dqj oJs @@ -118378,12 +124285,12 @@ vdl hFi sQJ gzh -wKb -uUX -eEv -eEv -uWu -wKb +ohG +npw +oHF +oHF +hwQ +ohG fTM odZ nCo @@ -118538,18 +124445,18 @@ dcE dcE dcE dcE -dcE -dCm -nit -eOn -uHO -dCm -dCm -dCm -rvH -dCm -dCm -dCm +heR +fMH +qGC +pSi +ixG +fMH +jnR +fMH +cQv +fMH +fMH +fMH dcE jph jph @@ -118557,27 +124464,27 @@ jph jph jph dcE +bbn +jOZ +koH +wzi +eQZ dTL -nCC -sjO -skC -qQj -dCm -dCE -bLf -jiv -dCm -wKV +jOG +eBo +rNa +dTL +rdx fjt -qtW -jFV -svp +ewt +drX +psk sGj qKB cbC pZX cfx -bic +eaj fDs aWV xTt @@ -118595,9 +124502,9 @@ nVc hQU drn cRa -fLr +idO aZs -fLr +vXt gNZ sfM guk @@ -118620,7 +124527,7 @@ gBg kYd vSX neB -nwd +ijJ hsx xYS tNP @@ -118632,15 +124539,15 @@ lei lmc fAl lGy -ajB -uxt -uxt -pHx -ltC -ltC -byJ -wLf -wKb +mSU +tyv +tyv +dvt +qOE +qOE +aAM +idf +ohG wCv qEE nxh @@ -118795,18 +124702,18 @@ dcE dcE dcE dcE -dcE -dCm -yiy -nAS -nit -nAS -dXy -hqg -rvH -ecP -nPB -dCm +heR +fMH +jln +kWL +hMJ +qwG +hMJ +ofs +cQv +qEj +cYn +fMH dcE dcE heR @@ -118814,23 +124721,23 @@ dcE heR dcE dcE +bbn +cXF +nZq +pJt +iTF dTL -rSu -uzN -oqd -mkv -dCm -nZb -ayn -bXg -voV +ipv +lik +eBo +sWH pVy fjt xQW drX jtU fry -qKB +cuL ckd pZX xms @@ -118839,7 +124746,7 @@ tXS aWV bzS eAg -ndK +nYZ ndK cif gZn @@ -118848,13 +124755,13 @@ aPV aWV hxd gnf -drn -drn -drn -cRa -fLr +dEN +dEN +dEN +lwJ +idO aZs -fLr +vXt aTx afL quJ @@ -118888,30 +124795,30 @@ rPd rPd omG fAl -pcR -uxt +wmC +cOE jbW qnM -wKb -wKb -hGD -wKb -wKb -wKb -wKb -wKb -wKb -wKb -ozw -wKb -wKb -wKb -wKb -wKb -ssm -wKb -wKb -wKb +ohG +ohG +rYR +ohG +ohG +ohG +ohG +ohG +ohG +ohG +cBs +ohG +ohG +ohG +ohG +ohG +tFO +ohG +ohG +ohG eap hxg eap @@ -119052,38 +124959,38 @@ dcE dcE dcE dcE -dcE -dCm -dCm -dCm -dCm -dCm -hmM -dCm -vRi -dCm -dCm -dCm -ega -dCm -dCm -dCm -dCm -dCm -dCm +heR +fMH +fMH +fMH +fMH +fMH +fMH +fMH +qtl +fMH +fMH +fMH +pRO +oDB +pRO +pRO +pRO +oDB +pRO +bbn +qbI +uzB +cmW +fvb dTL -uNG -jQu -oqd -yeu -dCm -emL -bXg -nZb -voV -fLr +fnH +mSQ +bKI +sWH +idO fjt -fLr +qpG drX qvg iEI @@ -119104,14 +125011,14 @@ kBA hAl aWV efC -hzY -drn -xtC -drn +gnf +dEN +dEN +dEN lwJ -fLr +idO aZs -fLr +vXt tDY qTl ghV @@ -119146,29 +125053,29 @@ rkW lmc fAl bCx -uxt +cOE sQJ -wKb -wKb -yfj -lAJ -ukZ -uMT -qyU -lKV -rHN -wKb -vht -oxM -ftK -wKb -mJb -cJU -wCj -mjB -lAJ -rFr -wKb +ohG +ohG +pxz +pBv +trv +jHb +gDe +fmq +pBf +ohG +fXF +qxV +gcb +ohG +mxJ +bpf +hSq +uZR +pBv +tFa +ohG eIO eIO eIO @@ -119308,52 +125215,52 @@ dcE dcE dcE bPW +ixf bPW bPW -bPW -mYN -fNv -sFV -dCm -dCm -dCm -kqk -ydI -qNg -dCm -dCm +bIf +dOE +sUH +mCi +dlK +wEU +cpl +ohH +gwN +eRc pRO -aSd -tFy -xbz -fha -mrq -pRO -dTL -mRq -vKW +iTw +eLV +vzf +iQE +iGe +kSR +bbn +bbn +rXM +aas +bbn +xHE +kEY dTL -dCm -dCm -dCm -voV -rnp -oUO -toM +sWH +fYo crk +toM +fNB drX drX wJn -npf +drX drX drX cfx -bic +eaj fDs aWV aWV aWV -eFq +aWV aWV aWV aWV @@ -119366,9 +125273,9 @@ hCy bCv wBv nGH -fLr +idO aZs -fLr +vXt suy nfG quJ @@ -119402,30 +125309,30 @@ ntN gPd qyA fAl -pcR -ajB +tUH +frP nLp -wKb -mWI -lAJ -rps -lAJ -uMT -qyU -qyU -eEv -aRg -qNq -eCO -htb -gnU -uuE -hHP -pTX -pOW -aAk -fGM -apE +ohG +fxL +pBv +nCp +pBv +jHb +gDe +gDe +oHF +xGN +dPq +wwn +mgN +aBz +vbx +aMl +vxa +gXH +bZI +lzH +nNA eIO ncO eIO @@ -119564,65 +125471,65 @@ dcE dcE dcE heR -bPW -dYl -oYn -fVa +ixf +xxh +rnV +lwu vwr vwr +new +qAk vwr -ukM -qOv -lwu -uen -lIk -lIk -dgR -bqA -pRO -rEG -hXE -pKp -dKa -qGv -pRO -wcT -kqt +vwr +mma +xEt +vtP +hrE +xgK +kaq +vfe +vfe +mUt +kaq +vfe +xgK +hxA +eDI vfe ofd -otb vfe -gpU -fLr -fLr -fLr +svH +vfe +vfe +fwq +dlx fjt gxP -fLr -fLr -fLr -fLr -fLr -fLr -fLr -fLr -pzy -fLr -fLr +bVS +itA +itA +upE +itA +itA +itA +itA +iyI +itA +itA wZy -fLr -fLr -fLr +itA +itA +itA mMA -fLr +gpU obn dFt hHd itA -fLr -fLr -fLr -fLr +itA +itA +itA +itA aKc aZs fLr @@ -119631,12 +125538,12 @@ afL kzm kFt voP -cKR +egH qez gRB anp tIq -olM +vXv tIq gde fXN @@ -119659,30 +125566,30 @@ vWv vWv lmc tNP -mgh -uxt +xIp +cOE cOe -wKb -cpD -rps -lAJ -eEv -pEI -qyU -qyU -yfj -wKb -txT -siM -fdI -wKb -wjO -weK -dZs -fGM -eyg -vkl -wKb +ohG +vhE +nCp +pBv +oHF +hWJ +gDe +gDe +pxz +ohG +pxe +ejB +jEd +ohG +jBr +rdz +uQi +lzH +gBe +wEg +ohG eIO eIO eIO @@ -119816,44 +125723,44 @@ dcE dcE dcE dcE -eHF +fRO dcE dcE -eHF +fRO heR -bPW -nIH -vwr -vwr -vwr -ibr -qek -qek -qek -qek -tWR -tWR +ixf +xxh +aQq +fMS +fMS +lAo +olG +olG +olG +tFB +olG +vPE tWR -bIS -ebC -pRO -rPs -kdG -gqh -jOT -iQR -etf -xWy -uAm -jyX -jyX -lCf -lCf -chU -cib -cib -cib -gki +fjo +xgK +vfe +uQl +tCt +bFl +pSv +laC +fdN +laC +lnE +rdW +afQ +ork +rjc +kVf +kVf +wSn +ncC +ber cib cib cib @@ -119867,7 +125774,7 @@ ygM cib cib cib -jiE +rXt aZs aZs aZs @@ -119881,7 +125788,7 @@ aZs aZs aZs aZs -bTZ +jcH vXt gNZ bXO @@ -119911,35 +125818,35 @@ jFH uGP kxo iCa -lbe +fdz xIl idj uix tNP pcR -izU +wNo dxN -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -dvu -dNu -nlo -wKb -wKb -wKb +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +wFi +dXE +xZu +ohG +ohG +ohG eap hxg eap @@ -120073,65 +125980,65 @@ dcE dcE dcE dcE -eHF -heR +gMc heR -eHF heR -bPW +gMc +oTg +jOO ixf ixf ixf -oOz +vra ixf ixf -dtu +iqe ixf ixf ixf -bPW -fyw -bIS -nMp +jOO +hWN +mTJ pRO -wIK -wfk -bDQ -lvv -jxl pRO -sKT -qAd -ezL -vfe +pRO +pRO +pRO +pRO +pRO +pRO +cyD +kqu vfe +kaq vfe -gpU -fLr +piW +sNz +mTT fwq nkF -jRH -fLr -fLr -fLr -fLr +qNe +qNe +qNe +qNe +qNe qsb -nkF +ruK cwq oHu -fLr -fLr -fLr -kuT -fLr +qNe +qNe +qNe +qNe +qNe wTx tNr vOs tNr -nPW -fLr +ghA +qNe fom -fLr +qNe tXN nzd oGH @@ -120158,8 +126065,8 @@ qSk qSk qSk rOA -aRb -nvA +rsJ +grc hZe uZn tsJ @@ -120174,7 +126081,7 @@ oof exo tNP pcR -uxt +cOE xaz bQe qYi @@ -120190,11 +126097,11 @@ jSD hJE ebL xhF -cWU -fwz -aMa -ybh -wKb +gNx +jbL +qYK +fZh +ohG heR dcE dcE @@ -120330,10 +126237,10 @@ dcE dcE dcE heR -eHF +fRO heR -eHF -eHF +gMc +fRO heR ixf osO @@ -120347,25 +126254,25 @@ osO osO osO ixf -jcz -bIS -gcm -pRO -pRO -pRO +ulw +xJJ pRO +vqx +fQG pRO +aKJ +bOf +hsU pRO -pRO -uCA -rVT -hQV -lTA +xJs +uyR +eCA +rls +dCm dCm dCm dCm dCm -oKg oKg cLQ cLQ @@ -120376,21 +126283,21 @@ oKg tPU tPU tPU -uzs -tPU +ayi tPU tPU +jMu rWE vai rWE -shs +dtP lSU fbv wMr bFb -hKy +wMr wvI -shs +wqB nAB nAB abT @@ -120415,8 +126322,8 @@ qhB bjq qnC rOA -jBs -aah +fRo +uhz vzq uts uir @@ -120431,7 +126338,7 @@ nCI ifV fAl lGy -ajB +frP xaz bQe iLy @@ -120447,11 +126354,11 @@ tWZ eoH mrC mrC -cWU -cer -qAw -jHD -heC +gNx +jkk +jhg +rOE +nsn dcE dcE dcE @@ -120584,12 +126491,12 @@ dcE dcE dcE dcE +fRO +gMc +gMc +gMc dcE -dcE -eHF -eHF -dcE -eHF +fRO cOu cOu ixf @@ -120604,40 +126511,40 @@ kEx osO osO ixf -jcz -bIS -wmn +ykc +oUr pRO -pmn -tFy -pIr -noC -gPA pRO -kqF -qAd -lMe +uUS +pRO +hGy +aHB +ttw +pRO +szf +dnJ +piN rzK dCm -xbZ -rfE -ugX -oKg -oJx +kID +kID +rCP +dCm +ghI bZx kJF kCE ftk -pqW +vfX oKg -tQt +tVT xan -tNG +vWe vWe baw -dAW +vIE tPU -tuw +gqv vPN vQM shs @@ -120646,7 +126553,7 @@ shs ldX qLg shs -shs +eaM shs kdC vZd @@ -120704,11 +126611,11 @@ uLw fEs sUm qRy -cWU -pGk -iAr -oxi -heC +gNx +kvV +cvq +ibE +nsn dcE dcE dcE @@ -120841,12 +126748,12 @@ dcE dcE dcE dcE -dcE +gMc heR -eHF +fRO cOu cOu -eHF +gMc heR heR ixf @@ -120861,43 +126768,43 @@ osO osO osO ixf -lOh -bIS -mLH +nuR +wjx pRO -rPs -kdG -iNK -jOT -iQR -fVj -xWy -aQj -dhL -sfq -mYK -bNY -bNY +tZf +czG +gij +gbw +sux +wBY +iFK +pjp +sPl +tFj +kPe +hlD +bXk +bXk sCP +dCm +uzV +tCN +swU +gzc +cWF +ugp oKg -xLj -nGp -nGp -xEl -xEl -xfq -oKg -oTr -bfc -sUi -gmc -scy -aVP -gug -qoD +hqV +dBE +hAy +fBT +bPS +tie +nUr +brb vPN -aCa -abs +caF +okC bgW iDe dkd @@ -120961,11 +126868,11 @@ cpA gLs gvI tOg -cWU -vGl -dNu -aYq -wKb +gNx +bWR +dXE +qwb +ohG dcE dcE dcE @@ -121096,14 +127003,14 @@ dcE dcE dcE dcE -dcE -eHF -eHF heR -eHF -dcE -dcE -dcE +heR +fRO +heR +miW +cOu +fRO +fRO heR dcE ixf @@ -121118,31 +127025,31 @@ osO osO osO ixf -jcz -bIS -wcL +ykc +oUr pRO -wIK -ekB -bDQ -lvv -pWh +pYg +gAh +cpF +vGu +iMO +gBu pRO -err -qac +qpJ +kqu lMe -rzK +asl dCm -voi -bNY +kID +bXk xGU -oKg -wOR -wnn +dCm +mQA +kwE wma -dPu -dIB -enh +lAn +jzk +ror oKg tPU rJi @@ -121151,10 +127058,10 @@ sVq tPU wOq tPU -aCa +mnK vPN -aCa -abs +caF +dXh skr npb npb @@ -121182,9 +127089,9 @@ mJp wps wps arT -lWg +inZ bwM -jEz +inZ arT wps wps @@ -121218,11 +127125,11 @@ vSw adU iKm qSG -cWU -hqZ -dNu -aaS -wKb +gNx +tMT +dXE +qod +ohG dcE dcE dcE @@ -121352,18 +127259,18 @@ dcE dcE dcE dcE -aWc -cOu -cOu +nsD +qir cOu cOu cOu -miW +qir +wjP cOu cOu cOu cOu -bPW +jOO mmi osO osO @@ -121374,10 +127281,9 @@ osO osO osO mPB -bPW -jkR -bIS -ibc +jOO +sUK +pHJ pRO pRO pRO @@ -121385,21 +127291,22 @@ pRO pRO pRO pRO -gmh -qAd -lMe -epE +pRO +eJp +dnJ +ugC +bfl dCm lKb -bNY -rCP +mFU +wqU +dCm +oKg +oKg +hda +oKg +oKg oKg -vLZ -aWT -wma -bqS -gii -uss oKg tPU wZg @@ -121410,8 +127317,8 @@ aTw tPU vfV vPN -aCa -abs +caF +dXh rvu qOw osS @@ -121475,11 +127382,11 @@ bdc aqe qhv ffC -cWU -viy -rYH -men -heC +gNx +nda +qpH +hLW +nsn dcE dcE dcE @@ -121610,14 +127517,14 @@ dcE dcE dcE dcE -dcE -eHF -eHF heR -eHF -dcE -dcE -dcE +heR +fRO +heR +bhQ +cOu +fRO +fRO heR dcE ixf @@ -121632,28 +127539,32 @@ osO osO osO ixf -lOh -uVY -dFT +dSu +lzy pRO -mcY -tFy -qNn -nym -clF +xYC +fQG pRO -ntw -qAd +udu +wBT +iGO +pRO +oJt +dnJ emE -iOp +kNE dCm wzs -bNY -hTt -udl -udl +kux +lgx +dCm +hwL +reI +pXL +mOc +cal +qrK udl -kAx udl udl udl @@ -121661,14 +127572,10 @@ nnH nnH nnH nnH -nnH -nnH -nnH -nnH xzX vPN -aCa -dHq +caF +uxW uxW pRt gyN @@ -121732,11 +127639,11 @@ fdg sJX dag wrf -cWU -isv -gjM -jRZ -heC +gNx +lIF +vIG +kaI +nsn dcE dcE dcE @@ -121869,12 +127776,12 @@ dcE dcE dcE dcE -dcE +gMc heR -eHF +fRO cOu cOu -eHF +gMc heR heR ixf @@ -121889,47 +127796,47 @@ osO osO osO ixf -jcz -bIS -dpT +xnL +azG +pRO +pRO +jOJ pRO -vTH -hXE -ogG -wDQ -pgQ +uAX +sEV +uAX pRO -sKT -qAd +oiV +dnJ vfe -beb +ugr dCm -bNY -vFG -khn +qfB +knp +tQl +dCm +llC +jhz +tde +brf +cdJ +brf +sxR +iwg +yfS udl -hiS -hpB -iRx -jNT -xKz -kXy -nnH -rIw -ijH -gbd -vZc -hlG -bTl +cjQ +aoi +bGv nnH -iaE +wFc vPN -aCa +rky vjc -abs -skr +shs +pRt txS -jBx +cQd jYm swZ shs @@ -121975,25 +127882,25 @@ arT gnR qfr vSq -evO -evO -evO -evO -evO -svL -cWU -cWU -cWU -cWU -cWU -cWU -jvL -cWU -cWU -clh -kgi -lBo -iMp +gNx +gNx +gNx +gNx +gNx +mmW +gNx +gNx +gNx +gNx +gNx +gNx +mRO +gNx +gNx +uSK +bfC +rHf +bIX dcE dcE dcE @@ -122126,12 +128033,12 @@ dcE dcE dcE dcE +fRO +gMc +gMc +gMc dcE -dcE -eHF -eHF -dcE -eHF +fRO cOu cOu ixf @@ -122146,47 +128053,47 @@ osO osO osO ixf -jcz -bIS -kQf +ykc +oUr pRO -rPs -kdG -iNK -jOT -iQR -hPL -xWy -qAd +mOz +czG +gij +iPx +sux +wBY +nhc +pjp +tje vfe -hpo +uPZ dCm -crG -idM -idM -idM -uRu -bDZ -iRx -iRx -iRx -eOD -nnH -gWA -jmT -jmT +lqw +dCm +dCm +dCm +brf +fmS +pXL +yfH +qZY +lxy +qNp +xIs +uRA +udl +xAm eQF -vzO -ePm +tns sKM xtG vPN -aCa -rnC -abs +rSX +hDF +shs dyS fgd -jBx +fVE uJs lkY shs @@ -122232,25 +128139,25 @@ arT hFi qfr sQJ -xYL -gtd -gGl -bgm -rKA -fUu -wKb -bQz -xqy -eEv -wKb -eEv -eEv -eEv -wKb -wKb -kmQ -wKb -cIB +jGn +oHF +chv +uyA +ohG +wVY +ohG +qaw +lbJ +oHF +ohG +oHF +oHF +oHF +ohG +ohG +jAx +ohG +bxv dcE dcE dcE @@ -122386,10 +128293,10 @@ dcE dcE dcE heR -eHF +fRO heR -eHF -eHF +gMc +fRO heR ixf osO @@ -122403,44 +128310,44 @@ osO osO osO ixf -lOh -bIS -qnN +rnK +taB pRO -fZq -ekB -bDQ -lvv -aHe +xOU +gAh +xHS +lhR +iMO +but pRO -tqQ -ccZ +cyD +rYw qMN -pOF +aSP dCm -tMZ -idM -qsC -cTX -bDZ -bDZ -nMu -cqp -gwg -eRR -nnH -wqg -jVp -kBx -kaM -eQF -aKj +qfB +dTs +rWN +dCm +efg +oPO +brf +brf +lxa +nQu +wpg +ruF +nai +udl +aHb +vzO +uaB sKM xtG vPN -aCa -dHq -dHq +caF +abs +abs pRt dyl nSX @@ -122489,25 +128396,25 @@ arT lim efJ rvs -rKA -rKA -rKA -rKA -rKA -fUu -xah -ktt -xXx -pgA -wKb -eEv -eEv -eEv -eEv -eEv -eEv -eEv -cIB +ohG +ohG +ohG +ohG +ohG +wVY +gSH +ulV +aXY +kRX +ohG +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +bxv heR dcE dcE @@ -122643,26 +128550,25 @@ dcE dcE dcE dcE -eHF -heR +gMc heR -eHF heR -bPW +gMc +oTg +jOO ixf ixf ixf -oOz +vra ixf ixf -dtu +xsq ixf ixf ixf -bPW -hCB -bIS -tYb +jOO +ejc +oUr pRO pRO pRO @@ -122670,33 +128576,34 @@ pRO pRO pRO pRO -gnw -qAd +pRO +vme +kgM vfe -fWc +vmO dCm -cNO -idM -idM -idM -jUp -bDZ -bDZ -klp -jCk -nxs -nnH -dEg -hCe -cOf -qWF -eQF +nBR +dCm +dCm +dCm +mlj +jjZ +udl +udl +qPv +udl +udl +udl +udl +udl +oZe +nrZ eQF -bHa +dGQ fLb btE -aCa -abs +caF +uBY cRX sIO igx @@ -122751,19 +128658,19 @@ ofc wWx gbH ewD -fUu -wKb -pcL -fRe -eEv -ooy -eEv -eEv -eEv -eEv -eEv -eEv -eEv +wVY +ohG +cNf +dSq +oHF +bPT +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ cIB heR heR @@ -122900,60 +128807,60 @@ dcE dcE dcE dcE -eHF +fRO dcE dcE -eHF +fRO heR -bPW -vEU -uDv -vwr -vwr -vwr -vwr -vwr -vwr -vwr -vwr -jcz -jcz -bIS -pDt -tYz -uus -qVd -cVN -bXH -aQM -cVN -cVN -dux -ezT -pOF +ixf +xxh +vNl +utS +utS +jLS +eeO +eeO +eeO +nuh +eeO +lsy +bPq +oYy +pRO +eel +fQG +pRO +xkG +nEX +flU +pRO +oiV +uKr +csr +dCm +dCm +joA +uaI +uaI dCm -ade -rdl -oMd udl -cew -xyX -dVM -bDZ -jCk -fmx +udl +udl +vXi +ofY +euH nnH -cmR -evj -evj -gaL -jnk -rCO +phn +pcE +hsj +lwd +eQF +mJY sKM xtG vPN -aCa -abs +caF +uBY hBM npb npb @@ -123008,19 +128915,19 @@ kKJ gkn dJb ewD -fUu -wKb -wKb -wKb -wKb -wKb -eEv -eEv -eEv -eEv -eEv -eEv -eEv +wVY +ohG +ohG +ohG +ohG +ohG +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ cIB wKb heC @@ -123162,54 +129069,54 @@ dcE dcE dcE heR -bPW -aug -vwr -pAz +ixf +xxh +soR +jwC iSE -kjN -fsf -fsf -vHO -vDV -laQ -laQ -jjn -hfx -jjn -mkI -cxQ -cxQ -xUV -olU -olU -olU -olU -laK -ffR -pOF -dCm -cNO +vwr +xRD +vwr +whn +psp +vtP +cBF +vtP +akk +pRO +pRO +jOJ +pRO +iyV +jBS +olB +pRO +oiV +qXh dCm dCm +kID +xGb +hnI dCm dCm +taf +dXy dCm -udl -iwp -jCk -pGr +hAb +ofY +euH nnH -tIT +tOG eQF lgb -nwC -eQF -aim +pUU +auf +pCZ sKM xtG vPN -aCa +caF abs yeG knB @@ -123265,19 +129172,19 @@ sOT bJj dsV ewD -fUu -cCI -jyL -jyL -siG -wKb -eEv -eEv -eEv -eEv -eEv -eEv -eEv +wVY +kkw +aGx +aGx +rhT +ohG +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ bVs lJQ alT @@ -123423,57 +129330,57 @@ dCm dCm dCm dCm -pBG -fUE -nts -aiv -aqG +kqh +nHG +qya +fOF +xCj bPW -tgp -lOh -qSP -wPP -eQg -dCm -dCm -dCm -dCm -oZA -dCm -dCm -dCm -dCm -dCm -dCm +gbo +byW +jPe +aYF +pRO +mOz +czG +gij +iPx +sux +wBY +mFE +tXw +kIr dCm -tMZ +kID +isp +isp +isp +isp +upk +isp +isp dCm -fIg -pfx -kKy -fIg -udl -qKs -jCk -sgU +iHO +enk +vrR nnH -bxl -eTZ -cJE +rOX +bWm +dPv eQl -iyI -pBL +wRL +llf nnH xtG vPN qwa shs -shs +bOb shs ldX ldX -eaM shs +bOb shs abT abT @@ -123512,7 +129419,7 @@ arT arT arT arT -arT +wgE arT nLp lDo @@ -123520,21 +129427,21 @@ vyF ewD rJv eUD -evO -evO -mTH -cWU -cWU -jyL -jyL -wKb -eEv -eEv -eEv -pDf -eEv -eEv -eEv +gNx +gNx +kOK +gNx +gNx +aGx +aGx +ohG +vQQ +vQQ +vQQ +kSI +vQQ +vQQ +vQQ wKb koi wKb @@ -123675,53 +129582,53 @@ dcE dcE dcE dcE -dcE dCm -rmC +dCm +xhV ybW dCm dCm dCm -vFr +rSD dCm dCm dCm dCm -qvU +dMG dCm dCm dCm dCm -cqh -ntW -cNO -cqh -ozE -poZ -cCv -poZ -iqy -bsa -iqy -fIg -cNH -fIg +uvw +xHS +sri +iMO +xts +dCm +dCm +jNW +dCm +kID +isp +kID +lsa +xZM dCm dCm uBD +dCm udl -udl -wCr +muK udl nnH sKM nnH sKM -tlh +hQh sKM nnH -nnH -bCD +jOi +xtG vPN glC oCe @@ -123732,9 +129639,9 @@ cLL mYd iYK shs -nCg -nEO tSp +nEO +vqs abT tGN rmw @@ -123774,30 +129681,30 @@ pps hFi tXs lEP -rKA -rKA -evO -evO -pPg -aLd -aLd -cWU -cWU -cCI -wKb -wKb -heC -heC -vaD -heC -heC -wKb +ohG +ohG +gNx +gNx +pAX +dPl +dPl +gNx +gNx +kkw +ohG +mLm +bSt +bSt +iQj +bSt +bSt +mLm wKb mNN wKb wKb wKb -roY +koi heC dcE dcE @@ -123857,29 +129764,28 @@ dcE dcE dcE dcE -"} -(156,1,1) = {" -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +"} +(156,1,1) = {" +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE dcE dcE dcE @@ -123934,43 +129840,44 @@ dcE dcE dcE dCm -sbI +xBr +rpj gbJ +nHi +gRv +dXy +adv +mCO dCm -jhU +pcD +qjf +tGo +dXy +ily nit -isp -xBr dCm -wIW -qjf -isp -isp -ust -isp -isp +dCm +dCm +dCm +dCm +dCm +dCm +eMf +aAg +cqh +cqh cqh -hkm -hkm -hkm -hkm -hkm -hkm -hkm -hkm -voi -yeT dCm dCm dCm dCm tFd tCF -gex -itP -imq -wHp -arw +ppu +nmW +qGm +nQi +nQi nQi nQi nQi @@ -124001,18 +129908,18 @@ aCa upr qMi aCa -djL -uzj -txz +aCa +aCa +kgr tjR kxY -nLp +moO dOk hFi lim qVm hFi -nLp +uzj uVf lqr lAf @@ -124024,7 +129931,7 @@ hFi hFi hFi hFi -rMe +hFi gnT hFi hFi @@ -124033,13 +129940,13 @@ qfr hFi bnO bse -evO -aLd -aLd -aLd -aLd -aLd -cWU +gNx +dPl +dPl +dPl +dPl +dPl +gNx wNo oJz eyb @@ -124187,50 +130094,50 @@ dcE dcE dcE dcE -dcE -dcE +mXN dcE dCm dCm -nHi +dCm +dCm dCm adv adv +hXp +cOz +cOz +kqs isp -isp -isp -isp -isp -iZx -oTJ -nPB -dyG -pov -aMD -hkm -heR -heR -heR -heR -heR -heR -hkm -voi -yeT +tqv +eBi +eBi +mvT +eBi +ijL +eBi +lps +eBi +ijL +eBi +eBi +wKx +kID +kID +pBe dCm -ooK +lKG nvO owr rwW -jBK -kSN -ffj +mRU +wwd +fyo vTm qDe qDe rHk qDe -mIR +qDe iPT qDe qDe @@ -124258,9 +130165,9 @@ qMi qMi qMi fok -byE -aXa -epi +fok +fok +pfS aXa tjA aXa @@ -124290,13 +130197,13 @@ tXs qhd vRF mAe -evO -aLd -aLd -aLd -aLd -aLd -cWU +gNx +dPl +dPl +dPl +dPl +dPl +gNx owf kRI oYp @@ -124310,8 +130217,8 @@ unM wBO vij hri -wKb -acx +oTF +koi heC dcE dcE @@ -124444,44 +130351,44 @@ dcE dcE dcE dcE -dcE -dcE -dcE +mXN +heR dCm -jDY -inp -mHH -hQQ -lZQ -nws +syK +ddI +oPf +glF +adv +dXy +dXy itt -nws -ydH +fVp +dXy isp -pov +lZQ xqs xqs xqs xqs xqs xqs -dqJ -dqJ xqs xqs -dqJ -dqJ -jSf -jSf -qpc +xqs +xqs +xqs +xqs +hkm +rGY +hkm kOk kOk kOk kOk hdi -cHC -wZA -fct +iuN +gMB +iah frE iEk qrZ @@ -124490,40 +130397,40 @@ mGb spJ eJX qrZ -xtf +qrZ qrZ qrZ dko oDH oDH -gti -oDH -iYq -caE -dUe -oDH -bEJ -iKT -oDH -oDH -bZJ +jty oDH oDH oDH oDH oDH oDH +iKT +bZJ +bZJ +bZJ +dej +aCa +sVO +lqS +lqS +lqS xCW oDH dGi -oVz -nLp +aCa +kgr gZh hFi ajB nLp wLK -vOE +oVz nLp hFi jbW @@ -124547,13 +130454,13 @@ xEB hFi upt lZM -evO -aLd -aLd -aLd -aLd -aLd -cWU +gNx +dPl +dPl +dPl +dPl +dPl +gNx cMb lue vnp @@ -124701,39 +130608,39 @@ dcE dcE dcE dcE -dcE -dcE +mXN dcE dCm -xxd -mjh +awk +vdZ +hkm bTW -foJ +qRg bTW bTW -jjd +pkW +bTW bTW -jSf isp -pov +dZS xqs -vUm -pLP -vyp +xrI +bjH +uvf dqJ -vBX -mzN -hbO -eKF +cME +gpb +wkf +eZU gmd -iAH +guh dyt -jSf -bKC -vDL +hkm +hKr +oDZ kOk -aGG -aGG +tmG +tIa aGG hdi hdi @@ -124746,71 +130653,71 @@ jwa qKO qKO qKO -oDs -qKO +uln +cwA uDd bgT edJ qHJ vBZ -qKO -uln -qKO -qKO -qPj +pfM +iys +ldp +mHF eao +eao +wmg qPj -qPj -cjh -cjh +vkD +aqi mwS xCO nak -uKP +rRN wTn mQX -cjh -mHf -mHf +rVL mHf +tUg mHf +bQC mHf -rKA -cLq -nuP -awK -rKA -rKA -rKA -dHh -rKA -rKA -rKA -rKA -kRd -rKA -rKA -rKA -sVA -awK -xuU -rKA -cLq -rKA -awK +uAp +qVv +sai +bab +uAp +uAp +uAp +cZD +uAp +uAp +uAp +uAp +vVi +uAp +uAp +uAp +klQ +bab +mKb +uAp +qVv +uAp +bab oAN aXa -twv -rKA -rKA -rKA -evO -evO -aLd -aLd -aLd -cWU -cWU +nBS +uAp +uAp +uAp +gNx +gNx +dPl +dPl +dPl +gNx +gNx aSW aSW pQh @@ -124958,50 +130865,50 @@ dcE dcE dcE dcE -dcE -dcE +heR dcE dCm -iBG -oKN -bTW -oPu +fGQ +cWu +hkm +kmz +xDq mvu llK -fYt -nXr +hfL +cDF +bTW +nNi jSf -lnO -cNt -tkO -ovN -oUo +xqs +xPy +wHB klH lVD -uTK +szG fsw -ahT +ggX jHt jHt jHt -wJF -jSf -ucQ -wzB +stt +hkm +aDd +rtv kOk hPP qlF vaF +giG oOs -iKA lNZ ksm -qlf -tul -lge -xQU +duf +bAS +dzw +cnT jwa -qKO +hCL eYw eYw qKO @@ -125011,62 +130918,62 @@ gZW uqm qKO qKO -hbK -eYw -qKO -qgr +qPj +toT +hIS +xiy xiy -lmt +sta qPj -caQ -gNy +cjh +nJU qgI lMT mie vzr +mie nJU -nJU -mhP +cjh mHf gFB sLS pGs mHf -swp -gKL -mHx -mwj -qWv -rKA -bpB -gtd -lHT -rKA -dsR -djE -tpA -iCN -rKA -gZD -agO -agO -kAV -oLE -agO -agO -rKA -rKA -yli -iRa -rKA -bZq -tRG -bZq -evO -evO -mTH -cWU -cWU +tJH +hpr +pLS +kJk +kZq +uAp +iCV +lLN +iTh +uAp +qNP +iai +wRT +hew +uAp +kcL +lFF +lFF +mmM +kJl +lFF +lFF +uAp +uAp +kuB +wqe +uAp +iwY +fWB +iwY +gNx +gNx +kOK +gNx +gNx msr aSW xNN @@ -125213,52 +131120,52 @@ dcE dcE dcE dcE -xXv +iWu mXN -dcE -dcE -dcE +mXN +heR dCm +pZZ lNm -oTE -bTW -iqs -mId -nfM +hkm +xEW +xDe +mtM +aVZ bCb -mId -jSf -pIn -qhl -xqs -vUm -lff -wLg +gKT +bTW +xyD +ahl +tkO +plk +wHB +uqN dqJ tMD pDT -xwC +mQH hKn hKn hyo -lRr -jSf -bBu -vRz +wnm +hkm +dxU +kAc kOk hun cZN kAX -fjy -osu -xfX +eAl +gNg +sII ezE -udY -xQV -lge -rNx +tck +whH +dzw +lzg jwa -qKO +whG hbK qKO qKO @@ -125269,59 +131176,59 @@ qKO qKO qKO bPw -eYw -qKO +oII +iYq fGL uDD qxr opL pLd -eOa -eOa +raF +piF kIw -eOa -eOa -eOa +geK +kIw +cTo pOQ jBX jkG ggH -hXm +uqB bKs mHf -pGv -agO -vdr -tbf -cCr -rKA -ops -qHN -gtd -rKA -lBF -gtd -cIX -iCN -rKA -agO -agO -oLE -kAV -oLE -gtd -agO -rKA -vok -viN -eJZ -rKA -rPV -qZv -nTM -yiL -rKA -jmh +xpo +lFF +lMj +qQe +uLe +uAp +xMu +qGe +lLN +uAp +tzK +lLN +agL +hew +uAp +lFF +lFF +kJl +mmM +kJl +lLN +lFF +uAp +pqo +qqs +cXO +uAp +dGX +okJ +rDz +tfq +wKb +dlt qdA wOx vcm @@ -125399,34 +131306,36 @@ dcE dcE dcE dcE -"} -(162,1,1) = {" -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +"} +(162,1,1) = {" +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE dcE dcE dcE @@ -125468,52 +131377,50 @@ dcE dcE dcE dcE +mXN dcE dcE -mXN -heR -heR -heR -heR -unl -kQy -unl -unl -lUO -kUW -lVA -gBY -kUW -jSf -orm +dZJ +pZJ +pZJ +gtm +pZJ +nbQ +qnB +ing +xXj +lbp +aEA +bTW +aaq cil xqs xqs -yhN +uXm xqs xqs -dqJ +rgq wDY -dqJ -dqJ +rgq +rgq vzW -dqJ +rgq xqs jSf -aqy -fZR +pdY +jSf kOk -vMO -vqi +sDD +tEQ seA -cuT -gFk -fBX -hpe -nbY -bKb -lXK -lBQ +siD +dmk +bAW +cwe +cbn +xgR +qqV +yiF jTQ jwa gtA @@ -125522,63 +131429,63 @@ tkm lAg xoT aVm -hKw +eYw hfX qKO woX -hbK -qKO -vgN +fNW +eJa +cJK cJK rSb qPj kHy -hHA +blm ghZ -geK +aSU pce -rxk -ntx +gSn +gSn gSn mDS -iju +mHf sXk kdp lfK mHf -nqu -xuB -tbI -gKL -oSZ -uKm -gtd -gtd -sUV -rKA -dFo -qHN -oCA -rVx -rKA -gtd -agO -cEf -afP -rXI -gtd -agO -rKA -gvk -mRI -iRa -rKA -oOd -qHN -qHN -eAP -rKA -jmh +oAf +xId +llM +hpr +bNe +hgi +lLN +lLN +kpl +uAp +rxW +qGe +lbk +ihJ +uAp +lLN +lFF +cgG +lSM +sGT +lLN +lFF +uAp +pbY +kjr +wqe +uAp +syN +qGe +qGe +dhf +wKb +dlt dlt wKl rNT @@ -125722,7 +131629,7 @@ dcE dcE dcE dcE -dcE +heR dcE dcE dcE @@ -125731,64 +131638,64 @@ mXN dcE dcE heR -unl -unl -eGE -hVk -hBw -fgx -kqH -vLj -hYg -fGD -eQO -lsV -xCJ +pZJ +gBr +oZS +fOs +vfQ +rtr +jwO +qMF +nKp +dvr +lPP +pny +qYP tNb lqA -xYb -rrz +vEv +sOU hKE nNY tIl xkL -kTN -nNY +sOU nNY +oOE tKa nNY -ocF -jSf -jSf +nzx jSf jSf -jSf -kOk -dGS -bAW -idm +njk +njk +njk +njk +hFp +cMR +ezt oOs -wfz +pVM gsL -iDS +wQu aKR jwa eYw qKO -eYw +mzH qKO qKO hlF ctT leR qKO -qKO -eYw -qKO +ylN +gNS +qNi tLq jua nUd -qPj +opL ivz hHA nml @@ -125796,46 +131703,46 @@ ebO web ebO rOb -gSn +dUe jYs -mHf +jkG iUM -uqB +kdp puR mHf -gim -gtd -agO -gKL -gtd -rKA -lxN -gtd -aFm -rKA -oPW -sfJ -mHD -gtd -rKA -agO -agO -oLE -kAV -agO -agO -agO -rKA -gAM -viN -vsq -rKA -xfr -nvM -qHN -qHN -rKA -jmh +vgV +lLN +lFF +hpr +lLN +uAp +oRA +lLN +wpL +uAp +uLI +ouJ +cZz +lLN +uAp +lFF +lFF +kJl +mmM +lFF +lFF +lFF +uAp +qcW +qqs +vIb +uAp +fiZ +iiN +qGe +qGe +wKb +dlt qdA wOx tVR @@ -125849,8 +131756,8 @@ uVg uVg pWZ uVg -uVg gLU +bDq foj koi wKb @@ -125978,121 +131885,121 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -dcE +dZJ +iWu mXN -dcE -dcE -gOE -nmx -nAN -uhl -rZl -gXQ -kXt -aTV -kUf -unl -unl -unl -unl -jSf +mXN +mXN +mXN +iWu +heR +bWY +ule +tMN +lLT +ePI +shl +qBr +dkb +dkb +jBf +pZJ +pZJ +pZJ +pZJ +pZJ hmX wrQ -xYb -hns -jvZ +vEv +wrQ wrQ -uvN wrQ +uvN wrQ wrQ wrQ +hns xgZ -iUJ -rOB +wrQ +lkf jSf -jDl +bau ncV hsI -dtj +fOY pdB -bRC -bAW -rIU -bAW -loh -bAW -rIU -kmm +mlx +xRj +wjX +qtj +doK +gUr +oyz +ipo jwa eYw qKO ggQ -hbK +uoz qKO ceh rvt ufx -jia -qjV -hKw qjV -rwd +jRe +sXu +eJa +deg deg qJb qPj -qNi +cjh ssa cjh -osx csb +aIR csb cjh glU -qNi +cjh mHf fEA -uqB +akv dKD mHf -vCr -bMq -xvv -lYw -mPn -rKA -rKA -daz -rKA -rKA -sJK -gtd -dOq -gtd -fhA -agO -agO -vpt -afP -qGx -agO -gtd -rKA -rKA -mRI -nlP -rKA -qHN -qHN -fUh -ogn -rKA -jmh +iPv +kFN +qOj +lhq +fCM +uAp +uAp +afI +uAp +uAp +uVD +lLN +iEe +lLN +cMJ +lFF +lFF +mSG +lSM +yiw +lFF +lLN +uAp +uAp +kjr +peI +uAp +qGe +qGe +fjO +wDX +wKb +dlt rOn iXD kiu @@ -126104,7 +132011,7 @@ xRn aSW jjG uVg -ucl +nax uVg hRW bDq @@ -126236,120 +132143,120 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE +heR dcE mXN heR -heR -heR -mTz -naa -mUN -rZl -nyz -fgx -vLU -oKx -tCX -jGm -oPd -oPd -jSf -fvu +bWY +vNb +tMN +sZk +cPr +shl +qBr +dkb +dkb +jBf +qVU +aIZ +kay +kfI +pZJ +rnN lpj -oob -fVd -fVd -fVd -uyr -uyr -uyr -uyr -uyr -nGB -ien -aat -oxn +aaN +lsv +lsv +lsv +aaN +aaN +aaN +aaN +aaN +uCs +iti +iti +mCN itX ngp -qzQ -hYa -jCv -mYm -xRj -wjX -qtj -doK -smk -gTe -eSW -iSh -nES +mPt +mLd +pBh +wsP +spn +wyA +vDM +vYQ +fnF +lRs +bFm +kTe +mtv qKO qKO -eYw +mzH qKO vuc xmf -aVm -vKi +leR +qKO tiK eSK csS cHS spr uWE -qPj +wHw bfN kbf wIf onn ueR -ueR +rNI ezW pgx iJC mHf +jkG +bwv +jkG mHf -iju -mHf -mHf -rKA -etu -spw -spw -qzf -rKA -aNT -gtd -rKA -pbU -cac -dOq -stY -fUg -rKA -agO -gtd -oLE -kAV -oLE -agO -agO -tuj -qHN -mRI -nlP -rdV -iBI -sbn -qei -ggp -rKA -bHO +uAp +upz +lgg +lgg +tpB +uAp +awX +lLN +uAp +wKS +wQA +iEe +qxW +kCk +uAp +lFF +lLN +kJl +mmM +kJl +lFF +lFF +xlt +qGe +kjr +peI +adg +qTZ +jpq +kTQ +oBr +wKb +oUS qdA xZP aKk @@ -126493,75 +132400,75 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -unl -unl -unl -unl -unl -fgx -fgx -rZl -bmO -fgx -vdm -kXt -ppL -jrq -jrq -jrq -fOM +mXN +heR +heR +pGP +pGP +pGP +pGP +pGP +heR +pZJ +jkD +bTp +shl +fNx +uuH +uuH +vth +aYU +ydV +lyv +lyv +jxQ noI wrQ -nKD -dYy +jke wrQ wrQ +dYy wrQ -tST +bnh uBp wrQ wrQ wrQ -dfI -tFC -fTF -dnb +lpE +tPl +jSf +lGC gym inI -gkW +ovV njk -iRX -gef -koC -oVY -oCr -bAW +xEh +gAb +dOC +fPn +hKs +oxc rIU -svB +wPj jwa -nES +mtv qKO -eYw +agF ovQ qKO eZd gNf -eYw +mPf jaN -qKO +aLq pnq -qKO -qPj qPj qPj +vTE +vTE qPj ipR -hHA +rxc jeW jgd qxA @@ -126569,44 +132476,44 @@ hHr bhN gbE uro -hIA +abI leT vQd fPX -hIA -rxM -afr -afr -qHN -afr -rKA -sVA -gtd -rKA -dOq -rKA -ddw -rKA -rKA -rKA -agO -xuB -gKO -afP -gEE -agO -agO -rKA -qHN -mRI -vsq -rKA -oZt -jxo -nvM -rKA -rKA -jmh +cjh +gSF +pAd +pAd +qGe +pAd +uAp +klQ +lLN +uAp +iEe +uAp +kBB +uAp +uAp +uAp +lFF +xId +cJZ +lSM +cvM +lFF +lFF +uAp +qGe +kjr +vIb +uAp +bNl +hmp +iiN +uAp +wKb +dlt wKb wKb wKb @@ -126750,58 +132657,58 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE -dcE -unl +pGP wFl wFl wWO -sZu -muW -xBR -qEZ -esk -vMn -rND -cMW -ppL -cep -wMu -wMu -jSf -anB +rbl +clX +hMp +rnB +hpw +aqp +rmb +lxV +lxq +gJv +aYU +mEo +lyv +lyv +pZJ +nox wrQ -pvU -xYb +mfT +lpE mwx wrQ dje -qbm +lEH dje wrQ mwx -wrQ -tHR -oZV -pCb -wSZ -wSZ -rct -rct -uAl -aLX -gAb -gEZ -lyw -vuy +dGY +mfT +bkk +jSf +uaP +uaP +njk +njk +njk +iAa +sXf +tBn +tBn bAW -tOO -pJM +bAW +rIU +cjY jwa -nAA +tEW qKO tWK qKO @@ -126810,12 +132717,12 @@ qKO qKO qKO qKO -qKO +fjz gVv qKO ifn -oII -hhw +vYX +vYX kxf dbw dLM @@ -126825,45 +132732,45 @@ szK usf kso cRO -aiP -rRN -pKC -bMi +geK +geK +geK +cfS uGJ -hIA -kEy -dWM -wmx -nrO -xPg -ncI -iCS -nBg -rKA -tpA -rKA -agO -gtd -gtW -tEy -agO -agO -gtd -oLE -oLE -agO -agO -rKA -tkh -viN -onG -rKA -jSW -qHN -gGl -erj -rKA -jmh +cjh +vQm +jCV +kHe +eBX +nNg +iHi +cHx +asZ +uAp +wRT +uAp +lFF +lLN +oHY +hLi +lFF +lFF +lLN +kJl +kJl +lFF +lFF +uAp +jaT +qqs +mqN +uAp +wuV +qGe +bHC +vNE +wKb +dlt wKb bAw xFT @@ -126941,32 +132848,8 @@ dcE dcE dcE dcE -"} -(168,1,1) = {" -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +"} +(168,1,1) = {" dcE dcE dcE @@ -127012,115 +132895,139 @@ dcE dcE dcE dcE -unl -wFl +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +heR +iWu +dcE +dcE +pGP +qnU ftG kGD pQS -aKq -xcR -jBb -mOo -nBs -dDV -rPh -unl -unl -unl -unl -jSf -pvp -pvp -jSf -iyb -jSf -pvp -pvp -jSf -pvp -pvp -jSf -pom -jSf -kvl -pCb -gTm +heR +wNN +aim +sSx +fQT +bLP +vla +aEg +xuM +pZJ +pZJ +pZJ +pZJ +eaV +cOR +cOR +eaV +fTw +eaV +cOR +cOR +eaV +cOR +cOR +eaV +qIo +eaV +cOR +eaV +gUc rnX -sYg -bIP -hdi -afS +sfS +gUE +cWb +ckF +oCN bAW -tBn -vss xKx -fMu -rHZ -jwa +vvB +tIE +wxy +pJM jwa -nES -nES -nES +mtv +mtv +dXu rfu -nES -nES +nEM +nEM pQQ rfu -nES -nES +nEM +kkQ imz qKO nPb hfM vYX kxf -dbw +xCe iPz -wvw +oip oqA oqA aGb -gNS +dbw mbz -hIS -vqs -qAI +eOa +eOa +eOa guV rtb mID -dzt -bFc -pHQ -pNA -afr -rKA -sVA -cYx -rKA -tpA -oQk -ihE -agO -nBq -rKA -agO -agO -oLE -oLE -oLE -agO -agO -rKA -rKA -hMI -iRa -rKA -rKA -rKA -rKA -rKA -rKA -jmh +uXN +xeY +aSL +iAx +pAd +uAp +klQ +vFf +uAp +wRT +vTh +bBL +lFF +jau +uAp +lFF +lFF +kJl +kJl +kJl +lFF +lFF +uAp +uAp +hBs +wqe +uAp +uAp +uAp +uAp +uAp +wKb +dlt wKb wKb wKb @@ -127148,7 +133055,7 @@ cOu qir cOu qir -fUi +cOu qir cOu qir @@ -127264,32 +133171,32 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE -dcE -unl -gPj +pGP +wFl wFl iqj -uTI -nPS -wXW -acU -rBB -cTL -juh -unc -uTI -ldL -bxx -bxx -jSf -dHC +kJI +mJI +pWi +pUx +ktD +woy +pDQ +dkb +aEg +gJv +jDm +hxf +gqH +hxf +eaV +qHP lqH lqH -aGp +bdX lqH lqH lqH @@ -127299,25 +133206,25 @@ lqH lqH lqH lqH -buu -pCb -pzZ -pbB -aMw -hYj -uAl -svM -fjy -aVD -aUD +inQ +eaV +kNj +rMr +thY +ufc +rct +rct +bmK +frN hWk fJL +gJY +lcS fJL -fJL -fJL -fJL +jwa +jwa qKO -eYw +now eYw qKO qKO @@ -127329,55 +133236,55 @@ imz qKO hzq vvw -vvw +pXF tBc tXY twX abM goD -goD +vHC eru jfd -pBJ +pBa tcr -hIA +nba htm -uHe +dep dAV -hIA -bZQ -qHN -afr -qHN -afr -rKA -lmv -vgJ -rKA -tEH -oQk -laj -bJB -agO -wMZ -pRA -agO -idQ -xhr -dsg -agO -gtd -rKA -mjm -fTZ -vsq -gAM -gvk -ouH -tkh -dEX -rKA -cBu +cjh +ezh +qGe +pAd +qGe +pAd +uAp +oln +tCm +uAp +jkb +vTh +kKU +nmE +lFF +epn +vxi +lFF +gQj +vUf +syT +lFF +lLN +uAp +oWt +gsd +vIb +qcW +pbY +ego +jaT +xTs +wKb +clq wKb unh hZf @@ -127521,120 +133428,120 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -unl -unl -unl -unl -unl -aKq -eJw -krK -ntE -xZd -aFQ -fii -pQS -isX -gZO -jjj -fOM -dzg +mXN +heR +heR +pGP +pGP +pGP +pGP +pGP +heR +pZJ +ozS +exr +tSB +dkb +dkb +aEg +gJv +nXq +lWs +lWs +lWs +rki +sMy rxH mDD -goU -oLX -yhf -meE -nFx -ich -eXf -gro -goU +wGP +rKj +ptS +tND +cZr +tmZ +qrY +bqd +wGP rxH -lFW -pCb -aGX -mur -sok -wSZ -uAl -uAl -afS -bAW -xfX -hWk -eSA -hXA -iNX -cbB -fJL -qKO -qKO -eYw +hXW +cOR +wrd +blI +oyU +efM +eHZ +kEC +oCN +oCN +eWD +gJY +cET +nht +xKs +hKt +jwa +jxB +uWp +hbK qKO gdf cOg jBI jqR qKO -mOg +rOl qKO wom -vvw +pXF diP uxp -tas +cjh abm -tas -tas -tas -tas -tas -tas -tas +rxk +jXm +cjh +cjh +ceC +ibZ +cjh +hIA +hIA +hvL hIA -dej -uHe -cSf hIA -blh -afr -mJe -kcA -hIZ -rKA -cYx -ifA -rKA -dOq -rKA -gRQ -cpE -agO -rKA -agO -agO -dsg -vPU -nEq -agO -agO -rKA -oGO -snQ -lIT -hUU -snQ -iaR -fTZ -jsj -tMu -fKS +ltF +pAd +rsm +eQC +meY +uAp +vFf +wAV +uAp +iEe +uAp +sHh +mSL +lFF +uAp +lFF +lFF +syT +oKy +fUc +lFF +lFF +uAp +grm +nEW +jei +msq +nEW +qbM +gsd +hxU +vlc +wUh vlc mgY mgY @@ -127665,7 +133572,7 @@ dcE cOu cOu dcE -cOu +fUi cOu dcE qir @@ -127778,61 +133685,61 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE -dcE -unl +pGP kYf kYf fbu -aNf -gOL -frJ -krK -ntE -xZd -dDV -oAJ -mSE -lwT -bxx -bxx -jSf -uRK +rbl +clX +rum +lqf +cNr +tSB +dkb +dkb +aEg +gJv +bav +fBI +fBI +fBI +eaV +jqz rxH umy -goU -tdN +bfY +vsD xBE xBE oUa xBE xBE -dfG -goU +mOO +bfY rxH -lFW -pCb -gKs -iWh -bvI -wSZ -rRJ -oOs -nID -jrx -xfX -hWk -eSA -iep -qXH -lVH -fJL -wAO -qKO -kcN +vEH +cOR +wrd +lqa +qTa +sok +mNK +afS +bAW +bAW +jcN +gJY +dRx +lhJ +eYN +gco +jwa +wKC +now +eYw qKO daW agF @@ -127850,48 +133757,48 @@ vCk pQq fRE rRg -tas +qxQ mSA hcj -jZl -hIA +cjh +cpQ lxW jBn nSS hIA -rKA -uKm -rKA -rKA -rKA -rKA -cfQ -rKA -rKA -dOq -rKA -rKA -rKA -rKA -rKA -agO -gtd -oLE -oLE -agO -agO -agO -rKA -tkh -jvX -juo -hAd -hLu -bUr -tkh -qHN -rKA -cBu +uAp +hgi +uAp +uAp +uAp +uAp +gDo +uAp +uAp +iEe +uAp +uAp +uAp +uAp +uAp +lFF +lLN +kJl +kJl +lFF +lFF +lFF +uAp +jaT +mrA +jmL +ayU +tjx +ppY +jaT +qGe +wKb +clq wKb yfj nuZ @@ -128034,62 +133941,62 @@ dcE dcE dcE dcE +heR +iWu dcE dcE -dcE -dcE -dcE -dcE -unl -kYf +pGP +qEC sFb kil pQS -aKq -bHC -krK -dWg -xZd -dDV -ska -unl -unl -unl -unl -jSf -gJT -iCq -umy -aej -rRh +heR +wNN +aim +ybM +tSB +lEl +dkb +xSA +scO +pZJ +pZJ +pZJ +pZJ +eaV +oan +fnY +hXi +rKj +tQk xBE -vTv +rwn pEG -qvr +hhJ xBE -kbQ -yma -iCq -lFW -pCb -iUj -glJ -rvR -tTz -ulq -smk -smk -smk -smk -rLK +uiU +bqd +rxH +jEM +eaV +lmn +aMw +hKe +udS +rct +rct +gmq +cMR +jcN pnc -gAC -nxN -jLt -fJL -eYw +wdB +pjB +uSz +oPm +jwa qKO -hbK +qKO +fki qKO aTc mdT @@ -128104,51 +134011,51 @@ lWf uxp fyY qsi -rxc +yco emR ijF -tas +vKi nbb ezm -jXm -hIA -lxW -uHe +cjh +bfQ +cSf +jIl lhY -hIA -cme -gtd -gtd -gtd -qHN -sIq -cYx -rKA -gtd -tpA -kyg -rKA -qNM -lxN -rKA -uOS -jIs -agO -oLE -oLE -jIs -bKh -rKA -qHN -wkP -rhM -lzG -iLP -kkM -tkh -ibt -rKA -jmh +mhO +lLN +lLN +lLN +lLN +qGe +kPO +vFf +uAp +dDg +qtv +gTu +uAp +xxE +oRA +uAp +xtA +xCs +lFF +kJl +kJl +xCs +oEh +uAp +qGe +kUk +cPD +pvN +suK +ggK +jaT +bop +wKb +dlt wKb oZh nuZ @@ -128292,32 +134199,32 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE -dcE -unl -xbI +pGP +kYf kYf fPA -uTI -wfp -wXW -evv -dqo -lDh -juh -unc -uTI -cgE -sbp -sbp -jSf -kWx +kJI +mJI +pWi +tXE +tRN +qaq +dmj +dkb +aEg +ibC +jDm +bge +bhy +bge +eaV +wXj rxH -wcJ -bdh +fmw +oCp xBE xBE hDq @@ -128325,28 +134232,28 @@ oWZ hDq xBE xBE -edu -fJN -nCO -pCb -sIB -rBO -wSZ -wSZ -rqm -fjy +pjn +rxH +uip +eaV +rHT +qGr +rct +rct +rct +afS bAW -fBX bAW hWk -eSA -sbF -qhW -qTt -fJL -qKO +gJY +eqR +xtE +ffg +sNT +jwa +uKy qKO -hbK +kcN qKO qKO pNk @@ -128360,52 +134267,52 @@ czY mdf uxp pbc -oJd +jxc yco hYo gLD gQa fZg nRz -wmt -hIA -raF +cjh +bhM +bMi amJ moq hIA -cme -gtd -rKA -keE -aHo -rKA -qYs -iCS -iCS -mKV -xpv -tLb -pee -jgB -rKA -rKA -rKA -rKA -eRg -rKA -rKA -rKA -rKA -tkh -xoZ -cTv -lzG -lzG -qmc -tkh -kES -mKV -muF +wij +lLN +uAp +ulo +xBC +uAp +nyF +enY +nIX +uAp +sNF +oIe +enY +gmu +uAp +uAp +uAp +uAp +oyJ +uAp +uAp +uAp +uAp +jaT +kHH +mtd +pvN +pvN +pWl +jaT +eOH +qdx +fAD qdx sPx bOi @@ -128549,60 +134456,60 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -unl -unl -unl -unl -unl -daE -oeV -qLm -mOo -nBs -vxk -alk -pQS -gmm -hMt -cDI -fOM -edY -iMP -fmw -bdh -lEJ -ewm +mXN +heR +heR +pGP +pGP +pGP +pGP +pGP +heR +pZJ +prX +oNy +ion +bLP +vla +aEg +ibC +nXq +uFL +uFL +uFL +rki +bly +kwb +igb +oCp +iND +oKr wAU kDN aZY -okm -lEJ -nPP -fJN -uip -pCb +iyh +bdM +fFF +rxH +swa +eaV +eaV +wSZ pCb -uqc -cIH cxh gyV kwO -vvB -fMu +jrc fMu -kth -fJL -fJL -fJL -fJL +nlw fJL +alA +pVO +iKw +pUY +jwa +qKO qKO -qPs hbK jxB hbK @@ -128615,54 +134522,54 @@ qKO qKO qKO qKO -qKO -qKO -qKO -qKO +cjh +qAI +jxc +gJm bRQ -qKO -qKO -qKO -qKO -qKO -hIA -hIA -rwG -hIA +gLD +vKi +aHH +rwd +cjh +hXm +rKf +mPO +klU hIA -rKA -lUp -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -vkU -rKA -mSq -tpA -oXZ -rKA -mDV -agO -jyD -rKA -tkh -tkh -qHN -vTq -olL -fXT -jIZ -iET -qHN -ujS -rKA -jmh +uAp +uQX +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +xJL +uAp +pLa +nnQ +jHc +uAp +tOs +lFF +rVS +uAp +jaT +jaT +qGe +iQM +twO +eaN +chV +pKP +qGe +iyL +wKb +dlt wKb byv mKF @@ -128806,120 +134713,120 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE -dcE -unl +pGP pBP pBP bFn -pwb -xrJ -lhX -drW -fzP -xZd -dDV -uKf -mSE -sBP -sbp -sbp -jSf -pbt -rQb -igb +jLv +rDs +lGO +rdh +uCa +lmR +lGV +dkb +aEg +ibC +nXq +pkI +pkI +pkI +eaV +szL +rxH +fmw uip -nYD -uPB +qie +tAX eLK dNX noU -vdg +kcY nYD cKc -fJN +rxH uAB -hFq +ffE eaV -wSZ +heR kOk hdi -kOk +hdi kOk kOk hdi hdi -kOk -kOk -dcE -heR -dcE -heR +fJL +fJL +eSA +eSA +fJL +jwa qKO nxr hbK -hbK -hZi +qPs +fWe sgr jxB qKO ryb sGV -qKO -agF nMC -uoz -wYS -eYw -jxc -eYw eYw hbK -qKC -vVp -hbK eYw +wYS +jCP +jxc +gJm +caQ +bEJ +gQa +vVp +eTm +cjh tSW bXt -buA +sCI hOw hIA -pPG -gtd -rKA -lfG -rEv -tuJ -kLV -gQi -rKA -awK -rce -mTL -qZW -qYs -tLb -pee -wuZ -aqj -wIg -agO -mtw -tkh -rKA -waq -mEG -vax -iKf -xfa -bqv -tkh -bZQ -rKA -jmh +quk +lLN +uAp +rFM +qOC +blW +duG +pgT +uAp +bab +uwl +aWA +vEW +idV +oIe +enY +gDZ +atJ +tks +lFF +vpX +jaT +uAp +kJz +uMJ +uSh +pyN +tmK +eSG +jaT +ezh +wKb +dlt wKb wKb wKb @@ -129062,121 +134969,121 @@ dcE dcE dcE dcE +heR +iWu dcE dcE -dcE -dcE -dcE -dcE -unl -pBP +pGP +dtv gIn aUW pQS -aKq -lIm -xZd -xMS -xZd -dDV -alk -unl -unl -unl -unl -jSf -pbt -rQb +heR +wNN +aim +vyG +dkb +dkb +dkb +aEg +xWz +shQ +shQ +shQ +shQ +eaV +hch +kwb lQA nwJ -xmd -uMD +uRD +sqj aVG shb mwY -tjt +vTQ tbd szp -rWT rxH -iIL +rxH +liN eaV -oAL -mrg +heR +bWY +bWY bWY oAL plB mrg bWY -oAL +uTj plB mrg bWY bWY -dTJ heR qKO -rYJ -qNd +xyt qNd -qNd -diE +clk +clk +mMZ hbK qKO iPk kvJ hKw uve -qKO +gAz chz -qKO +cjh uVn -qKO -qKO -qKO +jxc +mGj +gNy pLv -qKO +bgx oFh -qKO -qKO +cjh +cjh hIA uxG -abI +bMi dvK hIA -rKA -uYL -rKA -lfG -rEv -qHN -gWm -rsn -rKA -djE -gtd -qZW -awK -rKA -gtd -cme -rKA -qMC -lKm -gKL -rKA -qHN -tkh -tkh -vTq -rhM -lzG -rXq -iET -tkh -ujS -rKA -jmh +uAp +mbj +uAp +rFM +qOC +qGe +rSG +avw +uAp +iai +lLN +vEW +bab +uAp +hUb +wij +uAp +fCQ +dZI +hpr +uAp +qGe +jaT +jaT +iQM +cPD +pvN +yhD +pKP +jaT +iyL +wKb +dlt wKb eCM tnh @@ -129202,19 +135109,19 @@ qir qir qir qir +fUi cOu cOu -fUi qir qir cOu qir cOu cOu -cOu -cOu -cOu -nem +qir +qir +qir +fPs cbc dcE dcE @@ -129320,30 +135227,30 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE -dcE -unl -hng +pGP +pBP pBP mVM -rTQ -faw -muE -wid -qcX -xZd -dDV -alk -unl -xLF -ibq -oCS -cGS -cKc -iCq +jLv +rDs +dnK +lTd +ihj +ttn +ttn +ttn +iaC +iZt +shQ +pKI +cCp +rzf +eaV +cAG +rxH okh uip xBE @@ -129354,12 +135261,13 @@ aAt xBE xBE jjo -uyu +rvT mmZ uex sCD -nld -jyv +syR +plB +mrg oAL vYt plB @@ -129370,12 +135278,11 @@ plB vYt plB mrg -dTJ -heR +bWY qKO rsH hbK -hbK +mNi hbK bvz cVi @@ -129383,57 +135290,57 @@ qKO sfh sgV sfh -sfh +mpK sfh mzh -qKO -qKO -qKO +cjh +wmt +xkJ etp qip -hbK -qKO -qKO -qKO -hRj -bCh +cnU +krs +xau +cjh +wUk +hIA bZs uUL dpv -bCh +hIA hRj hRj -rKA -eCu -ifF -wBK -wBK -jHL -rKA -sce -rKA -lHT -sVA -rKA -rKA -rKA -rKA -rKA -kWo -rKA -rKA -rKA -rKA -qHN -cUo -udF -fXT -fXT -qRL -tkh -rrY -rKA -jmh +uAp +iwl +igR +fNY +fNY +jVv +uAp +aZa +uAp +iTh +klQ +uAp +uAp +uAp +uAp +uAp +oeQ +uAp +uAp +uAp +uAp +qGe +apv +wkW +eaN +eaN +glw +jaT +tcB +wKb +dlt wKb eCM ghO @@ -129574,33 +135481,33 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE uCR dcE dcE -unl -unl -unl -unl -unl -hVH -frJ -xZd -rSi -xZd -vRE -fcT -chc -tuD -qQv -oiQ -tOi -ebD -qXx +mXN +heR +heR +pGP +pGP +pGP +pGP +pGP +heR +pZJ +mam +tPb +dkb +dkb +dkb +aEg +aFe +xdS +gWI +bax +qfz +erV +fno +cZg igb uAB jmv @@ -129611,10 +135518,11 @@ aOn oFn jmv vYm -rWT +rxH fYq yhq tHo +heR bWY jyv bve @@ -129627,77 +135535,76 @@ plB vYt mrg jyv -dTJ heR -qKO +pTP jxB hbK -cVi -jDy +qim +sTp hbK -jxB +brh qKO bhJ hvc -nUV -nUV +sfh +gdt rYQ vLx -qKO -xOh -lZV +cjh +etp qAx -hbK -cVi -qKO -hRj -hRj +qAx +qip +puv +cjh +cjh +cjh hRj -bCh +hIA bCh obJ -bCh -bCh +vwI +hIA hRj hRj -rKA -vtF -nEA -nEA -nEA -qHN -rKA -gtd -rKA -rKA -rKA -rKA -iEp -eND -rKA -erI -ubU -oLE -agO -uac -rKA -tkh -tFY -olL -fXT -uSE -kkM -tkh -rrY -rKA -jmh +uAp +dHx +kmv +kmv +kmv +qGe +uAp +lLN +uAp +uAp +uAp +uAp +eIQ +fMr +uAp +hYE +vzZ +kJl +lFF +bVq +uAp +jaT +ciN +twO +eaN +uLa +ggK +jaT +tcB +wKb +dlt wKb dGu gdG sUF -jcQ -jcQ -jcQ +gdG +gdG +gdG gdG gdG eEv @@ -129834,44 +135741,45 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE -dcE -unl -xQB +pGP +qpL qpL uEQ -mSE -vqH -apA -xZd -rSi -xZd -upL -fcT -unl -uua -wjz -iTx -ydi -maS -rxH -chR -rxH +rbl +clX +lcb +gBZ +wMO +dkb +dkb +dkb +dLS +kWv +shQ +ofK +dNx +rQN +tHo +mgA +plQ +vMm rxH +iCq uip rxH brm rxH cKc -rxH +iCq khI -fPT +rtz uoU xTf sCD +syR plB bOO plB @@ -129884,77 +135792,76 @@ plB bOO nld jyv -dTJ -heR -qKO -bMh -hbK -hbK +bWY +pTP hbK hbK +fWe +fWe hbK +sAR qKO chb ksM -hCm -hCm -nUV +sMr +jZl +osx uCD -qKO +cjh hBh dmn -hbK -hbK -hbK -lAR -hRj -hRj +baY +rvX +eWc +cjh hRj hRj hRj +bCh +bEH llP +pUp +bCh hRj hRj -hRj -hRj -rKA -tSl -nEA -wqb -uta -uta -rKA -sce -rKA -paq -qHN -fvM -sbP -xPg -mKV -mYy -mZf -bcW -bcW -vFU -rKA -qHN -stR -xcV -hgC -jqG -scc -qHN -uHk -rKA -jmh +uAp +txp +kmv +uBU +dcO +dcO +uAp +aZa +uAp +xSB +qGe +uUx +tbv +nNg +hdK +lpw +ewg +loz +loz +nSK +uAp +qGe +iYr +rkE +iKI +cFN +tAe +qGe +xzl +wKb +dlt wKb tKw eEv gdG -jcQ -lBw -jcQ +gdG +pWQ +gdG gdG eEv qwy @@ -130090,45 +135997,46 @@ dcE dcE dcE dcE +heR +iWu dcE dcE -dcE -dcE -dcE -dcE -unl -qpL +pGP +mgR jRb oBp pQS -aKq -eed -xZd -jjh -xZd -wOG -sxT -kgo -wve -iFf -pcg -gFp -qXj -mjy +heR +wNN +aim +rwV +dkb +dmj +dkb +hRV +mAC +gvi +nhv +bZw +oxy +alM +vuh +msC xNn +lcU tXl +kAQ tXl -nwJ -lcU -vsM -rxH -cKc +xOG +tXl +vZa rxH -cfP -kgf -igK -oXS +vUx +gQH +gQH +kPR eaV +heR bWY bve plB @@ -130141,77 +136049,76 @@ bWY bve plB nld -dTJ heR qKO iJH hbK cVi -jxB +cVi hbK hbK qKO jVs -sWY -sfh +ksM sfh -bQC +caO +vlE sNG -qKO -lqS -hbK -hbK -hbK -hbK -lAR -hRj -hRj -hRj -hRj -hRj +tas +tas +tas +tas +cBU +tas +tas hRj hRj hRj +bCh +bCh +jia +bCh +bCh hRj hRj -rKA -jvf -nEA -jlf -prn -uta -rKA -gtd -rKA -bij -tkh -qHN -bZQ -keY -rKA -fXO -gKL -oLE -bcW -erI -rKA -tkh -tkh -bZQ -tkh -tkh -jTx -tkh -aoK -rKA -jmh +uAp +sml +kmv +bZf +rkA +dcO +uAp +lLN +uAp +qmy +jaT +qGe +ezh +vap +uAp +qHk +hpr +kJl +loz +hYE +uAp +jaT +jaT +ezh +jaT +jaT +aIJ +jaT +bdf +wKb +dlt wKb cjb eEv gdG -jcQ -jcQ -jcQ +gdG +gdG +gdG gdG eEv wKb @@ -130348,48 +136255,46 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE -dcE -unl +pGP qpL qpL ovq -uTI -iLC -eaX -jBb -omc -nQs -dDV -alk -unl -kdZ -bZR -fuU -gjb -oBa -pub -pub -iqf -iqf -naq -wDt +kJI +mJI +pWi +tGm +kOj +fQT +bLP +cwy +aEg +oZS +shQ +xQJ +lnm +iRR +eaV +iTU +mqu +mqu +xNk +wDK +bOa +otW fhg wzV -oRU -lCw -hUM +bOa +war +euu eaV iUs eaV eaV -bWY -heR +gKw dcE -heR dcE heR dcE @@ -130399,7 +136304,9 @@ dcE dcE heR dcE -heR +dcE +dcE +epv qKO nNt oHX @@ -130414,54 +136321,54 @@ htF lLe vlE vLx -qKO +tas tsl -hbK -hbK +vgN +eXT tuF -hbK +qgr lAR hRj hRj hRj hRj hRj +pka hRj hRj hRj hRj -hRj -rKA -tSl -nEA -uta -uta -bGs -drA -gtd -rKA -qHN -uRx -qHN -jTx -bRD -rKA -rKA -rKA -rKA -kRd -rKA -rKA -qHN -tkh -jTx -tkh -sbP -nCx -lxJ -xFA -rKA -glN +uAp +txp +kmv +dcO +dcO +kxd +aKo +lLN +uAp +qGe +jrC +qGe +aIJ +tjB +uAp +uAp +uAp +uAp +pMC +uAp +uAp +qGe +jaT +aIJ +jaT +tbv +kaW +rzH +eER +wKb +aIh wKb kDF bxL @@ -130605,78 +136512,78 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -unl -unl -unl -unl -unl -aKq -dXY -mil -bEK -mil -mUN -ska -unl -gjb -gjb -gjb -gjb -cyN -vAx -cfs +mXN +heR +heR +pGP +pGP +pGP +pGP +pGP +heR +pZJ +vmR +nye +dkb +lGV +dkb +aEg +oov +shQ +shQ +xkc +shQ eaV -pVA +dVq +mCG +oKk +eaV +xwk qpa rki rki rki -kAr -xqE +qpa +jXR maB eaV ioU eaV heR heR -dcE -dcE +heR +heR heR dcE dcE +heR dcE dcE heR heR -dcE -dcE +heR heR heR qKO -uZs +hUh fwB kuS -hbK -vvY -gHH +beT +imH +ajw qKO jSn hCP bRT -vLx +lLe qoX vLx -qKO +tas lVc -hbK -cVi -hbK -hbK +cHt +ufK +rwf +wRb lAR hRj hRj @@ -130688,37 +136595,37 @@ hRj hRj hRj hRj -rKA -sAB -qHN -nEA -nEA -els -rKA -gtd -mtw -gtd -gtd -gtd -atj -pee -pee -pee -pee -pee -pee -iCS -mKV -lNs -lcy -qIa -gAt -sdm -tkh -qHN -rKA -rKA -jmh +uAp +kKG +qGe +kmv +kmv +fdV +uAp +lLN +vpX +lLN +lLN +lLN +sNF +enY +ncS +enY +enY +enY +enY +cHx +hdK +nkW +cDd +mKz +fZb +wSD +jaT +qGe +wKb +wKb +dlt wKb wKb kNU @@ -130746,7 +136653,7 @@ dcE cOu dcE dcE -bWY +fUi dcE dcE cOu @@ -130862,58 +136769,58 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -unl -gCa -rnR -fPi -fPi -fPi -egC -lTX -unl -dcE -dcE -tYZ +pGP +sbp +sbp +xEF +rbl +clX +lcb +cOj +oGb +dkb +dkb +dkb +aEg +gdW +vcX +woN +vwp +nYV gpk -gav +kMF nqt nqt eaV -enK -jEx -iry -fJN -fJN -xDp -fnY +loJ +nCh +vpy +jXS +dlv +wGP +dey eaV eaV eOr eaV -oaA +dcE heR dcE dcE heR dcE dcE +heR dcE dcE -dcE -heR heR dcE +dcE heR -kmY +bWY qKO qKO pTP @@ -130923,16 +136830,16 @@ pTP qKO qKO dvs -hCm +uHT omu -vLx -hCm -vLx -qKO +lLe +osx +dno +tas miB -hbK -hbK -hbK +caE +buA +jzo vHp lAR hRj @@ -130945,38 +136852,38 @@ hRj hRj hRj hRj -rKA -cHK -vvE -wBK -wBK -jHL -rKA -sce -rKA -rKA -nZa -rKA -xzo -rKA -rKA -fEO -rKA -rKA -fEO -rKA -rKA -rKA -rKA -oQk -oQk -oQk -rKA -rKA -rKA -dMp -jmh -dnO +uAp +laz +win +fNY +fNY +jVv +uAp +aZa +uAp +uAp +acd +uAp +hPq +uAp +uAp +iug +uAp +uAp +iug +uAp +uAp +uAp +uAp +vTh +vTh +vTh +uAp +uAp +wKb +kOi +dlt +imf wKb wKb wKb @@ -131118,9 +137025,157 @@ dcE dcE dcE dcE +heR +iWu +dcE +dcE +pGP +eux +hMt +kGV +pQS +heR +wNN +aim +ogR +dkb +lEl +dkb +aEg +qeV +wNN +bWY +bWY +bWY +mcT +uXL +nqt +nqt +eaV +fav +sNC +nlt +xtQ +ezq +sNC +xXV +eaV +bWY +bWY +bWY +heR +heR +heR +heR +ktq +heR +heR +heR +heR +heR +ktq +heR +heR +bWY +mNp +qKO +fSb +hRj +hRj +hRj +hRj +wUk +qKO +lzR +iHF +nUV +nUV +lYr +lmz +tas +eZF +wvw +sWM +hhw +yhu +tas +hRj +hRj +hRj +hRj +hRj +hRj +hRj +hRj +hRj +hRj +uAp +rFM +qOC +kmv +fNY +avw +uAp +uAp +uAp +jaT +qGe +uAp +nEW +qGe +uAp +ujG +sfv +uAp +qGe +xUT +uAp +heR +heR dcE +heR +heR +mNp +oyB +bWY +heR dcE +heR +bWY +bWY +bWY +heR +heR dcE +heR +heR +wKb +qvW +gdu +rCp +wKb +vZM +cxU +cxU +wyq +heC +heR +heR +cOu +qir +qir +qir +qir +qir +qir +cOu +qir +qir +qir +qir +cOu +bWY +heR dcE dcE dcE @@ -131128,193 +137183,6 @@ dcE dcE dcE dcE -unl -unl -unl -mTz -mTz -mTz -unl -unl -unl -dcE -dcE -heR -mcT -hQZ -nqt -nqt -eaV -fav -sNC -nlt -xtQ -ezq -sNC -xXV -eaV -tWn -tWn -dcE -dcE -heR -dcE -dcE -mGV -dcE -dcE -dcE -dcE -dcE -dcE -heR -heR -bWY -mNp -qKO -fSb -hRj -hRj -hRj -hRj -wUk -qKO -lzR -iHF -sfh -caO -lYr -lmz -qKO -eZF -hbK -hbK -hbK -yhu -qKO -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hRj -rKA -lfG -rEv -nEA -wBK -rsn -rKA -rKA -rKA -tkh -qHN -rKA -snQ -qHN -rKA -fBn -nnB -rKA -qHN -uNo -rKA -heR -heR -dcE -heR -heR -mNp -oyB -bWY -heR -dcE -heR -bWY -bWY -bWY -heR -heR -dcE -heR -heR -wKb -qvW -gdu -rCp -wKb -vZM -cxU -cxU -wyq -heC -heR -heR -cOu -qir -qir -qir -qir -qir -qir -cOu -qir -qir -qir -qir -cOu -bWY -heR -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -"} -(185,1,1) = {" -dcE -dcE -dcE dcE dcE dcE @@ -131349,6 +137217,9 @@ dcE dcE dcE dcE +"} +(185,1,1) = {" +dcE dcE dcE dcE @@ -131393,25 +137264,61 @@ dcE dcE dcE dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +mXN +dcE +dcE +pGP +sbp +sbp +aRc +kJI +mJI +pWi +tGm +upM +dkb +dkb +dkb +aEg +aim +wNN +dcE heR -heR -heR -heR +dcE eaV eaV eaV eaV eaV -rHU +sOV sNC nlt nlt nlt sNC -xYi +mRs eaV -tWn dcE +heR dcE dcE heR @@ -131437,19 +137344,19 @@ hRj hRj qKO rql -vTE -nUV hCm +mhP +awV lYr jSz -qKO +tas dft ruE -hbK -hbK +eNH +acc wNw -qKO -wUk +tas +hRj hRj hRj hRj @@ -131459,27 +137366,27 @@ hRj hRj hRj hRj -rKA -lfG -rEv -qSD -rFq -nwe -rKA -kmL -rKA -fkh -qHN -rKA -wju -qUq -rKA -eUh -bRl -rKA -cHq -sql -rKA +uAp +rFM +qOC +dns +imI +rRP +uAp +mJO +uAp +piC +qGe +uAp +kPD +oui +uAp +oym +fva +uAp +hLl +qAq +uAp heR dcE dcE @@ -131633,29 +137540,29 @@ dcE dcE dcE dcE +mXN +heR +heR +pGP +pGP +pGP +pGP +pGP +heR +pZJ +arc +fsy +dkb +gZi +dkb +aEg +inm +pZJ dcE +heR dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -mXN -mXN -mXN -mXN -xXv -kOx +mva +heR dcE dcE eaV @@ -131668,7 +137575,7 @@ sNC rRn eaV dcE -dcE +heR dcE dcE heR @@ -131683,7 +137590,7 @@ dcE dcE dcE dcE -dcE +kOx kOx qKO sON @@ -131695,48 +137602,48 @@ sON qKO lYr lYr -lYr -lYr -lYr +sfh +nGP +sfh jzH -qKO -qKO -pTP -pTP -pTP -qKO -qKO +tas +tas +xOh +xOh +xOh +tas +tas sON sON oCT sON sON -sON +oCT sON sON oCT sON -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -fyD -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +oxC +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp dcE dcE dcE @@ -131890,32 +137797,32 @@ dcE dcE dcE dcE +mXN dcE dcE +pGP +bxx +bxx +paE +rbl +clX +lcb +qeN +bZu +fQT +bLP +cwy +aEg +aim +wNN dcE +heR dcE dcE +heR dcE dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -kOx -dcE -dcE -aHc +gIQ sNC kLD nlt @@ -131925,7 +137832,7 @@ kLD sNC ipc dcE -dcE +heR dcE dcE heR @@ -131939,7 +137846,6 @@ dcE dcE dcE dcE -dcE kOx kOx dcE @@ -131949,6 +137855,7 @@ dcE dcE dcE dcE +dcE heR dcE dcE @@ -132081,29 +137988,8 @@ dcE dcE dcE dcE -"} -(188,1,1) = {" -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +"} +(188,1,1) = {" dcE dcE dcE @@ -132167,12 +138053,33 @@ dcE dcE dcE dcE +heR +iWu dcE dcE +pGP +fuV +gZO +bhn +pQS +heR +wNN +aim +nTf +dkb +pDQ +dkb +qkn +kct +pZJ +heR +mXN +xXv +kOx kOx dcE dcE -ipc +gIQ sNC kLD fsQ @@ -132182,7 +138089,7 @@ kLD nWe ipc dcE -dcE +heR dcE dcE heR @@ -132195,9 +138102,9 @@ dcE dcE dcE dcE +mqw +mqw dcE -kOx -kOx dcE dcE dcE @@ -132287,7 +138194,7 @@ bWY bWY bWY bWY -jyP +bWY bWY bWY bWY @@ -132404,32 +138311,32 @@ dcE dcE dcE dcE +mXN dcE dcE +pGP +bxx +bxx +tZW +kJI +mJI +pWi +tGm +miY +ygK +ygK +ygK +geJ +aim +wNN dcE +heR dcE dcE +heR dcE dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -kOx -dcE -dcE -ipc +ggA tdx qWl nlt @@ -132439,7 +138346,7 @@ kLD nWe ipc dcE -dcE +heR dcE dcE heR @@ -132451,9 +138358,9 @@ dcE dcE dcE dcE +kOx +kOx dcE -mqw -mqw dcE dcE dcE @@ -132661,40 +138568,40 @@ dcE dcE dcE dcE +mXN +heR +heR +pGP +pGP +pGP +pGP +pGP +heR +pZJ +jEg +dra +sKs +mDs +dra +feM +cUj +wNN dcE +heR dcE dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -kOx -dcE -dcE -ipc -ipc -ipc -ipc -ipc -ipc -ipc -ipc -ipc +heR +heR +heR +eaV +gTP +rOW +rOW +rOW +rOW +rOW +rOW +eaV heR heR heR @@ -132707,9 +138614,9 @@ dcE dcE dcE dcE +mqw +kOx dcE -pkO -pkO dcE dcE dcE @@ -132918,40 +138825,40 @@ dcE dcE dcE dcE +mXN dcE dcE +heR dcE dcE dcE +heR dcE +pZJ +wNN +pZJ +pZJ +wNN +pZJ +pZJ +wNN +pZJ dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -kOx +heR dcE dcE heR dcE dcE +pJW +dcE dcE dcE dcE dcE dcE dcE +pJW dcE heR dcE @@ -132963,9 +138870,9 @@ heR dcE dcE dcE -dcE +xXv mqw -pkO +dcE dcE dcE dcE @@ -133174,30 +139081,30 @@ dcE dcE dcE dcE +dZJ +iWu +mXN +mXN +mXN +mXN +iWu +kOx +mXN +heR +fkd +heR dcE dcE +heR dcE dcE +heR +fkd +heR +heR dcE dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -kOx +heR dcE dcE heR @@ -133208,7 +139115,7 @@ dcE dcE dcE dcE -dcE +heR dcE heR dcE @@ -133219,9 +139126,9 @@ dcE heR dcE dcE -dcE xXv -mqw +xXv +dcE dcE dcE dcE @@ -133432,28 +139339,28 @@ dcE dcE dcE dcE +heR dcE dcE dcE dcE +heR dcE +mXN dcE +heR dcE dcE dcE +heR dcE dcE dcE +heR dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +mXN +mXN +mXN kOx kOx kOx @@ -133462,11 +139369,11 @@ kOx kOx kOx kOx -dcE -dcE -dcE -dcE -dcE +kOx +kOx +kOx +kOx +iWu heR dcE dcE @@ -133474,8 +139381,7 @@ heR dcE dcE heR -dcE -dcE +iWu xXv xXv dcE @@ -133489,6 +139395,7 @@ dcE dcE dcE dcE +dcE uCR dcE dcE @@ -133696,13 +139603,19 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -uCR -dcE +heR +heR +mXN +mXN +mXN +cXm +heR +heR +mXN +mXN +mXN +heR +heR dcE dcE dcE @@ -133718,12 +139631,6 @@ dcE dcE dcE dcE -kOx -kOx -kOx -kOx -kOx -iWu heR heR heR @@ -133731,9 +139638,9 @@ heR heR heR heR -iWu -xXv -xXv +dcE +dcE +dcE dcE dcE dcE @@ -133957,11 +139864,11 @@ dcE dcE dcE dcE +heR dcE dcE dcE -dcE -dcE +heR dcE dcE dcE @@ -134214,6 +140121,11 @@ dcE dcE dcE dcE +heR +mXN +mXN +mXN +heR dcE dcE dcE @@ -134234,15 +140146,10 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -mGV -dcE heR dcE +xae +dcE heR dcE dcE @@ -136553,8 +142460,8 @@ dcE dcE dcE hcx -tLV whw +tLV gVs hcx dcE @@ -166390,8 +172297,8 @@ nlm nlm osV nlm -dcE -dcE +nlm +nlm mae mae jfB @@ -166649,7 +172556,7 @@ gRG gRG gRG gRG -gCn +jqQ sjT sdA lSe @@ -167158,8 +173065,8 @@ nlm gRG gRG uof -xkV -awD +uof +stm uof uof psI @@ -168224,7 +174131,7 @@ nlm nlm nlm qCR -qwn +qCR qwn qwn qwn @@ -168480,11 +174387,11 @@ nlm nlm nlm nlm -hxa -eMh -guF -dSG -nmF +xrx +cgK +jBW +vzk +kKe wua nlm nlm @@ -168737,10 +174644,10 @@ nlm nlm nlm nlm -dod +xrx cgK kfT -xvQ +cSH lAP xAQ nlm @@ -168994,11 +174901,11 @@ nlm nlm nlm nlm -dod -cgK -jBW +fir +sMv +hPZ cHv -wlg +buc xAQ dDL nlm @@ -169251,8 +175158,8 @@ nlm nlm nlm nlm -dod -jMU +xrx +laO qhs qhs qhs @@ -169996,7 +175903,7 @@ nlO iGy ohb rwh -eas +bxg sFc aCE pIt @@ -171027,8 +176934,8 @@ lji cOS jQA sVJ -kUq aVy +oHH sRh cUf oaa @@ -173106,11 +179013,11 @@ nlm iWu lrM hRj -iWu -mYo +hqz +rZi uCP -mYo -iWu +rZi +hqz hRj hRj lIr @@ -173363,11 +179270,11 @@ nlm iWu lrM hRj -iWu +hqz uah -oRp +xif boP -iWu +hqz hRj hRj lIr @@ -173579,8 +179486,8 @@ aad uCF sjx sjx -sjx -qsM +kuT +fhO bLN onV waz @@ -173625,11 +179532,11 @@ xiU inz xiU hqz -ygD -ygD -ygD -ygD -ygD +uIO +uIO +uIO +uIO +uIO txv txv wAk @@ -173814,7 +179721,7 @@ adC adC adC adC -jbh +adC fgT hdN cVm @@ -173882,11 +179789,11 @@ eXp dBp hmw kPq -ygD +uIO rnQ vZG vZG -ygD +uIO txv txv wAk @@ -174135,11 +180042,11 @@ nlD bsE hqz otz -pWF -pSx +xif +xif pWF kVP -ygD +uIO wiq vZG vZG @@ -174392,15 +180299,15 @@ nlD qsW hqz hmZ -pWF -pWF -pWF +xif +wLi +xif jjr fFl ptI qAC vZG -ygD +uIO txv txv wAk @@ -174650,14 +180557,14 @@ qsW hqz hqz umE -pWF -pWF +xif +gjA hqz -ygD -ygD -ygD -ygD -ygD +uIO +uIO +uIO +uIO +uIO txv txv wAk @@ -174906,8 +180813,8 @@ nlD qsW qsW kVU -iwS -pWF +vIr +xif pWF azn txv @@ -175101,7 +181008,7 @@ thW mMC lQe gPW -trH +gjH gjH uwj wMn @@ -175164,14 +181071,14 @@ nlD nlD nlD qzF +xif pWF -pWF -hqz -hqz -hqz -hqz -txv -txv +nfR +nfR +nfR +nfR +nfR +nfR txv txv wAk @@ -175420,15 +181327,15 @@ paY xyz dSS lca -iwS -pWF -pWF -hqz +vIr +fgK +qUQ +nfR wuo fHp -hqz -hqz -hqz +lRQ +cps +nfR wAk tce tce @@ -175675,17 +181582,17 @@ xyz xyz paY xyz -dSS +pPm gch iwS iwS iwS jtm -ltE -ltE +fIf +aBc mRn pJK -hqz +nfR wAk tce owU @@ -175934,15 +181841,15 @@ kUq kUq kUq kUq -pWF -pWF +fXW +xif pfp -hqz +nfR pWR jhW ltE bpU -hqz +gEc wAk wjw wdn @@ -176121,11 +182028,11 @@ uRd bOk aBl vXh +iGT +jlX +pqd +nMr wiK -inG -woh -eqp -oIk gqj nPN qBh @@ -176191,15 +182098,15 @@ kUq pjt pTE fjS +xif +xif pWF -pWF -pWF -hqz +uFl jCQ uXj -ltE +sIb myR -hqz +nfR mCc wjw eAX @@ -176378,11 +182285,11 @@ pev bOk qtM nbo -nli +ksr crj -xaP +bgs oxg -oIk +wiK bOk bOk iRH @@ -176414,7 +182321,7 @@ usP khG ugU ugU -dyg +ugU ugU usP gTp @@ -176431,17 +182338,17 @@ jkd jkd gXk gXk -hbc +sRD aJE kUq kUq xyz xyz rtO -jec -ggJ -jec -jec +dBz +lpW +dBz +dBz kUq kUq iSB @@ -176451,12 +182358,12 @@ riD qrd qrd qrd -hqz -bpU +uFl +bTq myD xRZ xJq -hqz +gEc wAk wjw pSK @@ -176635,11 +182542,11 @@ uRd bOk pLO rly -wTr +kpF mjc mjc yhK -ibw +nnD bOk bTF jBk @@ -176682,12 +182589,12 @@ lTH lTH vem riD -aJE -aJE -aJE -ucd -oHH -oHH +riD +riD +riD +ykx +kRN +riD hbc aJE aJE @@ -176695,10 +182602,10 @@ kUq kUq kUq kUq -mbK +liP kUq kUq -mbK +liP kUq sXU jkh @@ -176708,12 +182615,12 @@ riD qrd qrd qrd -hqz -pJK +uFl +eHa xMq -ltE +atE rnP -hqz +nfR wAk tce woV @@ -176892,11 +182799,11 @@ uRd bOk gyc ssT -sjQ +eEf mjc mjc jkq -rkf +gPz bOk uLb jBk @@ -176939,11 +182846,11 @@ gwK gwK gwK fbC +qEI +swX +qEI fbC -fbC -fbC -fbC -pEO +nXw pEO hbc jkd @@ -176951,26 +182858,26 @@ jkd mzT khm khm +khm +cOP +cOP vOg vOg -riD -vXU -xjL -aHD -pHq -sEt -tji +mbK +kuV +vpw +tTL vWj riD qrd qrd -qrd -hqz -hqz -hqz -ltE +uSa +nfR +nfR +nfR +icW opO -hqz +nfR jeA tce ftA @@ -177150,14 +183057,14 @@ bOk thB oZX iym -cxL -cxL -cxL -oIk +gpd +gpd +gpd +wiK bOk uJI jBk -hRX +yjM hBY taF tfK @@ -177184,34 +183091,34 @@ cba lgV xXY gNi -gNi +adq oVK nct sSw -gTp -gTp +kUO +kUO gTp lTH gTp -gTp -gTp +kUO +kUO eHu -qEI fYu -qEI +fYu +svC fbC -gtG +xda pEO odd -aJE -aJE -riD -bxZ +gdS +ygD +ygD bxZ -bmQ +ygD +ygD riD riD -jeD +cWc riD riD riD @@ -177223,11 +183130,11 @@ qrd qrd qrd lIr -goB -hqz +aOL +nfR pbp -hqz -hqz +nfR +nfR vyH vyH vyH @@ -177445,51 +183352,51 @@ pwB ghe uqy usP -gTp -gTp +kUO +kUO gTp lTH gTp -gTp -gTp +kUO +kUO eHu wOK hlt xpq fbC -xda +eUQ pEO riD riD -riD -riD -riD -riD -riD -xUJ +ygD +rXX +kjq +gKX +ygD +nRE kra -mUv +slI xes uoA dou -riD -riD -lEO +kUq +kUq +tTL pPO -tDc -tDc +iYe +fMd dnM ePT -vyH +wKe jmo -vyH +eXq vyH vyH vyH lIr lIr mCj -bPC +goB vyH lIr lIr @@ -177672,7 +183579,7 @@ opB fEW laD hRX -imo +knT cFa sGS hRX @@ -177702,13 +183609,13 @@ gNi kIz ttA usP -gTp -gTp +kUO +kUO gTp xmG gTp -gTp -gTp +kUO +kUO fbC fbC fbC @@ -177717,31 +183624,31 @@ fbC oTn rbx nRE -nRE -pEO -nRE +ouC +ygD +tbO +iWa +yhP +ygD nRE nRE -xUJ -yaU -iRV -iVk -uVX -rBd -oJr +plW +kyH +oam +ahf bfh -riD -riD -riD -hqz +kUq +kUq +kUq +ahf axN -hqz -lIr -lIr -lIr -lIr +ahf +kqv +kqv +kqv +kqv lIr -pcQ +wYX lIr lIr ejh @@ -177910,7 +183817,7 @@ hRj ixF sUx sUx -lfx +sUx sUx sUx bOk @@ -177934,7 +183841,7 @@ aqg nHt hRX jFI -cqj +qeX qeX qeX qeX @@ -177959,44 +183866,44 @@ tHr eBx ufo uwD -gTp -gTp +kUO +kUO gTp lTH gTp -gTp -gTp +kUO +kUO fbC ikc goR egF fbC vcf -xGG -nRE -nRE -pEO +hWt nRE -nqy nRE -xUJ -nDK -dsw -jKp -jKp -jKp -qlk +ygD +ygD +oMr +ygD +ygD +mTP +mTP +mTP +tVs +boz +ahf fFE -xUJ -kCp -kCp +amY +jqP +nqW cwO -nvn -dak -cDq +bCr +ahf +nJW cDq xxz -lIr +kqv uUD caU rqY @@ -178228,32 +184135,32 @@ peS fps xQR eHu -yly +xeM iby joC rDD pEO vtm eAO -nRE -omX -niv -dsw -jKp -jKp -jKp -qjU -eKH -omX -kCp -kCp -kCp -kCp -xxz -xxz -cDq -xxz -lIr +lfl +slI +slI +slI +slI +slI +pLq +qVY +icz +ntV +hmz +hmz +vSO +gLE +ahf +wHd +bdn +mxj +kqv vHV jYb wAk @@ -178481,36 +184388,36 @@ dUb dUb dfn fbC -fkP -smV +vCF +gjj xQR ccY een jmY -rfZ +tYN pmf dFd uZQ dKu feE -mwd -wnY -dsw jKp jKp +cAh jKp -koY -icz -omX -kCp -kCp -kCp -kCp -xxz -xxz -cDq -xxz -lIr +jKp +oam +ahf +pCX +hmz +hmz +hmz +vSO +vaj +ahf +pJP +vQj +xzn +kqv ygr vvt wAk @@ -178742,36 +184649,36 @@ kza xck qPB eHu -yly +xeM gTs dyA xar pQK sOa phy -pzQ -xyC -kWF -oZN -jIJ -jIJ -jIJ -ptC -qBj -xUJ -kCp -kCp -kCp -kCp -xxz -xxz -cDq -xxz -kqv -kqv -kqv +mXa +mwd +wnY +dsw +xyA +jKp +rBd +ahf +ujx +qRq +hmz +hmz +vSO +vSO +ahf +lLR +xqD +kMl kqv kqv +clb +clb +clb kqv kqv kqv @@ -178787,7 +184694,7 @@ lIr lIr lIr iIu -iIu +vAe lIr lIr drI @@ -178957,8 +184864,8 @@ spO hvX uii dYi -vua -dEN +nwK +fbq sbd pzb vNc @@ -178994,43 +184901,43 @@ dfn dfn dfn dfn -kDO -kDO -kDO -kDO -kDO +fbC +fbC +fbC +fbC +fbC eta -gTs +iaY pEO pEO pEO phh -voU -voU -xUJ -xUJ -jKT -avY -vNg -dXx -nPA -xUJ -xUJ -xxz -xxz -xxz -xxz -xxz -xxz -cDq -xxz +syD +slI +cAh +kWF +atf +jIJ +jKp +rBd +ahf +hAz +hmz +hmz +hmz +vSO +vSO +ahf +ahf +dAY +ahf kqv nlm nlm nlm nlm nlm -nlm +rZU kqv nvf uxA @@ -179047,13 +184954,13 @@ mCc mCc mCc lIr -uSs +bPC lIr mJL -uSs -uSs -uSs -mjV +bPC +bPC +bPC +xmK lIr hRj hRj @@ -179248,46 +185155,46 @@ qiH qiH qiH vAs -tWl +dqP dUb -dfn -jKX +dUb +xUJ osZ aWk uNY -jKX +sPc dxA pAn -pEO -kCp -voU -phh -voU -voU -voU -xUJ -xUJ -omX -omX -omX +wTP xUJ -xUJ -kCp -kCp -kCp -kCp -kCp -kCp -kCp +mfR +nRE +syD +geU +jKp +jKp +lle +jKp +jKp +fKA +ahf +hmz +hmz +hmz +hmz +gaa +exn +lrQ +loR nvn kCp kqv -rZU -rZU -rZU -rZU -rZU -nlm +fQp +ygq +ygq +ygq +ygq +fQp kqv ata lxl @@ -179304,12 +185211,12 @@ mCc mCc mCc lIr -uSs +bPC opu -uSs -uSs -uSs -uSs +bPC +bPC +bPC +bPC btc lIr hRj @@ -179482,7 +185389,7 @@ dUb fDE vuO hrD -hrD +hzY hrD hrD qQd @@ -179505,46 +185412,46 @@ dmp sAa wFt qiH +dfn dUb dUb -dfn -mrE +omX eTD vMP rto -jKX -wQH -rcM -jKX -jKX -gsq -phh -voU -voU -voU -voU -kCp -kCp -kCp -mHt -mHt -kCp -kCp -kCp -kCp -kCp -kCp -kCp -kCp -nvn -kCp -fQp -fQp -dsx -dsx -dsx -fQp +eWU +djn +pAn +fEf +xUJ +mfR +nRE +syD +pzQ +slI +slI +slI +slI +slI +pLq +qVY +suM +dQM +wWk +gaa +kYK +iDE +lml +hmz +hmz +cOr fQp +vkd +vkd +vkd +vkd +vkd +vkd fQp nah kqv @@ -179561,12 +185468,12 @@ mCc mCc mCc lIr -uSs +bPC lIr tda ith -uSs -qsv +bPC +uYR apM lIr hRj @@ -179748,7 +185655,7 @@ rih aXN qQd aiI -iaG +aiI aiI aiI kPQ @@ -179762,46 +185669,46 @@ wYJ sAa tel qiH +dfn dUb dUb -dfn -mrE +omX kPI -pUb +vMP xEU lYy -axn -cUi -mOx -jKX -voU -phh -leJ +pjk +pAn +hVx +xUJ +oam +aSg voU +wYy voU voU -kCp -kCp -mHt -mHt -kCp -kCp -kCp -kCp -kCp +pEO +plW +mGi +mHX +ahf +tMr +fRU +fRU +tan aBN -kYK -gRn -fGp -qgd +mVv +lml +hmz +hmz sFS fQp -iMu vkd vkd vkd vkd -fyE +vkd +vkd fQp rVM aXW @@ -179818,7 +185725,7 @@ lIr lIr lIr lIr -cfn +edf lIr lIr lIr @@ -179995,10 +185902,10 @@ dUb dUb fDE fOb +hqL hrD -hrD -hrD -hrD +hqL +hqL qQd qQd ndQ @@ -180019,46 +185926,46 @@ rsi vUQ nYn qiH +dfn dUb dUb -dfn -mrE -cik -vsY -gZq +omX +nde +nde +nde nde wwx ouo -uUK -jKX +wrn +xUJ +oam +aSg +tqg +uWI +wMX +cTU +aSg +aSg +aSg jKX -kXI -irh -jIf -jIf -irh -irh -xxz -xxz -xxz -buh -mHt -mHt +ahf +bun +fRX mHt rbF -wLe -hmz -hmz +kYK +iDE +lml +hYK hmz -oKI tJv fQp -fXB -vkd -vkd -vkd +cWL +jsy vkd vkd +jsy +cWL fQp fNS fIl @@ -180250,25 +186157,25 @@ quB sXd dUb dUb -fDE +uAn vuO -hqL -hrD -hqL -hqL +gNh +iis +lqB +mmP vzB mMb stv aFX -qVO -psk +cvP +eLU mpB -psk -psk +eLU +eLU rHS bot -psk -psk +eLU +eLU eLU rpB rpB @@ -180279,7 +186186,7 @@ rpB mJl mJl mJl -tey +xUJ aBy gAZ yfv @@ -180287,35 +186194,35 @@ nuU kwR gGJ geL -jKX +xUJ dIT -kXI +aSg gJp kqm lon wxb -ows -buh +aSg +xeD mKv -xxz -xxz -mHt -mHt -mHt -jam +jKX +pkS +vSO +vSO +hmz hmz +rhP +uHW +uFv hmz hmz -oyi -oKI ivL fQp -vbV -vkd +fXB vkd vkd vkd vkd +qjT fQp jMO dfi @@ -180499,7 +186406,7 @@ vsh vsh umH onj -vRc +hYd tsI umH oIv @@ -180514,57 +186421,57 @@ cbV pML miZ vzB -dGv -inh +kzf +sCx oLH fro tCY xiQ xdU -qVO -qVO -psk -psk -sLY -sLY -sCx -sCx -sCx -sCx -sCx cvP -dfn +cvP +eLU +eLU +nGV +dtL +qbq +mRj +oRH +jDB +wLm +dkm +dUb dUb dfn -djf +rde vCP vCP vCP -kSc vCP vCP vCP vCP -nRE -rKq -qHZ +kEB +dIT +aSg +gSd qHZ eGM mcC -jIf -buh -xxz +aSg +tPZ +mxl lIS -xxz -mHt -mHt -mHt -ptk +vSO +vSO +vSO hmz hmz -wzp +vSO +vSO +vSO +vSO hmz -qEj ruD fQp eDj @@ -180572,7 +186479,7 @@ tRR tRV oYs vkd -vkd +wZn fQp kPN kPN @@ -180742,12 +186649,12 @@ klB iEQ wVJ uRt -tGM +wCC bOk cQP sJR dZH -ggN +imN qeq sJR hyS @@ -180761,67 +186668,67 @@ ulM umH wDu pGn -uGT -sRG +fjl +dUb dUb fDE -fOb +lkj eRC cAW nOF prr vzB -rBE -inh +qWm +sCx oLH uxq izh iGI xCI uOx +trZ qVO -qVO -sLY -sLY +suQ sLY -sCx -sCx +nlk +bAo +ebK uDl -sCx -sCx -cvP -dfn -dfn +mDv +mDv +dkm +dUb +dUb dfn -djf +rde nRE nRE nRE -kSc nRE nRE nRE -nqy nRE -rKq -qHZ -qHZ +lUJ +sJt +aSg +sxZ +kVZ cBT lXD -irh +tQZ jxa buh -xxz -xxz -mHt -mHt -mHt -mDz +bwB +vSO +vSO +vSO hmz hmz -hYK +vSO +wzp +vSO +vSO hmz -qEj mUm fQp pvT @@ -180999,7 +186906,7 @@ ljc ljc ljc xqd -cHp +wCC bOk cQP sJR @@ -181012,17 +186919,17 @@ lgi ugn tfR umH -tdt +bsC dgD hcD wZN flY -xuQ +rHX dEo dUb dUb fDE -fOb +hRd qKS fIh xUa @@ -181031,60 +186938,60 @@ hZG tDf tDf dXp -inh -inh -hub +sCx +sCx +tKp sSc mUD rms qVO lvj -sLY -sLY -sCx -sCx -sCx -sCx -sCx -cvP -pkx +mPa +wVu +aVQ +pfO +uFo +mDv +ibo +wkb +sRG dUb dfn -djf +rde nRE unv nRE -kSc -nRE nRE -unv nRE nRE -rKq -qHZ -qHZ +unv +pKm +dIT +aSg +tQY +cjZ lMx ycm -jIf +rjI gSX -buh -xxz -buh -mHt -mHt -mHt -vzf +gHs +lIS +vSO +vSO +vSO hmz hmz +vSO +vSO +vSO +vSO hmz -gOC -hKP gyh fQp qZQ nCw bjK -lxX +aIU fWW fQp nHg @@ -181279,17 +187186,17 @@ umH dUb dUb fDE -fOb +hRd kfm dJF nPe mSa vzB -dGv -inh -oLH -inh -inh +kzf +sCx +xSq +sCx +sCx hub rwJ roy @@ -181298,40 +187205,40 @@ qVO tnf gNU txu -gNU -gNU -gNU -gNU -jeh -cvP -dfn +nAM +iRf +npf +gOp +mDv +dkm dUb dUb -pED -nRE -nRE -nRE -kSc -nRE -nRE -nRE -nRE -nRE -otf +dfn +pEO +pEO +rde +rde +rde +pEO +rde +pEO +sYh +bas +aSg gbb pgJ bZD -ycm -irh -gSX -buh -xxz +gdx +aSg +cXd +kQE +jKX stW -mHt -mHt -mHt +vSO +sGD +cxi wyx -hmz +eZT uEG bPr gih @@ -181536,14 +187443,14 @@ umH dUb dUb fDE -fOb +hRd lMy jnC hrD -hrD +jyd vzB qXl -inh +sCx alh uva giE @@ -181551,49 +187458,49 @@ hNZ nar tvN exS -qVO +iES nOe -jWP -hAC -hAC -hAC -hAC -jWP +iAw +xtC +umw +ejz +kxx +oVh mDv -cvP -dfn +dkm dUb dUb -dOG -dOG -djf -djf -djf -dOG -djf -djf -djf -dOG -otf -irh -irh -irh -irh -irh -xAu -xAu -xAu -xAu -xAu -xAu -xAu -xAu +jrz +fXP +afR +afR +afR +afR +afR +afR +pEO +pEO +pEO +aSg +aSg +btV +btV +btV +aSg +kyG +kyG +jKX +ahf +cwf +ahf cwf -xAu -xAu -xAu +ahf cwf -xAu +ahf +cwf +ahf +cwf +ahf fQp fQp fQp @@ -181788,7 +187695,7 @@ psC psC fhj gPE -psC +kzB dCY dUb dUb @@ -181800,25 +187707,25 @@ vzB vzB vzB dGv -inh +sCx mpl itw gcf cpy -sfn +gcf nwG hAt oLi -iRf -ivr +sNj +clZ rgj -mfO +kjn mfO mPP ivr -vCT +mDv dkm -htH +dUb dUb dfn wga @@ -181827,8 +187734,8 @@ afR afR afR afR -kIf -kIf +afR +wdd kIf kIf kIf @@ -182020,7 +187927,7 @@ nlm jMr ljc ljc -ucj +ljc ljc ljc ljc @@ -182056,8 +187963,8 @@ vzB vzB jvB wOr -dGv -inh +kzf +sCx wwf jJH xZp @@ -182065,7 +187972,7 @@ yeg jps jdg uwA -byR +dkm leu wzS ocL @@ -182073,11 +187980,11 @@ jSV jKo nnW aia -bVS -cvP -jyM -lqB -htH +mDv +dkm +dUb +iPl +dfn wga afR afR @@ -182085,7 +187992,7 @@ afR afR afR afR -kIf +wdd afR afR afR @@ -182313,11 +188220,11 @@ ybO pZX pZX pZX -dGv -inh +kzf +sCx qQf -dRk -rAL +vON +sfn jxk sfn gyw @@ -182325,14 +188232,14 @@ azx bcg jsh iRf -vkQ -mfS +erp +vlK mfS uow -jsh -ivD -cvP -dfn +jEo +mDv +dkm +dUb dUb dfn wga @@ -182342,7 +188249,7 @@ afR afR afR afR -kIf +wdd afR afR afR @@ -182542,64 +188449,64 @@ ljc ljc hFG ivh -dCm -dCm -dCm -trR -trR -trR -trR -trR -dCm -dCm -dCm -tdT -dCm -dCm -dCm -dCm -dCm -dCm -dCm +yaI +yaI +yaI +gpS +gpS +gpS +gpS +gpS +yaI +yaI +yaI +yaI +yaI +yaI +yaI +hJx +yaI +yaI +yaI dUb dUb dUb drX bvY -vzx +rbt xvN iJc pZX qWm -inh +sCx nGr afn iJn hiK lSL fLs -umw +azx qVO kDc -jWP -hAC -hAC -hAC +gKE +jNh +umw hAC +qII jWP -clZ -cvP -dfn +mDv +dkm dUb dUb +jrz uBj +jrD kIf kIf kIf -kIf -kIf +mEv ahO -sLC +wdd kIf afR afR @@ -182625,10 +188532,10 @@ wcN wcN wcN kVQ -mQh -mQh -mQh -wKb +kiS +kIf +kIf +upX nHg tjn tjn @@ -182799,7 +188706,7 @@ ljc ljc mND wCC -dCm +fMH nlm nlm nlm @@ -182808,30 +188715,30 @@ mDG cSg nlm nlm -dCm -dzI -mjN -dzI -dzI -thk -sPk -dqF -hVi -dCm +pRO +afu +afu +afu +tBs +xBP +tBs +afu +afu +pRO dUb dUb dUb drX pdr gOK -vzx +wwt aZo pZX -dGv -inh +kzf +sCx sYc -inh -inh +sCx +sCx asz gnt wfN @@ -182839,14 +188746,14 @@ cHP qVO pmX mxM -mxM -mxM -mxM -mxM -mxM -qpG -cvP -dfn +erp +eFq +iRf +jyM +gPP +mDv +dkm +dUb dUb gWM iHy @@ -182882,10 +188789,10 @@ bBV bBV kVQ kVQ -ubs -ubs -uKt -wKb +afR +afR +kIf +upX fHG tjn tjn @@ -183056,7 +188963,7 @@ ljc ljc mND wCC -dCm +fMH nlm nlm jph @@ -183065,47 +188972,47 @@ jph jph jph nlm -dCm -dzI -mjN -dzI -dzI -ffr -ozp -ozp -jWJ -dCm +pRO +afu +afu +afu +tBs +jap +tBs +tBs +tBs +pRO dUb dUb dUb drX doO -ebS -tUt +cuL +rfk nuz qGW irn oPM iTa -inh -inh +sCx +sCx asz sSc phd xYk qVO ixS -sLY -sLY -sCx -sCx -sCx -sCx -sCx -cvP -dfn +sLa +erp +erp +erp +erp +mDv +ibo +wkb dUb dUb +dfn jzM dyN dyN @@ -183139,10 +189046,10 @@ ujI ujI xnW kVQ -ubs -oQn -uKt -wKb +afR +afR +kIf +upX nHg nHg tjn @@ -183313,8 +189220,8 @@ dxf dxf asx wCC -dCm -pLQ +fMH +oDx dDL jph gYu @@ -183322,16 +189229,16 @@ cbm mIO jph dDL -dCm -ffr -ffr -ffr -ffr -ffr -ozp -ozp -naR -dCm +pRO +jap +jap +jap +jap +jap +tBs +afu +afu +pRO dUb dUb dUb @@ -183341,28 +189248,28 @@ aUO nYT pPX pZX -rBE -inh -oLH +qXl +sCx +pio pvC nfg czF pGf qyg +lZm qVO -qVO -sLY +sfR jBt -sLY -sCx -sCx -uDl -sCx -sCx -cvP -dfn +iRf +cmp +aBu +erp +mDv +mDv +dkm dUb dUb +dfn jzM dyN dyN @@ -183392,14 +189299,14 @@ fTs ujI ujI ujI -xjc +ujI ujI ujI kVQ -ubs -ubs -uKt -wKb +mQh +mQh +mQh +upX xpw nHg nHg @@ -183560,18 +189467,18 @@ nlm nlm nlm jMr -dCm -dCm -dCm -dCm -dCm -dCm -msm -dCm -dCm -dCm -dCm -dCm +fMH +fMH +fMH +fMH +fMH +fMH +tdH +fMH +fMH +fMH +fMH +fMH nlm jph oJj @@ -183579,16 +189486,16 @@ gQc tYl jph nlm -dCm -mjN -dzI -dzI -dzI -ffr -ozp -ozp -ozp -dCm +pRO +ifU +afu +afu +tBs +jap +tBs +afu +afu +pRO dUb dUb dUb @@ -183598,28 +189505,28 @@ uWi uWi uWi pZX -dGv -inh -oLH +kzf +sCx +pio lhn xjr xdG tPI -qVO -qVO -aVN -aVN -sLY -sLY -sCx -iFS -sCx -sCx -sCx cvP -dfn +cvP +tNW +tNW +yeo +ute +sFL +iFS +erp +vCT +ivD +dkm dUb dUb +dfn jzM dyN dyN @@ -183654,15 +189561,15 @@ ujI ujI kVQ uKt -ubs +oQn uKt -wKb -wKb -wKb -wKb -wKb -wKb -wKb +upX +upX +upX +upX +upX +upX +upX aGf nHg nHg @@ -183817,18 +189724,18 @@ nlm nlm nlm nlm -dCm -fYH -vMH -dzI -dzI -mtg -mjN -dzI -dzI -qmd -tmq -dCm +fMH +cmt +mNt +ulT +ulT +vGB +efc +ulT +ulT +kIL +hWF +fMH dDL jph etm @@ -183836,16 +189743,16 @@ ghb mtC jph dDL -dCm -gJi -dzI -dzI -dzI -ffr -ozp -ozp -giT -dCm +pRO +afu +afu +afu +tBs +jap +tBs +afu +afu +pRO sRG dUb dUb @@ -183855,25 +189762,25 @@ uWi uWi uWi pZX -tem +vre tem slS -aVN -aVN +tNW +tNW oMI -aVN -aVN +tNW +tNW oPY cEH -aVN -aVN tNW -cvP -cvP -cvP -cvP -cvP -cvP +tNW +qVO +qVO +qVO +gkB +wkb +wkb +wkb mJl mJl mJl @@ -183913,13 +189820,13 @@ kVQ uKt uKt uKt -wKb -tII -ktz -cTS -wKb -kiE -qSy +upX +kbY +srA +eUT +upX +vaR +kOo aGf nHg nHg @@ -184074,18 +189981,18 @@ nlm nlm nlm nlm -dCm -vGQ -xVZ -dzI -dzI -lzZ -yav -ffr -vDF -ffr -jyW -dCm +fMH +dwY +kas +ulT +ulT +uJF +nLt +tbg +osD +jVX +his +fMH nlm jph jph @@ -184093,16 +190000,16 @@ jph jph jph nlm -dCm -mjN -dzI -dzI -dzI -ffr -ozp -ozp -ozp -dCm +pRO +tBs +tBs +tBs +tBs +jap +tBs +afu +afu +pRO dUb dUb dUb @@ -184115,7 +190022,7 @@ dHL dHL rla dHL -dHL +qQd oOB oYE bQg @@ -184125,12 +190032,12 @@ ung gQR qom tNW -dsW -dsW +qVO +qol erp -dsW -dsW -rro +gts +qVO +dUb dfn dUb dUb @@ -184170,13 +190077,13 @@ kVQ uKt ubs uKt -wKb -grx -hRD -hRD -qSy -eEv -wKb +upX +brz +fTu +fTu +kOo +epH +upX aGf aGf aGf @@ -184331,18 +190238,18 @@ nlm nlm nlm nlm -dCm -dNw -xVZ -dzI -dzI -dzI -mjN -dzI -dzI -egr -jsD -dCm +fMH +bch +kas +ulT +ulT +ulT +efc +ulT +ulT +gmF +eoN +fMH nlm nlm dDL @@ -184350,16 +190257,16 @@ nlm dDL nlm nlm -dCm -mjN -mjN -mjN -mjN -ffr -ozp -ozp -ozp -dCm +pRO +afu +afu +afu +tBs +jap +tBs +tBs +tBs +pRO tWl dUb dUb @@ -184372,7 +190279,7 @@ dHL dXm qUG wnD -dHL +qQd jUb oYE ley @@ -184382,12 +190289,12 @@ aXZ uLN spC tNW -dsW -dUb -dUb -dUb +qVO +ivo +erp +jix +qVO dUb -rro dfn dUb dfn @@ -184427,31 +190334,31 @@ kVQ uKt ubs ubs -wKb -vYV -hRD -hRD -wKb -wKb -wKb -wKb -dkQ -wKb -wKb -dkQ -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb +upX +xHC +fTu +fTu +upX +upX +upX +upX +nLZ +upX +upX +nLZ +upX +upX +upX +upX +upX +upX +upX +upX +upX +upX +upX +upX +upX nlm nlm nlm @@ -184588,48 +190495,48 @@ nlm nlm nlm nlm -dCm -dBe -qrS -ikZ -dXy -dXy -nzZ -dXy -aqQ -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -mjN -dzI -dzI -dzI -ffr -ozp -ozp -mWu -dCm +fMH +sOy +lBy +kPX +jJU +pva +wIN +jJU +oNH +fMH +fMH +fMH +pRO +pRO +pRO +pRO +pRO +pRO +pRO +pRO +afu +afu +afu +tBs +jap +tBs +afu +afu +pRO dUb dUb dUb drX uWi +jQw uWi uWi -uWi -nNj +dHL sVj uyn jni -nNj +qQd bNH rmB fpC @@ -184639,15 +190546,15 @@ npE jCO uHh tNW -dsW -dUb -dUb -dUb +qVO +qVO +nNj +qVO +qVO dUb -rro -dfn -dfn -dfn +htH +htH +htH iHy kpz dNP @@ -184658,7 +190565,7 @@ sFa jzM cwP cwP -gll +cwP cwP cwP vTI @@ -184684,25 +190591,25 @@ kVQ uKt ubs ubs -wKb -jlh -fCe -sZh -aFg -aFg -lbN -fpz -sZh -wKb -hlh -sZh -xjK -lfT -sZh -aFg -aFg -xjK -wKb +upX +ezz +uyG +ewu +vca +vca +sPr +jTG +ewu +upX +vPk +ewu +tdl +djM +ewu +vca +vca +tdl +upX rBU nnS bYZ @@ -184845,35 +190752,35 @@ nlm nlm hRj hRj -dCm -hEN -dGM -ikZ -ikZ -yem -dXy -ikZ -vsm -dCm -rNe -vqM -odE +fMH +vVt +xJZ +kPX +kPX +pNr +pva +kPX +pva +npo +nTy +mdW +pRO +jap +imi +imi +jap +imi +jap +pRO +pRO +pRO +pRO +qNG +pRO +pRO +pRO +pRO pRO -xlH -hmT -uHg -uok -aBV -dCm -vdN -dCm -dCm -dCm -dCm -tdT -dCm -dCm -dCm mJl mJl mJl @@ -184882,7 +190789,7 @@ drX drX drX drX -fNB +qQd qQd qQd qQd @@ -184896,15 +190803,15 @@ tNW tNW tNW tNW -qII -jQw -jQw -jQw -jQw -ghA -dfn dUb dfn +htH +htH +htH +htH +htH +dUb +htH jzM cjE oca @@ -184912,7 +190819,7 @@ ctb ctb sSs muN -jzM +xkV cwP cwP cwP @@ -184941,25 +190848,25 @@ kVQ rey ubs ubs -wKb -sZh -aFg -aFg -aFg -aFg -lbN -fpz -sZh -wKb -xjK -sZh -sZh -ccy -sZh -sZh -sZh -sZh -wKb +upX +ewu +vca +vca +vca +vca +sPr +jTG +ewu +upX +tdl +ewu +ewu +nfO +ewu +ewu +ewu +ewu +upX cgg hRj lkP @@ -185102,44 +191009,44 @@ nlm nlm hRj hRj -dCm -iyx -upl -nzZ -dXy -ikZ -dXy -tah -uyb -dCm -nDB -xCt -tms -pRO -hJL -mMx -cWG -kdG -hfz -pRO -nUB +fMH +frc +edm +ppe +jJU +kPX +jJU +gNR +wWg +fMH +pDi +rNe +sxh +dhZ +dhZ +dhZ +dhZ +dhZ +dhZ +sxh +eeg afu afu -ech +dVd +wBd afu +dhZ jap sxh -jap -afu dUb dUb dUb fkM dUb -xce +sym +dUb dUb dUb -htH dUb fkM dUb @@ -185153,13 +191060,13 @@ dfn dfn dfn dUb -ukT dUb -dfn -dfn +dUb oKw dfn -dfn +dUb +dUb +dUb dUb dUb jzM @@ -185198,25 +191105,25 @@ kVQ uKt ubs uKt -wKb -gdP -aFg -aFg -aFg -aFg -lbN -fpz -aQa -wKb -aQa -sZh -daw -ilB -sZh -aFg -sZh -aFg -wKb +upX +sSy +vca +vca +vca +vca +sPr +jTG +wmX +upX +wmX +ewu +ipY +wyl +ewu +vca +ewu +vca +upX lgv rfI htn @@ -185359,44 +191266,44 @@ nlm nlm hRj hRj -dCm -aNg -ebA -hcL -nzZ -oTp -xYa -eHz -rcs -dCm -oeR -cRk -wDf -pRO -rPs -jZL -oCs -aLW -kdG -hik -fmN -afu -qDi -afu -afu -jap +fMH +tsA +uaH +izP +wIN +kYz +cka +boF +sau +fMH +vJD +pDi sxh +tBs +tBs +tBs +xLl +tBs +tBs +sxh +eeg +uKO +dhZ +dVd +tBs +tBs +tBs jap -afu +sxh dUb dUb dUb dUb dUb +dsW dUb dUb dUb -htH dUb dUb dUb @@ -185434,7 +191341,7 @@ avZ xOy gaM ozt -fEU +cSD cSu soU soU @@ -185455,25 +191362,25 @@ vvD gsm gsm gsm -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -pAH -pAH -pAH -pAH -cWU -cWU -aFg -sZh -aFg -wKb +gUI +gUI +gUI +gUI +gUI +gUI +gUI +gUI +gUI +lRX +lRX +lRX +lRX +gUI +gUI +vca +ewu +vca +upX gep jAo lbD @@ -185614,46 +191521,46 @@ nlm nlm nlm nlm -dCm -dCm -dCm -dCm -dCm -dCm -hSv -dCm -dCm -dCm -dCm -dCm -sFZ -jwu -eaT +fMH +fMH +fMH +fMH +fMH +fMH +qZx +fMH +fMH +fMH +fMH +fMH +pDi +rNe pRO -wFj -ojZ -auA -fUJ -uxz pRO -tZV -afu +pRO +pRO +pRO +pRO +pRO +pRO +eeg afu afu +dVd +dhZ afu +dhZ jap sxh -jap -afu dUb dUb dUb dUb dUb +dsW dUb dUb dUb -htH dUb dUb dUb @@ -185721,16 +191628,16 @@ fHc kwQ mHd wfY -pAH +lRX aut gqz -pAH -mqb -cWU -dfO -sZh -sZh -wKb +lRX +dDx +gUI +rPh +ewu +ewu +upX jtE eCy hRj @@ -185883,38 +191790,38 @@ rNe rNe rNe bPW -chI -ylO -mkq +xKJ +rNe pRO +xYC +fQG pRO -iRF +qlj +dch +cVq pRO +vYq +afu +afu +dVd pRO pRO pRO -wiZ -afu -afu -afu -dCm -dCm -dCm -dCm -dCm -sSR -gVi -ivI -gVi -tEY -aTH -dCm -kYe -nUk -kTq -bvZ +pRO +pRO +pRO +pRO +tmT +vuC +tmT +pRO bvZ -tUd +opV +kKB +huv +gSh +nXB +tni tPU xSz xSz @@ -185961,7 +191868,7 @@ iDR kWr hkD kmJ -kou +eiu hMs nTe ljx @@ -185981,13 +191888,13 @@ lJo kMj geC geC -cWU -ncF -cWU -sZh -aFg -sZh -heC +gUI +tTx +gUI +ewu +vca +ewu +mMs jtE eCy hRj @@ -186140,38 +192047,38 @@ kow jCE rNe ixf -mkq -ylO -ylO +pDi +rNe pRO -uHY -jrp -iem -wZb -pIf pRO -kvo -afu +jOJ +pRO +xzr +sEV +aJA +pRO +eeg afu afu -dCm -wIW -dXy -dXy -dCm -fxp -dXy -dXy -dXy -dXy -heq -dCm -pnd -hxJ -fLC -dyQ -eOh -wzM +dVd +pRO +qaH +lJK +pRO +pbE +gyi +pRO +bEV +nFp +mgT +tGg +aSH +pzr +lEd +sjz +jNu +mLP +hwe tPU jPa paf @@ -186238,13 +192145,13 @@ jwB etN atm wgp -cWU -ncF -cWU -dlk -aFg -sZh -heC +gUI +tTx +gUI +jpZ +vca +ewu +mMs jtE eCy hRj @@ -186397,37 +192304,37 @@ rNe gxO rNe ixf -mkq -xHP -jvM +pDi +pDi +axj pRO -qJn -ihF -kdG -kdG -wsR +pOu +czG +iPx +sux +ekw +hua +tDh +cKK +cKK +mHv pRO -soH -afu -afu -afu -dCm -dCm -dCm -dXy -dCm -tAV -dXy -dCm -dCm -dCm -dCm -dCm -dCm -dCm -tPU +pBw +vYN +pRO +fDH +nfd +pRO +hsg +mkt +vxr +vxr +vxr +vxr +vxr +vxr tPU -bSe +dsN tPU tPU jPa @@ -186495,13 +192402,13 @@ ahC cFb iEf bhU -cWU -ncF -cWU -dfO -aFg -sZh -wKb +gUI +tTx +gUI +rPh +vca +ewu +upX jtE eCy hRj @@ -186636,10 +192543,10 @@ nlm nlm nlm gMO -vEX +lgt wux nNC -wua +xBd nlm dDL ixf @@ -186654,38 +192561,38 @@ rNe gxO rNe ixf -ylO -mbC -jvM +pDi +rNe +eBF pRO -rPs -jZL -oCs -aLW -kdG -ios -fmN -afu -afu -afu -dCm -lKb -nzZ -dXy -dCm -dXy -dXy -rga -roj -tVI -roj -ewY -roj -fso -xPj -rBP -bam -sKO +pfY +viF +uPj +iMO +dPM +pRO +lOf +eNg +eNg +eCF +pRO +tGO +neh +pRO +neh +nOm +pRO +vfe +laC +vxr +krM +nAx +rPg +nnX +udV +hLe +cCb +fUy tPU jPa paf @@ -186752,13 +192659,13 @@ mdO nTB jdB wgp -cWU -ncF -cWU -sZh -aFg -sZh -heC +gUI +tTx +gUI +ewu +vca +ewu +mMs jtE eCy hRj @@ -186893,12 +192800,12 @@ nlm nlm nlm gMO -sxx -dDO +kMd +vEX nRP xBd tSA -nhh +tSA bPW rNe rNe @@ -186911,38 +192818,38 @@ kow wvK rNe bPW -owz -jvM -jvM +pDi +rNe pRO -oJK -ojZ -auA -fUJ -vMG pRO -fmN -afu +pRO +pRO +pRO +pRO +pRO +pRO +aLG afu afu -dCm -nGI -dXy -dXy -rga -dXy -nzZ -dCm -roj -dCm -dCm -dCm -vYI -gFW -tPU -iML +dVd +pRO +pRO +cKa +pRO +ocW +pRO +pRO +xgK +fdN +vxr +wEK +lpX +wEK +nnX +vxr +wdF iOK -vrx +npt tPU itK paf @@ -187009,13 +192916,13 @@ gnK kMj geC geC -cWU -xib -cWU -fGT -aFg -sZh -heC +gUI +aTB +gUI +enA +vca +ewu +mMs jtE dDL nlm @@ -187150,10 +193057,10 @@ nlm nlm nlm gMO -dSy -fLD -lrW -wua +urL +rGq +wFm +waY nlm tSA ixf @@ -187168,39 +193075,39 @@ rNe gxO rNe ixf -ylO -jvM -mbC -pRO -pRO -iRF -pRO +pDi +rNe pRO +rXj +bvJ pRO +hgb +bkr +afA pRO -mip -afu +aLG afu afu -dCm -rCP -dXy -hmM -dCm -dCm -dCm -dCm -lHi -dCm -tsR -jVB -jVB -jVB -jVB -jVB -jVB -jVB -jVB +dVd +xgK +foi +laC +kaq +laC +vfe +hVd +bmw +mWg +vxr +rai +vxr +vxr +vDu +vxr +vxr +vxr +vxr +vxr jPa paf paf @@ -187261,18 +193168,18 @@ tpe kwe mIK pMY -cWU -xWM -cWU +gUI +qPf +gUI jqw qGZ -cWU -nFE -cWU -dfO -aFg -dlk -wKb +gUI +okt +gUI +rPh +vca +jpZ +upX jtE dDL nlm @@ -187409,7 +193316,7 @@ nlm nlm vlH vlH -vlH +qCR nlm nlm tSA @@ -187425,39 +193332,39 @@ rNe gxO rNe ixf -ylO -jvM -xHP +pDi +rNe pRO -gCQ -tAr -ekk -bJs -bJs pRO -fmN -afu +jOJ +pRO +uAX +sEV +wYb +pRO +aLG afu afu -idM -idM -idM -idM -idM -dll -wSW -dCm -roj -dCm -lRz -jVB -qJB -teV -mwL -aii -uzu -eZC -jVB +dVd +xgK +vfe +laC +laC +bEA +bEA +xCV +bmw +yfJ +vxr +nnX +sWX +vxr +vxr +vxr +bTl +oSV +wRQ +vxr jPa paf paf @@ -187511,25 +193418,25 @@ arT gsm gsm gsm -cWU -cWU -cWU -cWU -oVg -fKJ -cWU -cWU -wKb -cWU -cWU -cWU -cWU -cWU -cWU -fvG -wKb -wKb -wKb +gUI +gUI +gUI +gUI +asU +rzu +gUI +gUI +upX +gUI +gUI +gUI +gUI +gUI +gUI +dzn +upX +upX +upX jtE dDL nlm @@ -187682,40 +193589,40 @@ kow vpd rNe ixf -mkq -ylO -ylO -pRO -lbW -srx -bJs -sVb -bJs +pDi +pDi +eBF pRO -uId +pOu +czG +iPx +sux +ekw +wIo +aLG afu afu -afu -idM -uNn -tMS -jlo -idM -qNW -orb -dCm -roj -dCm -aMz -jVB -dul -kVj -tSw -eZC -gZu -imd -jVB -sQZ +dVd +pRO +pRO +lPI +pRO +pwj +pRO +vxr +jMC +vxr +vxr +olH +tQq +srh +hJc +srh +tQq +rPg +dyu +vxr +jPa paf paf shs @@ -187768,25 +193675,25 @@ arT gsm ubs uKt -wKb -aFg -aFg -aFg -vyt -oxe -gTX -heo -aFg -aFg -wKb -sZh -sZh -sZh -izp -hRD -hRD -iYZ -wKb +upX +vca +vca +vca +jgD +mLp +dqZ +tCh +vca +vca +upX +ewu +ewu +ewu +qLQ +fTu +fTu +oXp +upX jtE dDL nlm @@ -187939,39 +193846,39 @@ rNe rNe rNe bPW -rWH -ylO -ylO +xKJ +rNe +pAp pRO -eIR -ugM -qSs -paI -bJs -wEn -fmN -afu +ovJ +viF +uPj +iMO +rVA +pRO +aLG afu afu +dVd +pRO +qKY +gMW +pRO +gMW +neN +vxr +egg +olH +vxz +jRq +wNR idM -klx -xvD -tTG idM -iTE -doH -mQS -roj -dCm -dJR -jVB -mwL -kVj -qJB -eZC -ylo -eZC -jVB +idM +vxr +uVb +vxr +vxr jPa paf paf @@ -188025,25 +193932,25 @@ arT gsm ubs ubs -wKb -wKb -wKb -wKb -vyt -wKb -wKb -cbq -hLp -hLp -wKb -sZh -aFg -aFg -aFg -aFg -aFg -aFg -wKb +upX +upX +upX +upX +wgq +upX +upX +pwY +pBm +pBm +upX +ewu +vca +vca +vca +vca +vca +vca +upX jtE dDL nlm @@ -188184,51 +194091,51 @@ nlm nlm nlm tSA -gGB -dCm -dCm -dCm -dCm -dCm -hwU -dCm -dCm -dCm -dCm -dCm -mmb -qCj -lMS +cZI +vxr +vxr +vxr +vxr +vxr +eOf +vxr +vxr +vxr +vxr +vxr +nTy +mdW pRO -dHS -tSa -eRm -bJs -jeX pRO -eza -afu -afu -afu +pRO +pRO +pRO +pRO +pRO +pRO +fOc +dhZ +dhZ +dVd +pRO +kml +vYN +pRO +fDH +ipr +vxr +mIE idM -vqq -giB -iJN idM -xuy -qNW -dCm -roj -dCm -dJR -jVB -lgF -lgF -jVB -lgF -pKJ -jVB -jVB +idM +idM +idM +uuD +idM +idM +hEu +fNP +biI jPa paf paf @@ -188286,21 +194193,21 @@ ewD wsv eTG ewD -xFw -baF -wKb -sZh -sZh -sZh -wKb -sZh -aFg -aFg -aFg -aFg -aFg -aFg -wKb +aOo +qIZ +upX +ewu +ewu +ewu +upX +ewu +vca +vca +vca +vca +vca +vca +upX jtE dDL nlm @@ -188419,73 +194326,73 @@ nlm nlm nlm nlm -heR -dbT -pmx -dbT -pmx -dbT -pmx -heR -heR -dcE -heR -heR -heR -heR -heR -heR -dDL +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm nlm tSA -qqY -hRj -dCm -jda -dCm -qzB -dXy -ecP -ecP -cNl -tAV -dCm -dCm -vMs -dCm -dCm -dCm -doL -dCm -dCm -dCm -dCm -afu -afu +tLP +vxr +gfd +wrb +vxr +qoL +rPg +qUo +bAf +dEr +qZy +vxr +vxr +gOv +vxr +ssX +xED +pRO +ekk +aLA +fpf +pRO +aLG afu afu +dVd +pRO +qaH +pZd +pRO +wZk +gyi +vxr +mFv idM +jaI +lgC +sjy idM +qsr +wWM idM -idM -idM -dCm -dCm -dCm -rGw -dCm -dJR -qkM -nSp -nSp -xmQ -mDk -twC -gpJ -cdi +hEu +bSg +elH jPa paf eqt @@ -188543,21 +194450,21 @@ ewD iFx ssV iPX -xFw -xzm -wKb -wKb -wKb -wKb -wKb -sZh -aFg -aFg -aFg -aFg -aFg -kbR -wKb +aOo +kuL +upX +upX +upX +upX +upX +ewu +vca +vca +vca +vca +vca +vbZ +upX ekn itl itl @@ -188676,74 +194583,74 @@ nlm nlm nlm nlm -dbT -mZo -mZo -mZo -mZo -mZo -mZo -pmx -heR -dcE -heR -wJJ -wJJ -wJJ -wJJ -wJJ -dDL nlm nlm nlm nlm -xrx -qqY -hRj -dCm -dCm -dCm -dXy -dXy -nYR -dXy -wsc -qPw -ecP -ecP -hqi -ecP -dCm -nit -eKc -dCm -pRx -lAE -dCm -afu -afu -afu -afu -dCm -ecP -lai -fNG -dCm -sgG -sgG -sgG -sgG -dVe -sgG -sMw -lYT -twC -twC -twC -tzO -rPK -cdi -sQZ +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +tSA +ixj +lWS +lRD +tQq +aqE +mAa +vgX +tpR +rPg +xTJ +nAx +vxr +vDv +rPg +vxr +vxr +pSk +pRO +xQg +dmC +uvx +nKE +mmO +jba +hgJ +vze +vxr +vxr +vxr +vxr +vxr +vxr +vxr +mIE +oFo +jaI +jaI +nIa +eWn +nIa +hMS +idM +hEu +fWL +biI +jPa paf jPa shs @@ -188800,21 +194707,21 @@ ewD fTA eUV ewD -eEv -eEv -eEv -eEv -eEv -eEv -eEv -sZh -aFg -aFg -aFg -aFg -aFg -aFg -wKb +epH +epH +epH +epH +epH +epH +epH +ewu +vca +vca +vca +vca +vca +vca +upX hRj hRj hRj @@ -188933,73 +194840,73 @@ nlm nlm nlm nlm -aDp -mZo -mZo -mZo -mZo -mZo -mZo -mZo -mrg -dcE -heR -wJJ -qeQ -qeQ -qeQ -wJJ -heR -heR -dDL -dDL -dDL -xrx -qqY -lrM -spK -roj -nxi -roj -hAh -ikK -tSE -dDq -cDA -roj -roj -hye -roj -iDw -dDq -dDq -jxj -sgG -sgG -dCm -dCm -dCm -dCm -dCm -dCm -gYY -dCm -dCm -dCm -sgG -dXy -dXy -oce -dXy -fIg -qkM -rnh -miE -wIl -ewf -wiA -jrb -cdi +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +waY +xIW +gVf +jbr +dTa +paZ +vfj +vyu +vUN +vUN +vUN +kwV +caK +vUN +yme +tBb +vxr +qHz +njf +njf +hop +kyp +vxr +vxr +emb +vxr +vxr +vxr +caB +nXh +caB +caB +nXh +mIE +egg +idM +bbX +jCS +pEm +idM +xym +bYt +idM +hEu +tua +biI jPa jPa jPa @@ -189056,22 +194963,22 @@ ubs ewD xCu vAg -cWU -cWU -cWU -cWU -cWU -sIn -eEv -siG -sZh -aFg -aFg -aFg -aFg -wlF -fMe -wKb +gUI +gUI +gUI +gUI +gUI +nyh +epH +eIq +ewu +vca +vca +vca +vca +xQr +qoB +upX hRj hRj hRj @@ -189190,73 +195097,73 @@ nlm nlm nlm nlm -heR -tWI -tWI -tWI -tWI -tWI -tWI -tWI -jyv -dcE -heR -wJJ -qeQ -qeQ -qeQ -wJJ -shx -pPu -pPu -pPu -pPu -shx -hRj -hRj -dCm -dCm -dCm -dCm -dCm -dCm -dXy -bNY -hMc -ojr -ojr -dDq -ojr -kHj -rCP -nGI -ecP -ecP -sgG -wul -sgG -sgG -sgG -sgG -sgG -sgG -sgG -sgG -xmx -exM -fqz -sOl -slP -fqz -rBo -cdi -cdi -cdi -cdi -cdi -cdi -cdi -cdi +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +xrx +jGG +jGG +jGG +jGG +jGG +jGG +unL +nOK +oit +rcc +wRQ +kYk +bSg +xSL +kwV +vxr +aDk +eKL +hFW +rxy +oGX +vxr +vUN +uwr +hkO +vep +gcT +caB +rPg +iGu +vxr +pCB +vxr +jGG +idM +omF +jBV +idM +idM +idM +idM +idM +vxr +vxr +vxr paf iFC paf @@ -189306,30 +195213,30 @@ uKt kKw uKt uKt -uKt +mQh gsm ubs ubs -wKb -weJ -cWU -cWU +upX +weM +gUI +gUI eeb mbP qYB -cWU -cWU -xJI -wKb -wKb -wKb -wKb -wKb -wKb -uQH -hBS -wKb -wKb +gUI +gUI +tsp +upX +upX +upX +upX +upX +upX +eot +eFE +upX +upX hRj hRj hRj @@ -189447,70 +195354,70 @@ nlm nlm nlm nlm -heR -tWI -aDp -uUH -aDp -uUH -aDp -uUH -jyv -dcE -heR -wJJ -rad -tOE -rOG -wJJ -shx -tlf -wCm -lqv -ejA -shx -hRj -hRj -hRj -hRj -hRj -hRj -hRj -dCm -eEN -wIW -hkm -hkm -hkm -qhP -hkm -hkm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -gGB -dCm -dCm -dCm -dCm -paf -paf -paf -paf -paf +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +xrx +kbu +txF +jya +eSI +hnO +jGG +jGG +jGG +jGG +jGG +jGG +jGG +rPg +xSL +kwV +vxr +vxr +vxr +vxr +vxr +vxr +vxr +kwV +mfF +uCO +uCO +flK +vxr +vxr +vxr +vxr +tkX kdR -uGj -jPa -jPa -jPa -qGa +kdR +kdR +tkX +tkX +uUg +tkX +tkX +tkX +tkX tLo paf paf @@ -189563,7 +195470,7 @@ ubs ubs ubs ubs -uKt +mQh gsm gsm gsm @@ -189704,70 +195611,70 @@ nlm nlm nlm nlm -heR -aDp -syR -syR -syR -syR -mrg -bWY -jyv -shx -shx -wJJ -eBf -pPu -eBf -wJJ -shx -pJf -jBB -yeH -evH -shx -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hkm -hkm -hkm -kOk -dUH -fHk -vpi -fHk -kOk -hRj -hRj -dDL -dDL -heR -heR -heR -heR -heR -dCm -qLZ -ffr -ohJ -dzI -dCm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +xrx +kbu +psU +dyM +rVb +iub +unl +eZC +lBD +kjg +rtL +qFS +jGG +rPg +rPg +vUN +vUN +vUN +vUN +vUN +vUN +vUN +vUN +kwV +wkn +uCO +uCO +oXB +vxr +utv +uCO +vxr paf paf paf paf paf -kdR +jPa paf paf paf paf -jPa +tkX paf paf paf @@ -189820,7 +195727,7 @@ ubs ubs ubs ubs -uKt +mQh ubs ubs ubs @@ -189961,76 +195868,76 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +slL +slL +slL dDL -dDL -dDL -dDL -dDL -shx -pPu -shx -xaT -shx -pKc -aMs -aMs -peo -mmM -qJu -shx -ncT -ewx -jBB -iUo -shx -kOk -kOk -kOk -hdi -hdi -hdi -hdi -kOk -kOk -qTk -dBG -knN -knN -knN -knN -kOk -hdi -hdi -hdi -hdi -hdi -hdi -hdi -hdi -hdi -kOk -uYX -kOk -lUM -kOk -kOk -kOk +xtW +xrx +kbu +orR +dyM +edC +mPx +unl +eZC +qJB +kVj +mwL +hYl +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +hUg +jGG +jGG +jGG +jGG +mch +jGG +jGG +vwg paf paf eaf paf -kdR -paf +jPa paf paf paf -jPa -jPa -jPa -jPa -jPa -jPa -jPa +tkX +tkX +cnw +cnw +cnw +cnw +cnw +cnw jPa paf paf @@ -190077,7 +195984,7 @@ ubs ubs ubs uKt -uKt +mQh uKt ubs ubs @@ -190218,76 +196125,76 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL -dcE -heR -qHf -qHf -shx -fVM -sTS -fVM -nfE -lyd -chG -chG -chG -chG -wdu -qvw -iPL -sGR -sGR -hig -shx -dJn -oOs -oOs -oOs -oOs -oOs -oOs -iTB -mQT -oOs -oOs -oOs -oOs -oOs -oOs -oOs -oOs -oOs -oOs -anJ -oOs -oOs -oOs -oOs +slL +dDL +dDL +dDL +nlm +nlm +unl +unl +unl +xAC +suI +bBq +iub +unl +eZC +kVj +kVj +tSw +hYl +iHr +uFe +rvo +cbA +jVB +wPp oOs -hUw -ppX -mGO -rLz -xfj -dtC -fzS +aoY +qww kOk +jBJ +lnZ +fTa +aQO kOk +mze +ohi +uDx +weC +lDI kOk kOk -fnD +rDG kOk -cWU -wKb -wKb -qzb -wKb -wKb -wKb -wKb -wKb -dkQ +kOk +mAH +kOk +fTV +ksJ +fYG +ksJ +ksJ +ksJ +ksJ +ksJ +ksJ +dgl euG euG pJR @@ -190298,11 +196205,11 @@ cjh cjh cjh mus -dJC -mus +cXX mus -dJC mus +cXX +riN mus cXX mus @@ -190311,53 +196218,53 @@ gpO mHf mHf mHf -rKA -rJJ -rKA -rKA -rKA -rKA -rKA -rKA -rKA -daz -rKA -rKA -rKA -rKA -rKA -rKA -eij -hKh -cLq -cLq -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -evO -evO +wrT +vCG +wrT +wrT +wrT +wrT +wrT +wrT +wrT +hHi +wrT +wrT +wrT +wrT +wrT +wrT +aSk +omU +gKq +gKq +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +hdV +hdV rkB lmT uBq -evO -evO -rKA -rKA -rKA -rKA -rKA -rKA -rKA -qxE -qxE -rKA -rKA +saT +saT +blF +blF +blF +blF +blF +blF +blF +inv +inv +blF +blF hRj hRj hRj @@ -190475,76 +196382,76 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL -dcE -heR -iVT -duQ -jCJ -fVM -fVM -uBv -wtd -aMs -wdu -iWM -aMs -aMq -iOk -aMs -aMs -ccV -hja -uuo -shx -eSh -vel -vel -vel -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -fkR -gSY -iov -iov -kFS -iov -hWk +nlm +nlm +nlm +dDL +nlm +nlm +kbu +pcM +uMG +jOm +dCs +kox +iub +unl +eZC +mwL +kVj +qJB +jRQ +jjp +xMf +pRB +ifk +lXl +kSk +bAW +hHj +aAn +oOs +oOs +iKA +oOs +oOs +ipL +oOs +mGO cCM cCM -iak -fzS -ljh +eAh +kNc cCM cCM -oWN -kSL cCM cCM -aFg -cWU -tub -wKb -lKZ -ebM -mgM -wKb -rRW +sUW +cCM +cCM +fTV +nwH +oxH +ksJ +jem +duw +vZH +ksJ +hrC euG uAZ xDY @@ -190554,67 +196461,67 @@ euG sby jkW lRd -oTd -nUo -oTd -oTd +vAh +oJd avc -oTd -oTd avc -oTd -iju +avc +avc +avc +vAh +vAh +jkG qaI qiY bHb mHf -wcV -kFa -pIV -rKL -rKL -rKA -wcV -wcV -wcV -rMj -wcV -wcV -jip -wcV -rKA -rKL -pRm -rKL -rKL -rKL -wcV -rKL -rKA -www -dTi -rMj -rMj -ehO -pIV -xgb -evO -evO -mbv -evO -evO -wAW -rMj -pIV -wcV -wcV -wcV -pIV -rMj -wcV -wcV -fgg -rKA +sfc +vmk +avI +sfc +sfc +wrT +sfc +sfc +sfc +bJo +sfc +sfc +uzi +sfc +wrT +lwA +cCo +lwA +lwA +lwA +sfc +lwA +wrT +oyS +djX +bJo +bJo +kzy +avI +szA +hdV +saT +tUn +saT +saT +ugw +sOm +fGg +duC +duC +duC +fGg +sOm +duC +duC +lpA +blF hRj hRj hRj @@ -190732,76 +196639,76 @@ nlm nlm nlm nlm -slL -dcE +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm dDL -qHf -qHf -shx -buP -fVM -fVM -rDm -wKI -iWA -gqb -wdu -wdu -iOk -aMq -aMs -aMq -raa -bWC -shx -rqm -fMu -fMu -fMu -auP -fMu -qRb -fMu -oXO -fMu -fMu -fMu -fMu -fMu -fMu -bCP -fMu -fMu -fMu -fMu -pgh -fMu -auP +nlm +uSI +aDw +aDw +aDw +aDw +kbu +aNP +bLx +rvv +rvv +rvv +rvv +unl +eZC +wyV +eZC +vek +wVh +jVB +fop +fKl +uPz +oql +dBo +exk +exk +dmI +cdo +exk +dmI +xFg fMu -cfT -bMD +hdi fMu agz cCM cCM -iak -fzS -ljh +eAh +kNc +cCM cCM dVv uhO ulj -csN +xGV cCM -aFg -cWU -xJt -wKb -gOd -wYw -wYw -wKb -nhE +fTV +iQD +oBl +ksJ +hLr +lDH +lDH +ksJ +tey euG ceR cZh @@ -190815,63 +196722,63 @@ avc avc avc avc +rrE avc avc avc avc -avc -iju +jkG igc lDj -nWV +qEN mHf -rKL -kFa -rKL -rKL -rKL -rKA -wcV -wcV -wcV -nmH -wcV -wcV -pIV -wcV -rKA -rKL -pRm -rKL -rKL -rKL -pIV -rKL -rKA -www -rMj -pIV -rMj -rMj -pIV -rMj -rKA -lxN -gtd -rKA -tza -sqo -rMj -pIV -gBf -pIV -pIV -pIV -rMj -wcV -wcV -wcV -rKA +lwA +vmk +lwA +lwA +lwA +wrT +sfc +sfc +sfc +kki +sfc +sfc +avI +sfc +wrT +lwA +cCo +lwA +lwA +lwA +avI +lwA +wrT +oyS +bJo +avI +bJo +bJo +avI +bJo +wrT +oeH +mOk +blF +gYU +pZW +sOm +fGg +usk +fGg +fGg +fGg +sOm +duC +duC +duC +blF nGm hRj hRj @@ -190935,50 +196842,62 @@ nlm nlm nlm nlm -"} -(162,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(162,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -190990,75 +196909,63 @@ nlm nlm nlm slL -nlm -dDL dDL -dDL -shx -hVc -fVM -iZe -abi -nTp -vcF -gng -tls -uBh -uqw -jmD -tnX -aMq -vIy -tMw -shx -rqo -pGl -pGl -rqo -eLh -pGl -rqo -pGl -pGl -pGl -rqo -ngH -hYV -hYV -hYV -ngH -ngH -hYV -hYV -ngH -ngH -hYV -rBF -hYV -ngH -ngH -cbT +nlm +qms +mDG +mDG +mDG +mDG +kbu +rSP +uMG +czx +lrZ +gfi +qVE +unl +unl +unl +unl +unl +unl +gmD +gmD +wPt +gmD +gmD +gmD +dwQ +dwQ +gmD +gmD +dwQ +aod +dwQ +gmD +gmD +gmD cbT +oDs cbT +sKx cbT -sdI cbT -ljh cCM bKj cCM cCM -sUW +eTP cCM -cCM -kOk -wGi -wKb -oFU -wYw -wYw -wKb -cea +fTV +xfQ +oBl +ksJ +oWJ +lDH +lDH +ksJ +iyZ euG fSW kek @@ -191067,68 +196974,68 @@ bzN aPG rTF geK -oip +uEL pSB avc -tDn pSB -avc +kxW +acx +tGv pSB -uAn avc pSB -iju +jkG cDZ -lDj +bqO ueN mHf -rKL -kFa -rKL -rKL -rKL -rKA -wcV -wcV -wcV -rMj -wcV -wcV -pIV -wcV -rKA -pIV -pRm -pIV -pIV -pIV -pIV -pIV -rKA -rMj -rMj -rMj -rMj -pIV -sKH -ceB -rKA -pPG -gtd -rKA -dTb -rMj -iCx -pIV -wcV -wcV -wcV -pIV -rMj -wcV -wcV -wcV -rKA +lwA +vmk +lwA +lwA +lwA +wrT +sfc +sfc +sfc +bJo +sfc +sfc +avI +sfc +wrT +avI +cCo +avI +avI +avI +avI +avI +wrT +bJo +bJo +bJo +bJo +avI +xMn +prO +wrT +isY +mOk +blF +mWC +sOm +bvE +fGg +duC +duC +duC +fGg +sOm +duC +duC +duC +blF hRj hRj hRj @@ -191246,76 +197153,76 @@ nlm nlm nlm nlm -slL -slL -slL nlm nlm -shx -vvb -foH -jhg -fVM -fVM -pPu -wUI -siN -oxu -qij -eOM -nKz -cot -chZ -lcN -shx -rqo -nhU -svt -mmt -nhU -ijs -uwn -ijs -xpr -ijs -ggW -ngH -wxU -jEV -fzl -rWs -aRW -xAI -oDg -aFk -xBt -btj -tLs -tLs -mkV -hsd -ujX -eYS -aQL -qve -gph +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +hMq +iWu +dDL +dDL +qms +iVr +unl +unl +xFN +unl +rci +bLx +bkC +kcC +dWe +hOo +bKw +uwk +phI +kau +oDp +mWB +gmD +cca +vBT +njc +kep +jKL +lZW +uxZ +yfq +eeh +mzm +tla +kWs +gjR +wpK +dwU +riB +bNO +mej +kXW +tLD uAO uhO -uhO jgt cCM cCM -fyH -sIW -sIW -dLO -eEv -wKb -kAq -wYw -wYw -iyk -eEv +tVe +dxQ +vlI +bEP +oBl +ksJ +aLB +lDH +lDH +fPo +mLv euG tCb koU @@ -191327,65 +197234,65 @@ pBa oRG pSB avc -pSB -pSB -avc -pSB -pSB +oTd +byE +psi +qKC +oTd avc pSB -iju +jkG gnx uuV -qvu +lfX mHf -pIV -kFa -pIV -wcV -pIV -uKm -pIV -pIV -pIV -rMj -pIV -pIV -pIV -pIV -rKA -rKL -dsY -rKL -rKL -rKL -pIV -rKL -rKA -pIV -pIV -rMj -rMj -rMj -rKA -rKA -rKA -rKA -lrT -rKA -rKA -rKA -rKA -uKm -rKA -wtn -uon -rKA -rMj -rMj -rMj -rMj -rKA +avI +vmk +avI +sfc +avI +ano +avI +avI +avI +bJo +avI +avI +avI +avI +wrT +lwA +dQk +lwA +lwA +lwA +avI +lwA +wrT +avI +avI +bJo +bJo +bJo +wrT +wrT +wrT +blF +fXr +blF +blF +blF +blF +nqf +blF +dSY +qge +blF +sOm +sOm +sOm +sOm +blF odg hRj hRj @@ -191505,74 +197412,74 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL -dDL -dDL -shx -shx -aPr -hNJ -fVM -fVM -shx -sRd -shx -gfs -ngQ -ngQ -cay -cay -nqm -oGW -vqn -wyc -ltG -ijs -xBQ -sRP -bWQ -eZV -bGR -sAu -fKD -sAu -oCU -njY -ntA -eVy -xAI -snF -xAI -vKw -xAI -xAI -src -xAI -ggU -wzr -tkV -ujX -obp -tIW -uqf -mVu -gGb -ljh +nlm +nlm +qms +mDG +mDG +unl +nxq +unl +bIm +jTp +gfi +aWM +veh +veh +xpd +xYc +cNK +cNK +cNK +cNK +fUr +fVR +tnJ +bOK +tla +rRT +egA +obM +ldV +tla +egA +tla +bLm +bLm +nBm +dwU +uBo +xxr +gqc +isr +eXJ +oDs cCM -bXp +nKe cCM cCM sUW -cCM lUC -kOk -cdP -wKb -iee -wYw -wYw -wKb -gTX +fTV +eMN +oBl +ksJ +mBZ +lDH +lDH +ksJ +mLv tWx mga hoJ @@ -191592,57 +197499,57 @@ tEl tEl tEl sfz -uRs +tpJ uRs djG mHf -rKL -kFa -rKL -rKL -rKL -rKA -rMj -rMj -rMj -rMj -wcV -pIV -wcV -wcV -rKA -rKL -pRm -rKL -rKL -rKL -pIV -rKL -rKA -rKA -vcT -rKA -rKA -rKA -rKA -iPt -cme -rKA -lrT -mtw -gtd -feR -gtd -gtd -gqM -gtd -gtd -mGx -rMj -rMj -wcV -rMj -rKA +lwA +vmk +lwA +lwA +lwA +wrT +bJo +bJo +bJo +bJo +sfc +avI +sfc +sfc +wrT +lwA +cCo +lwA +lwA +lwA +avI +lwA +wrT +wrT +jji +wrT +wrT +wrT +wrT +kbo +xEJ +blF +fXr +sZi +mOk +aZy +mOk +mOk +eZk +mOk +mOk +wel +sOm +sOm +duC +sOm +blF ilu hRj wyj @@ -191762,144 +197669,144 @@ nlm nlm nlm nlm -slL nlm nlm -uIx -fPl -ooF -cBY -xpF -fVM -shx -ogB -mDo -fQR -kBo -fAb -qij -qij -kxA -tES -isn -gvK -ijs -rhD -dwq -nhU -bmc -ijs -qfT -qRp -qRp -tCI -ngH -tyY -xAI -iux -xAI -xAI -xAI -iJs -xAI -xAI -nDM -xAI -xAI -tLs -dgm -ulQ -pxw -wmr -rYP -sKR -gRI -ljh +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +xIe +nlm +nlm +qms +mDG +ezY +unl +wvR +xWN +wkF +qmT +izV +ufI +veh +veh +qHX +nWX +gfi +qFk +mfh +mfh +gmD +wmS +bGe +nUF +nKf +ruf +qpn +qpn +wbM +kWs +jdM +nKf +hBj +bGe +dqI +hjH +ctL +lHI +uIf +oaX +lxb +oDs cCM -bXp +nKe cCM cCM sUW cCM -cCM -kOk -xRJ -wKb -iee -wYw -wYw -wKb -kiT +fTV +rtm +oBl +ksJ +mBZ +lDH +lDH +ksJ +xxs euG euG euG kMr umq euG -cIN +cEj igJ -oip +uEL oTd avc oTd -oTd avc -oTd +avc +nCg oTd nUo dOQ mHf -iju -iju +jkG +jkG mHf mHf -rMj -lLa -rMj -rMj -rMj -rKA -wcV -wcV -rMj -wcV -wcV -pIV -wcV -pIV -uKm -pIV -vrO -nfB -mwh -nfB -nfB -nfB -lrb -iCS -mcR -gtd -gtd -gtd -vvL -gtd -gtd -qZB -lrT -rKA -aFm -sUV -rKA -gtd -rKA -rKA -rKA -rKA -cIp -rMj -rMj -dTi -rKA +bJo +rYU +bJo +bJo +bJo +wrT +sfc +sfc +bJo +sfc +sfc +avI +sfc +avI +eIN +avI +sVc +rVG +wfO +rVG +rVG +rVG +odo +iZk +qnh +rYh +rYh +rYh +jZQ +rYh +rYh +gUV +fXr +blF +fNr +kTm +blF +mOk +blF +blF +blF +blF +wNp +sOm +sOm +wDz +blF dXi hRj hRj @@ -192019,145 +197926,145 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL nlm nlm -uIx -hcf -hbS -hbS -nkE -wpd -shx -ewK -shx -hMF -uRB -shx -qij -qij -kxA -qij -kXa -uzh -ijs -ijs -lEy -nhU -vPa -ijs -vPK -tqU -qRp -mLk -ngH -kbS -tLQ -rSX -vQf -tLQ -eVu -sLx -nRk -eVu -vQf -qpY -guy -cIM -nav -apI -hLS -sko -jLH -mVu -rKO -ljh +qms +mDG +mDG +unl +rlF +unl +dZn +dhy +unl +pFY +ffs +xIk +eJx +nWX +gfi +ehu +fJY +tIo +gmD +nqo +eyC +rWn +dPC +kWs +kWs +kWs +kWs +kWs +kWs +dPC +dht +eyC +nKf +xEM +ush +hzk +klA +vny +wpM +oDs cCM -bXp +nKe cCM cCM sUW cCM -cCM -kOk -xqG -wKb -lQE -dHb -jUI -wKb -hmG -fAV -uUX +fTV +apy +bHL +ksJ +mSN +mJT +gVj +ksJ +rpd +kCz +gvM euG euG euG euG rRM igJ -oip -pSB -pSB -pSB -pSB -uTJ -pSB -pSB +uEL pSB +avc +oTd +pZT +hmb +aiP +oTd +avc pSB lGA cAH emh -cjh -gtd -rKL -kFa -rKL -rKL -rKL -rKA -wcV -wcV -rMj -wcV -rMj -rMj -rMj -rMj -rKA -rKL -pIV -rKL -rKL -rKL -pIV -rKL -rKA -mpX -fZP -sgM -rFi -uhx -rKA -rKA -rKA -rKA -lrT -rKA -rKA -rKA -rKA -pIV -pIV -pIV -yfs -rKA -rKA -rKA -rKA -rKA -rKA -rKA +qcQ +svT +lwA +vmk +lwA +lwA +lwA +wrT +sfc +sfc +bJo +sfc +bJo +bJo +bJo +bJo +wrT +lwA +avI +lwA +lwA +lwA +avI +lwA +wrT +gxb +pWk +mOU +aur +jvK +wrT +wrT +wrT +blF +fXr +blF +blF +blF +blF +fGg +fGg +fGg +gJw +blF +blF +blF +blF +blF +blF +blF hRj hRj hRj @@ -192276,145 +198183,145 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL nlm nlm -uIx -crn -llh -kEq -shx -shx -shx -vHa -aZQ -hHE -oTq -iGC -goM -qij -kxA -qij -rqo -jdr -ijs -pID -ijs -ijs -ijs -ijs -jcP -qRp -qRp -eGp -ngH -kbS -sLx -pdM -sLx -eVu -eVu -sLx -xTY -eVu -sLx -sLx -xAI -sLx -jnQ -ujX -oNP -sAM -mVu -wlV +qms +mDG +mDG +yau +qsx +fsW +kEf +qlu +cgI +kZw +tWe +jQH +tiN +nWX +fht +xgP +tIo +mOB +gmD +amd +tVz +alb +jyP +tVz +lPi +kPC +pGL +lPi +jyP +lrX +oiw +jyP +nKf +dwU +oVQ +uvT +hzk +vXC +ixW cbT -ljh cCM -bXp +nKe cCM cCM sUW cCM -cCM -kOk -vqE -wKb -wKb -wKb -wKb -wKb -gTX -syU -uJR -cea -nns -uEs -wKb +fTV +kzW +ulD +ksJ +ksJ +ksJ +ksJ +ksJ +mLv +nTU +gAS +inL +yiB +ruZ +ksJ wVx igJ -oip -pSB -pSB -pSB -pSB +roY +avc +avc +avc +fNn fPf -pSB -pSB -pSB -pSB +txz +avc +avc +avc mIp iMT sLK -cjh -tpA -kFa -kFa -wcV -pIV -wcV -rKA -wcV -wcV -rMj -pIV -rMj -rMj -rMj -dTi -rKA -rKL -pIV -rKL -rKL -rKL -pIV -rKL -rKA -dto -eNY -iqo -gYS -uhx -rKA -rKL -rKL -gtd -lrT -gtd -rKL -rKL -rKA -lcE -rKA -rKA -qHT -fqj -bCa -pIV -gtd -uEM -gtd -vJV +wrT +oVe +oPH +oPH +sfc +avI +sfc +wrT +sfc +sfc +bJo +avI +bJo +bJo +bJo +djX +wrT +lwA +avI +lwA +lwA +lwA +avI +lwA +wrT +dal +ayI +kYM +rGg +jvK +wrT +lwA +lwA +mOk +fXr +mOk +uMt +uMt +blF +xhv +blF +blF +sEc +lVR +xfi +fGg +mOk +pNV +mOk +neA hRj hRj pma @@ -192477,25 +198384,34 @@ nlm nlm nlm nlm -"} -(168,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(168,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -192526,152 +198442,143 @@ nlm nlm nlm nlm +dDL nlm nlm +dDL nlm nlm nlm nlm +xIe nlm -slL -dcE nlm -shx -dMJ -pFJ -vwx -shx -bbO -shx -kwG -fJc -shx -tHE -shx -pTz -qNX -mHZ -bpZ -rqo -vjC -ijs -ijs -ijs -csf -ijs -ijs -jcP -gtw -gtw -jIj -ngH -wIS -xAI -iux -fXp -xAI -xAI -xAI -fXp -xAI -xAI -xAI -fXp -xAI -xAI -hql -cbT +qms +mDG +mDG +yau +tEi +aSc +unl +kKn +unl +lKl +rVt +aKj +tiN +nWX +xMJ +unl +kbu +kbu +gmD +raE +kPC +oBO +sUw +lPi +lPi +kPC +okG +lPi +kPC +kPC +gcx +kPC +bor +fPN +gmD sRE -vUb +rET sRE cbT +cbT cCM +xfy +unU +ddu +sti cCM -eAd -iKj -txs -xqm -cCM -itq -kOk -lgZ -cea -vwR -xIV -kFQ -mgY -cPW -wdD -vDT -cVH -wKb -wKb -wKb +fTV +bEP +xXC +nKk +oWD +ykK +esD +myP +uYg +tLE +vgf +sLO +ksJ +ksJ +ksJ pec igJ -oip -pSB -pSB -pSB -pSB -pSB +uEL pSB +avc pSB +xky +xky +xky pSB +avc pSB lnH peQ hXr -pZT -wqN -rKL -pIV -rKL -rKL -rKL -rKA -wcV -wcV -rMj -wcV -rMj -rMj -rMj -rMj -rKA -wcV -pIV -pIV -pIV -pIV -pIV -pIV -rKA -rKA -ter -hKh -hKh -rKA -rKA -rKA -rKA -rKA -lrT -rKA -rKA -rKA -rKA -rKA -exV -sPp -qHT -rKA -kQV -awK -rKA -rKA -rKA -rKA +wrT +rWg +lwA +tQB +lwA +lwA +lwA +wrT +sfc +sfc +bJo +sfc +bJo +bJo +bJo +bJo +wrT +sfc +avI +avI +avI +avI +avI +avI +wrT +wrT +lLG +omU +omU +wrT +wrT +wrT +wrT +blF +fXr +blF +blF +blF +blF +blF +fTC +dtT +sEc +blF +nEt +bjr +blF +blF +blF +blF hRj hRj hRj @@ -192790,144 +198697,144 @@ nlm nlm nlm nlm +nlm +hMq +iWu slL -heR +slL +iWu +slL +slL +slL +slL +iWu dDL -shx -shx -shx -shx -shx -shx -shx -kHY -kHY -shx -uOo -vVv -vVv -shx -shx -shx -rqo -eEW -bDn -ijs -ijs -rKz -ijs -ijs -jcP -qRp -oys -iLH -ngH -nsN -xAI -qtC -pXM -oXX -woG -oSU -wgD -fZB -hKS -oXX -okO -xAI -xAI -jBh -cbT -eKL -mVu -orn +dDL +qms +iVr +unl +unl +xSc +xSc +unl +agB +unl +gPk +oYu +kmT +eRO +nWX +sdP +nGA +nGA +ugm +gmD +kaj +kWs +eKq +nVz +sxP +hPj +htN +yay +rQG +vnC +sxP +hMz +kWs +nKf +qYb +gmD +sLQ +oef +rVd cbT -cCM -cCM -cCM -okP -vLb -cCM -cCM -itq -kOk -jzz -jzz -pDa -jzz -jzz -wKb -njA -wKb -wKb -cth -icj -dXN -bNC +shi +shi +slo +shi +sjr +slo +shi +fTV +ksJ +ksJ +ksJ +mXI +ksJ +ksJ +ksJ +xDw +ksJ +ksJ +irj +tsV +xrU +uaU fqZ xGq vkO pSB +avc pSB -xsU -uib pSB pSB pSB pSB +avc pSB gLT -gYP +peQ rCF -cjh -ohw -rKL -pIV -rKL -rKL -rKL -rKA -wcV -wcV -rMj -wcV -rMj -dTi -rMj -rMj -rKA -rKL -wcV -rKL -rKL -rKL -wcV -rKL -rKA -wcV -xMv -bwd -bwd -bwd -jDq -rKL -wcV -rKA -lrT -rKA -yiW -fwd -rKA -tcz -exV -rKA -qHT -rKA -fnW -afB -dSX -dUG -rKA +wrT +rWg +lwA +tQB +lwA +lwA +lwA +wrT +sfc +sfc +bJo +sfc +bJo +djX +bJo +bJo +wrT +lwA +sfc +lwA +lwA +lwA +sfc +lwA +wrT +sfc +chg +dUK +dUK +dUK +sHi +lwA +sfc +blF +fXr +blF +hYW +rIm +blF +ucR +fTC +blF +sEc +blF +xrw +dDG +yel +aGe +blF hRj hRj hRj @@ -193048,83 +198955,83 @@ nlm nlm nlm nlm -dcE nlm -dcE -dcE -heR -myt -dcE -dcE -dcE -dcE -dcE -dcE -dcE -myt -gaf +slL +nlm +nlm +dDL +nlm +nlm +nlm +nlm +dDL +nlm +nlm +qms mDG +nKW mDG mDG -efZ -xbP -pxN -ijs -ijs -ijs -ijs -ijs -jcP -lnf -fVU -fVU -ngH -lse -xAI -dxv -phf -mLS -mLS -mLS -ado -mLS -mLS -mLS -lEf -okO -xAI -qYY -cbT -iMq -mVu -xjq +mDG +kbu +qWr +jYR +gPS +hrN +tpI +lWD +nWX +dPj +emd +nGA +lPR +gmD +kWs +kWs +gql +iQd +vxS +vxS +vxS +vxS +vxS +vxS +vxS +bkv +hMz +kWs +rjM +gmD +hSa +eDP +eej cbT -kOk -kOk -kOk -kOk -wiO -kOk -kOk -kOk -kOk +eCa +mlc +iwq +oXv +iwq +uYT +pQp +uYT +iwq mKk qVD lia -arL -jzz -xwu -oeF -sZh -cWU -cWU -cWU -cWU -cWU +gQY +ksJ +fms +qFV +oBl +fTV +fTV +fTV +fTV +fTV kWj dNZ wtJ -wuz +bZK wuz xRI gQI @@ -193136,55 +199043,55 @@ dKL lhy peQ cCN -cjh -rBh -lEi -pIV -rKL -rKL -rKL -rKA -wcV -wcV -rMj -pIV -rMj -rMj -rMj -oXh -rKA -rKL -pIV -rKL -rKL -rKL -pIV -rKL -rKA -wcV -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -sqz -qHT -qHT -vcn -pbZ -rKA -fNZ -rKA -fHi -oSE -qHN -juz -rKA +wrT +bex +iGo +tQB +lwA +lwA +lwA +wrT +sfc +sfc +bJo +avI +bJo +bJo +bJo +pwW +wrT +lwA +avI +lwA +lwA +lwA +avI +lwA +wrT +sfc +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +mPK +iYa +hOV +msQ +xTq +blF +dQz +blF +gFF +oFI +rgL +lsl +blF hRj hRj hRj @@ -193305,143 +199212,143 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE nlm -dDL -rAT nlm +dDL nlm nlm nlm nlm +dDL nlm nlm -rAT -gaf +qms mDG +nKW mDG mDG -efZ -xbP -ijs -ijs -ijs -ijs -ijs -ijs -jcP -qRp -hOZ -lEj -ngH -hFA -hFA -kvb -mLS -mLS -aSB -aSB -aSB -aSB -aSB -mLS -mLS -wVX -qcT -mNC -cbT -qHC -xdZ -cbT +mDG +unl +xVG +rZp +rZp +onW +wDp +xAr +nWX +lst +nGA +nGA +wjG +gmD +cet +cet +eSk +vxS +vxS +rFg +rFg +rFg +rFg +rFg +vxS +vxS +fYR +cet +kbh +gmD +phz +fbe +vuR cbT -omx +kGQ iwq vVR -fVn -iOc -ddM +pmd +fBs +vRf vRf -cfI -tfy +vRf +jHk wZE dJt ksa oOZ -jzz -fCe -aud -aUF -cWU -eku -oyG -cYq -cWU +ksJ +ntz +kEG +hyw +fTV +fFN +uCI +kGg +fTV rcF geK sRH +uHD +iju +inK +dbw +geK ntx geK -inK -aiP -uEL -xCe -hxW -kdQ +geK aPg jAO bEr ucf -cjh -mHx -wcV -pIV -pIV -wcV -pIV -rKA -wcV -rMj -rMj -wcV -dTi -rMj -oXh -xuu -rKA -pIV -pIV -wcV -rAH -pIV -pIV -pIV -rKA -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -gCv -odB -rKA -rKA -tpA -rKA -rKA -rKA -vqZ -lWQ -nWs -pJC -rKA +wrT +wrT +wrT +eSY +kIE +kIE +kIE +wrT +sfc +bJo +bJo +sfc +djX +bJo +pwW +bMx +wrT +avI +avI +sfc +cVW +avI +avI +avI +wrT +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +pul +oxo +blF +blF +vSA +blF +blF +blF +nVY +uop +rvz +pnF +blF hRj wyj hRj @@ -193562,10 +199469,10 @@ nlm nlm nlm nlm -dcE -slL -dcE -nlm +dDL +iWu +dDL +hMq bxd bxd ydS @@ -193578,43 +199485,43 @@ ydS bxd bxd mDG +udN mDG -mDG -efZ -xbP -ijs -ijs -ijs -lpw -ijs -ijs -jcP -gtw -gtw -bQt -ngH -hFA -hFA -dOl -mLS -mLS -aSB -sgX -pvS -sgX -aSB -mLS -mLS -wre -qcT -agh -shi +unl +gbN +gfi +sru +iUz +hPW +frT +nWX +gDk +uEi +jcM +fYy +gmD +cet +cet +mCa +vxS +vxS +rFg +tPe +tPe +tPe +rFg +vxS +vxS +qdP +cet +ubk +gmD shi shi shi shi shi -oLx +gCu fmO gPv iwq @@ -193625,18 +199532,18 @@ sus vfZ hsz bHG -arL -jzz -ulu -dHK -aUF -cWU -wYw -wYw -bgA -cWU +lsu +ksJ +iJY +uLD +hyw +fTV +lDH +lDH +bIq +fTV nKr -pBa +pxX xKc uAP dOH @@ -193645,60 +199552,60 @@ wXM xeN qHQ cud -tIm +cud cgX nwQ dKT ucX -cjh -mHx -rKA -onm -rKA -rKA -daz -rKA -rKA -rKA -daz -rKA -rKA -rKA -rKA -rKA -rKA -pIV -pIV -rKL -rKL -rKL -pIV -rKL -rKA -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -huR -rKA -rKA -aKB -qmI -tpA -tpA -rKA -jxW -iwN -lBS -igm -rKA +wrT +rYh +wrT +txm +wrT +wrT +wim +wrT +wrT +wrT +hHi +wrT +wrT +wrT +wrT +wrT +wrT +avI +avI +lwA +lwA +lwA +avI +lwA +wrT +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +bHJ +blF +blF +oim +sMK +vSA +vSA +blF +dTX +xIh +uGm +sVo +blF hRj hRj hRj @@ -193819,16 +199726,16 @@ nlm nlm nlm nlm -dcE +nlm slL -heR -dDL +nlm +nlm bxd -eFm +mIx bNX bNX bNX -fWz +dKM bNX bNX bNX @@ -193837,40 +199744,40 @@ bxd mDG mDG mDG -rqo -xbP -aEr -ijs -ijs -lIw -ijs -ijs -jcP -qRp -qRp -smD -ngH -hFA -qcT -dOl -mLS -aSB -aSB -sgX -sgX -sgX -aSB -aSB -mLS -wre -qcT -qcT -kXT -udb -vVb -aIt +kbu +qWr +gfi +lrZ +iUz +gfi +gfi +nWX +gDk +nGA +nGA +mig +gmD +cet +ciT +mCa +vxS +rFg +rul +tPe +tPe +tPe +rul +rFg +vxS +qdP +ciT +vQe +tUG +rrI +ecz +eWZ tMJ -tnY +lyM tTS urx qbw @@ -193879,83 +199786,83 @@ uaw bzL fmO sus -cck -jzz -jzz -jzz -jzz -wKb -wKb -wKb -cWU -oVF -cWU -cWU -cWU +sQp +ksJ +ksJ +ksJ +ksJ +ksJ +ksJ +ksJ +fTV +mxp +fTV +fTV +fTV cjh uKP -uKP cjh +gYP +kdQ +tFD +kdQ +wqN cjh -wwE -csK -cjh -kLe -kPd -cjh +uKP +uKP cjh uKP uKP uKP -cjh -cmO -cmO -qHN -vAv -rKA -ayr -kdE -hlm -sry -gtd -gtd -iWb -rmV -qHN -rKA -rKA -daz -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -rKA -rKA -pIV -pIV -rKA -rKA -tpA -rKA -rKA -rKA -rKA -rKA -rKA +wrT +rYh +wrT +icg +lVF +wrT +esr +iWF +qJk +vwL +hXV +hXV +qxw +mAR +wMy +wrT +wrT +qyT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +blF +blF +fGg +fGg +blF +blF +vSA +blF +blF +blF +blF +blF +blF hRj hRj hRj @@ -194076,9 +199983,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS bNX @@ -194086,7 +199993,7 @@ bNX bNX bNX bNX -kVm +bNX bNX bNX pSI @@ -194094,41 +200001,41 @@ bxd mDG mDG mDG -rqo -xbP -lrl -ijs -ijs -ijs -ijs -ijs -dFY -qRp -qRp -smD -ngH -riI -qcT -dOl -mLS -aSB +kbu +qWr +gBC +jcw +jkM +gfi +gfi +nWX +gDk +emd +nGA +ged +gmD +dXq +ciT +mCa +vxS +rFg tPe tPe tPe tPe tPe -aSB -mLS -jnq -sRj -siz -shi -npj +rFg +vxS +xBU +cHL +fRy +gmD +jsG cEd vki -dPQ -spb -spb +vki +slo +qYr sus fmO aDN @@ -194137,82 +200044,82 @@ yiY sus oLL sus -wKb -sZh -sZh -sZh -sZh -sZh -sZh -oSo -wYw -cWU -hRj -hRj +ksJ +oBl +oBl +oBl +oBl +oBl +oBl +dJH +lDH +fTV hRj hRj hRj hRj uKP weW +dJC +cjh cly -lnv -cGp -vAh +xsU uKP hRj hRj hRj hRj hRj -rKA -cmO -xFS -rKA -rKA -rKA -rKA -rKA -daz -rKA -rKA -rKA -iGc -gtd -rKA -fus -gtd -vet -wcV -rKL -wcV -qMC -vSU -blq -rKA -pIV -rKL -rKL -rKL -rKL -rKL -pIV -rKA -lrT -qTm -gtd -gtd -gqM -pIV -qjt -rKA -kaN -vAF -kFa -kFa -kFa -xUW -rKA +hRj +wrT +wrT +wrT +hvy +wrT +wrT +wrT +wrT +wrT +qyT +wrT +wrT +wrT +ekH +hXV +wrT +wtN +rYh +tKH +sfc +lwA +sfc +dfy +pdg +cBl +wrT +avI +lwA +lwA +lwA +lwA +lwA +avI +blF +fXr +nIC +mOk +mOk +eZk +fGg +jnU +blF +bup +hkr +xex +xex +xex +pVr +blF hRj hRj hRj @@ -194276,40 +200183,41 @@ nlm nlm nlm nlm -"} -(175,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(175,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -194333,9 +200241,8 @@ nlm nlm nlm nlm -dcE slL -dcE +nlm nlm ydS mfn @@ -194348,44 +200255,44 @@ cZP bNX hTs bxd -vGE +eTi bxd -vGE -rqo -xbP -ijs -ijs -ijs -pID -ijs -ijs -iuu -gix -cAI -smD -ngH -qcT -qcT -dOl -mLS -aSB +eTi +unl +tDq +gfi +gfi +iUz +gfi +nWX +nWX +gDk +xKS +uYs +xXQ +gmD +ciT +ciT +mCa +vxS +rFg tPe tPe tPe tPe tPe -aSB -mLS -vFP -itm -itm -shi -mIg -vuV -uRp -uxI -jkz -spb +rFg +vxS +eKA +ciT +ciT +gmD +iUX +kDx +xsS +xsS +xsS +xsS sus sus sus @@ -194394,82 +200301,82 @@ sus gzm sus rcl -wKb -sZh -dlk -dlk -iYM -dlk -dlk -wKb -wYw -heC -hRj -hRj +ksJ +oBl +oyp +oyp +iNn +oyp +oyp +ksJ +lDH +jUW hRj hRj hRj hRj -uKP +cjh wwE -utG +csK cjh -utG +kLe kPd -uKP +cjh hRj hRj hRj hRj hRj -rKA -szn -nhY -iMf -rKL -rKL -rKL -rKL -rTa -rKA -kiA -rKA -rKA -gtd -fhA -gtd -gtd -gtd -wcV -rKL -rKL -gtd -gtd -gtd -fhA -pIV -pIV -pIV -pIV -pIV -pIV -pIV -lXC -lrT -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -gKk -xUW -oQk +hRj +hRj +wrT +jNg +raU +tDJ +lwA +lwA +lwA +lwA +edR +wrT +cZn +wrT +wrT +hXV +oIB +hXV +hXV +rYh +sfc +lwA +lwA +rYh +rYh +rYh +gpD +avI +avI +avI +avI +avI +avI +avI +dJp +fXr +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +pux +vSA +fsX hRj hRj hRj @@ -194590,9 +200497,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS mBr @@ -194608,68 +200515,70 @@ yhO hvS saS hvS -liY -pRW -ijs -pID -ijs -ijs -cpN -rqo -gjb -gjb -gjb -gjb -ngH -xoH -qcT -dOl -mLS -aSB +jLE +qWr +gfi +sru +iUz +gfi +cRZ +shQ +shQ +shQ +shQ +gmD +gmD +iKF +ciT +mCa +vxS +rFg tPe tPe tPe tPe tPe -aSB -mLS -vFP -itm -itm +rFg +vxS +eKA +ciT +ciT +gmD +xRp xsS -jYG xsS -tse -iXH -vfb -spb -sus +pji +dTQ +xsS +wNJ sus fmO fmO tdF tTg sus -sus -wKb -dlk -dlk -dlk -sZh -dlk -dlk -wKb -dxh -heC -hRj +tPY +ksJ +oyp +oyp +oyp +oBl +oyp +oyp +ksJ +mwK +jUW hRj hRj hRj hRj -hBz -hRj -hRj +uKP +hML +wap +lnv emj +lZV +uKP hRj hRj hRj @@ -194677,56 +200586,54 @@ hRj hRj hRj hRj -hRj -sWg -rKA -rJB -oOm -xEo -rKL -rKL -rKL -rKL -rTa -rKA -lgN -emS -rKA -lgN -rKA -gRT -gtd -iVp -rKL -rKL -wcV -gtd -gtd -vSU -rKA -pIV -rKL -rKL -rKL -rKL -rKL -pIV -rKA -lrT -rKA -wyF -ffI -tJt -ffI -tJt -ffI -tJt -ffI -wyF -rKA -pMH -hIn -oQk +wrT +qxL +oKe +efQ +lwA +lwA +lwA +lwA +edR +wrT +ggD +tbU +wrT +ggD +wrT +cOJ +gIR +mSe +lwA +lwA +sfc +rYh +rYh +hGh +wrT +avI +lwA +lwA +lwA +lwA +lwA +avI +blF +fXr +blF +cPB +rue +sAI +rue +sAI +rue +sAI +rue +cPB +blF +asV +eVY +fsX hRj hRj hRj @@ -194847,9 +200754,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm bxd mZK @@ -194859,131 +200766,131 @@ cMY ewI gct jSO -bNX +kVm hJS oSq vbf +pfQ vbf -ePX -eWq -nsx -ijs -ijs -fBh -fBh -ijs -kpc -mUS -jkI -kBG -ydi -vti -qcT -qcT -dOl -mLS -aSB -aSB -aSB -aSB -aSB -aSB -aSB -mLS -tDB -nog -wCn -xsS +mKQ +iro +iro +iro +qrq +qCr +ttk +shQ +cXk +nWu +bWe +gmD +kWs +ciT +ciT +mCa +vxS +rFg +rFg +rFg +rul +rFg +rFg +rFg +vxS +nev +hJp +tBE +gmD apX -eMo +lIP +bPO +bqU +rpz xsS -oqW -jkz -spb sus gzm sus fmO -cEn +fmO sus sus fsj -wKb -sZh -dlk -dlk -sZh -dlk -dlk -wKb -wYw -heC -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hRj +ksJ +oBl +oyp +oyp +oBl +oyp +oyp +ksJ +lDH +jUW hRj hRj hRj hRj +uKP +wwE +utG +cjh +utG +kPd +uKP +tIm hRj +wUk hRj +tIm hRj hRj -oQk -nBr -oOm -ddW -rKL -rKL -rKL -rKL -rTa -rKA -oSX -lgN -qHN -gtd -rKA -rKA -rKA -rKA -gtd -gtd -gtd -rKA -daz -rKA -rKA -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -tJt -lMU -lMU -lMU -lMU -lMU -lMU -lMU -tJt -rKA -gCv -tpA -oQk +mJP +rVo +oKe +ilO +lwA +lwA +lwA +lwA +edR +wrT +tio +ggD +oID +rYh +wrT +wrT +wrT +wrT +rYh +rYh +rYh +wrT +qyT +wrT +wrT +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +sAI +nUi +nUi +nUi +nUi +nUi +nUi +nUi +sAI +blF +pul +vSA +fsX hRj hRj hRj @@ -195104,12 +201011,12 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS -uhg +yhY bNX eIz tHd @@ -195120,43 +201027,43 @@ bNX fmV bra eOY -uZg -byA -gMP -eTt -gkP -ijs -oBM -oBM -alG -kpc -akK -onh -tCd -lan -htc -qcT -qcT -dOl -mLS -mLS -mLS -mLS -mLS -mLS -mLS -mLS -mLS -wre -xVF -mYh -xsS -qpD -nRS +nYA +eOY +wVP +hPR +sUY +peL +jkM +kHF +aJs +cQi +wgZ +lHz +hqj +iRW +tla +ciT +ciT +mCa +vxS +vxS +vxS +vxS +vxS +vxS +vxS +vxS +vxS +qdP +mKH +cWr +gmD +sKn +dKH +dKH +dKH +oYm xsS -shi -shi -shi sus sus sus @@ -195165,82 +201072,82 @@ sus rcl fmO xRg -wKb -sZh -dlk -dlk -sZh -dlk -dlk -wKb -wYw -wKb -hRj -hRj -hRj -hRj +ksJ +oBl +oyp +oyp +oBl +oyp +oyp +ksJ +lDH +ksJ hRj hRj hRj +hBz hRj hRj +cGp hRj +pKC hRj hRj hRj hRj hRj hRj +sWg hRj hRj -oQk -asA -oOm -ePM -rKL -rKL -rKL -rKL -rTa -rKA -bUp -rKA -rKA -rKA -rKA -rMj -dTi -rKA -xIJ -gtd -vet -rKA -rMj -rMj -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -tMj -lMU -rKL -rKL -rKL -rKL -rKL -lMU -tMj -rKA -rKA -pgu -rKA +mJP +mvd +oKe +nEn +lwA +lwA +lwA +lwA +edR +wrT +eyQ +wrT +wrT +wrT +wrT +bJo +djX +wrT +rpq +rYh +tKH +wrT +bJo +bJo +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +gIz +nUi +uMt +uMt +uMt +uMt +uMt +nUi +gIz +blF +blF +vRy +blF xwn hRj hRj @@ -195361,9 +201268,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS riV @@ -195376,64 +201283,65 @@ tVS bNX syi bxd -vGE +eTi bxd -vGE -rqo -nhU -cwo -jQQ -ijs -vbB -ddh -hYu -sMa -uOF -uuF -gjb -eSO -qcT -qcT -kSS -foZ -mLS -mLS -mLS -mLS -mLS -mLS -mLS -seW -jAd -qcT -qyu -twY -ulh -sNW -hnh -gwx -fbk -shi -sus +eTi +unl +fGn +suV +vEp +jkM +kRv +bFW +jVN +oyA +boY +jLD +gmD +tGP +ciT +ciT +wit +stC +vxS +vxS +vxS +vxS +vxS +vxS +vxS +jNG +ivP +ciT +ojV +mvU +ePz +tCl +hhG +xsS +leN +xsS sus +fmO lIA sus sus sus fmO bEp -wKb -sZh -dlk -dlk -sZh -dlk -dlk -wKb -wYw -wKb +ksJ +oBl +oyp +oyp +oBl +oyp +oyp +mDE +lDH +ksJ dyE hRj +tIm hRj hRj hRj @@ -195449,55 +201357,54 @@ hRj hRj hRj hRj -hRj -oQk -cAv -oOm -ePM -rKL -rKL -rKL -rKL -rTa -rKA -kkn -rKA -dTi -rMj -rMj -rMj -rMj -rKA -mMX -gtd -gtd -uKm -rMj -rMj -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -gtd -rKA -dNL -lMU -rKL -uhJ -rKL -rKL -rKL -lMU -tJt -rKA -rKA -fnp -rKA +mJP +ijv +oKe +nEn +lwA +lwA +lwA +lwA +edR +wrT +fef +wrT +djX +bJo +bJo +bJo +bJo +wrT +qNo +rYh +rYh +eIN +bJo +bJo +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +mOk +blF +btU +nUi +uMt +aJn +uMt +uMt +uMt +nUi +sAI +blF +blF +bLp +blF hRj hRj hRj @@ -195618,9 +201525,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS kWe @@ -195636,59 +201543,59 @@ bxd mDG mDG mDG -rqo -nmk -jbD -jbD -llg -nMV -aor -uTU -mVw -vIX -ggX -ydi -xAI -qcT -qcT -qcT -kSS -nUj -nUj -nUj -nUj -nUj -nUj -nUj -jAd -qcT -qcT -jfp -xsS -jRB -eUl -kyZ -xsS +kbu +gfi +gfi +gfi +klh +vcp +awR +cQi +iuQ +gnm +kAn +dwQ +eyC +ciT +ciT +ciT +wit +bEi +bEi +bEi +bEi +bEi +bEi +bEi +ivP +ciT +ciT +hPQ +gmD +pOP +uEU +cny +hSJ fbk -shi -sus +xsS sus sus sus +fmO gzm sus lIA -sus -wKb -sZh -sZh -sZh -sZh -sZh -sZh -ljW -dtP -ljW +nTg +ksJ +oBl +oBl +oBl +oBl +oBl +oBl +bci +lDH +bci eYm hRj hRj @@ -195707,55 +201614,55 @@ hRj hRj hRj hRj -rKA -asA -hMU -ePM -rKL -rKL -rKL -rKL -rTa -rKA -gtd -rKA -rMj -rMj -rMj -rMj -rMj -rKA -rKA -daz -rKA -rKA -rMj -rMj -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -gtd -rKA -tMj -lMU -rKL -rKL -rKL -rKL -rKL -lMU -tMj -rKA -rKA -tpA -rKA -rKA +wrT +mvd +doM +nEn +lwA +lwA +lwA +lwA +edR +wrT +rYh +wrT +bJo +bJo +bJo +bJo +bJo +wrT +wrT +qyT +wrT +wrT +bJo +bJo +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +mOk +blF +gIz +nUi +uMt +uMt +uMt +uMt +uMt +nUi +gIz +blF +blF +vSA +blF +blF hRj hRj hRj @@ -195875,16 +201782,16 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm bxd dzH bNX bNX bNX -wJU +lGE bNX lmH lmH @@ -195893,59 +201800,59 @@ bxd mDG mDG mDG -rqo -rqo -efZ -efZ -rqo -efZ -efZ -rqo -gjb -gjb -gjb -gjb -vBg -qcT -qcT -qcT -eGq -roB -qcT -qcT -qcT -qcT -qcT -qcT -eGq -oEN -boh -ngH -xsS +kbu +gfi +gfi +lrZ +iUz +ucy +hSg +shQ +aIY +tfo +iyS +gmD +aWU +ciT +ciT +ciT +vJf +lYY +ciT +ciT +ciT +ciT +ciT +ciT +vJf +tAv +pbe +gmD +gmD iLL cYB cYB +hSJ +knW xsS -gwx -shi gzm sus sus sus -shi -shi +jzz +jzz ekY jzz -wKb -sZh -dlk -dlk -dlk -dlk -dlk -wKb -kQD -wKb +ksJ +oBl +oyp +oyp +oyp +oyp +oyp +ksJ +cSs +ksJ wLU hRj hRj @@ -195964,55 +201871,55 @@ hRj hRj hRj hRj -rKA -pFb -qHN -ePM -rKL -rKL -rKL -rKL -rTa -uKm -lgN -rKA -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rKA -rWf -rKA -wcV -rKL -rKL -rKL -rKL -rKL -rKL -wcV -rKA -lUp -rKA -wyF -lMU -lMU -lMU -lMU -lMU -lMU -lMU -tJt -hPH -gtd -tpA -gtd -pey +wrT +dHD +oID +nEn +lwA +lwA +lwA +lwA +edR +eIN +ggD +wrT +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +wrT +cXf +wrT +sfc +lwA +lwA +lwA +lwA +lwA +lwA +sfc +blF +rUR +blF +cPB +nUi +nUi +nUi +nUi +nUi +nUi +nUi +sAI +usZ +mOk +vSA +mOk +lva hRj hRj hRj @@ -196132,10 +202039,10 @@ nlm nlm nlm nlm -dcE -slL -heR dDL +iWu +dDL +hMq bxd bxd ydS @@ -196147,62 +202054,62 @@ ydS ydS bxd bxd -rYB -rYB -rYB -mDG -mDG -mDG -mDG -mDG -mDG mDG +udN mDG -mDG -rYB -rYB -ngH -ngH -gBV -krk -ubv -ngH -ngH -gQW -hCg -hCg -hCg -pvQ -ngH -ngH -ngH -ngH -ngH -dDL +unl +sqy +gfi +gfi +iUz +ucy +xcZ +shQ +shQ +cQi +shQ +gmD +gmD +mXq +jPV +aDb +gmD +gmD +rmN +lVG +lVG +lVG +tJn +gmD +gmD +gmD +gmD +gmD +xrx lAS -dDL -dDL xrx xrx +xsS +leN +xsS shi +slo +slo shi -shi -shi -shi -shi +jzz iVc sus eqm -wKb -iYM -dlk -dlk -dlk -dlk -dlk -wKb -vmd -wKb +ksJ +iNn +oyp +oyp +oyp +oyp +oyp +ksJ +jug +ksJ hRj hRj hRj @@ -196221,55 +202128,55 @@ hRj hRj hRj hRj -oQk -cFc -oOm -oOm -rKL -rKL -rKL -rKL -uPy -rKA -qHN -rKA -wcV -wcV -rKL -rKL -rKL -rKL -rKL -rKL -rKL -wcV -pIV -rKA -wcV -wcV -rKL -rKL -rKL -rKL -wcV -wcV -rKA -mNj -rKA -wyF -jpj -tJt -jpj -tJt -jpj -tJt -jpj -lMU -rKA -pPG -vNM -rKA -rKA +mJP +nXR +oKe +oKe +lwA +lwA +lwA +lwA +hxM +wrT +oID +wrT +sfc +sfc +lwA +lwA +lwA +lwA +lwA +lwA +lwA +sfc +avI +wrT +sfc +sfc +lwA +lwA +lwA +lwA +sfc +sfc +blF +uPQ +blF +cPB +nOT +sAI +nOT +sAI +nOT +sAI +nOT +nUi +blF +isY +tEN +blF +blF hRj hRj hRj @@ -196389,13 +202296,8 @@ nlm nlm nlm nlm -dcE -slL -dcE -nlm -dDL -nlm nlm +slL nlm nlm dDL @@ -196406,66 +202308,71 @@ nlm dDL nlm nlm -slL -gaf -mDG +qms mDG +nKW mDG mDG mDG -mDG -mDG -xmq -nlm -nlm -qCR -hYV -aBv -nzG -kPL -ngH -ngH -ngH -jpw -jpw -jpw -ngH -ngH -heR -hRj -hRj -hRj -nlm +unl +lyO +jrY +jFr +jkM +dsZ +wXQ +kbu +pqc +gtC +gtC +gtC +dwQ +pNj +qcc +xsF +gmD +gmD +gmD +tHv +tHv +tHv +gmD +gmD +gtC +gtC +gtC +hwu +xrx lAS -nlm +xrx +xrx +xrx +xrx +xrx +dDL +dDL dDL -nlm -nlm -nlm -nlm -nlm -nlm dDL jzz jzz qXI jzz -wKb -wKb -heC -heC -heC -heC -wKb -wKb -wKb -wKb +ksJ +ksJ +jUW +jUW +jUW +jUW +ksJ +ksJ +ksJ +ksJ +hRj hRj hRj hRj hRj hRj -vot hRj hRj hRj @@ -196477,55 +202384,55 @@ hRj hRj hRj hRj -uHD -oQk -aXn -iMV -ePM -rKL -rKL -rKL -rKL -rKL -rKA -gtd -uKm -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -uYL -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -vAa -rKA +hRj +mJP +aNE +rxS +nEn +lwA +lwA +lwA +lwA +lwA +wrT +rYh +eIN +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +blF +tip +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +qCc +blF hRj hRj hRj @@ -196646,79 +202553,80 @@ nlm nlm nlm nlm -dcE -slL -dcE -nlm -dDL -nlm -nlm -dcE -dcE -heR -dcE -dcE -dcE -dcE -dDL -nlm -nlm -slL -hDS -rYB -rYB -rYB -rYB -rYB -rYB -rYB -ydy -nlm -nlm -qCR -hYV -aBv -nzG -qbZ -ngH -ngH -fhd -fhd -hCg -hCg -joI -ngH -heR -nlm -nlm nlm +slL nlm -lAS nlm dDL nlm nlm nlm nlm +dDL nlm nlm +qms +mDG +nKW +mDG +mDG +mDG +kbu +gfi +gfi +gfi +iUz +ucy +hSg +kbu +rqs +nlm +nlm +nlm +dwQ +khk +qcc +llO +gmD +gmD +ohd +ohd +bdq +rOy +jmK +gmD dDL -xrx -xrx -xrx -oOw nlm +dDL +nlm +nlm +lAS +nlm +nlm +dDL nlm nlm nlm nlm nlm +dDL +xrx +xrx +xrx +oOw +xrx +xrx +xrx +dDL +dDL +xrx oOw cTR hRj hRj hRj hRj +tIm hRj hRj hRj @@ -196733,32 +202641,31 @@ hRj hRj hRj hRj -xky -psi -oQk -iBj -oOm -tkz -rKL -rKL -rKL -rKL -rKL -rKA -lUp -rKA -pIV -rKL -rMj -wcV -wcV -rMj -rKL -wcV -rMj -rKL -wcV -rKA +hRj +mJP +saX +oKe +xXR +lwA +lwA +lwA +lwA +lwA +wrT +jPz +wrT +avI +lwA +bJo +sfc +sfc +bJo +lwA +sfc +bJo +lwA +sfc +wrT nlm dDL dDL @@ -196903,57 +202810,57 @@ nlm nlm nlm nlm -dcE -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +hMq +iWu slL slL -ngH -ngH -ngH -ngH -ngH -ngH -xoh -fhd -hCg -hCg -joI -ngH -heR -nlm +iWu +slL +slL +slL +slL +iWu +dDL +dDL +pGP +pGP +pGP +pGP +gjd +fPv +mnf +fHb +wIi +wkX +lWD +ucy +gji +unl +rqs +dDL +dDL +dDL +gmD +gmD +gmD +gmD +gmD +gmD +wkh +ohd +bdq +rOy +bMR +gmD +dDL nlm +dDL nlm nlm lAS nlm -dDL nlm +dDL nlm nlm nlm @@ -196964,7 +202871,7 @@ dDL xrx xrx xrx -nlm +dDL nlm nlm nlm @@ -196977,6 +202884,7 @@ hRj hRj hRj hRj +vot hRj hRj hRj @@ -196985,37 +202893,36 @@ hRj hRj hRj hRj -wUk hRj hRj hRj +hxW hRj hRj -tzv -rKA -hnU -bLG -qHN -rKL -rKL -rKL -rKL -rKL -rKA -mNj -rKA -vAl -wcV -rMj -wcV -rKL -rMj -rKL -wcV -dTi -wcV -wcV -rKA +wrT +gyr +oZK +oID +lwA +lwA +lwA +lwA +lwA +wrT +hUP +wrT +eHF +sfc +bJo +sfc +lwA +bJo +lwA +sfc +djX +sfc +sfc +wrT nlm nlm dDL @@ -197160,67 +203067,67 @@ nlm nlm nlm nlm -dcE -dcE -dcE -dcE -dcE -dcE -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm nlm +dDL nlm nlm +dDL nlm nlm nlm nlm +xIe nlm nlm +pGP +xst +iqF +lhP +swS +kbu +ugA +voO +gfi +gfi +klh +yfx +hSg +kbu +rqs nlm +dDL nlm -slL -slL -xIe +qfF +dDL nlm -dcE -heR -ngH -iQe -iQe -tWd -hCg -joI -ngH -heR nlm +dDL +gmD +kCa +cyO +aNI +rOy +fCx +gmD +dDL nlm +dDL nlm nlm lAS nlm -dDL nlm +dDL nlm nlm nlm nlm vof nlm -dDL +nlm nlm dDL -xrx +xIe dDL dDL dDL @@ -197240,39 +203147,39 @@ oCT sON sON sON -sON +tzv sON sON sON oCT sON sON -sON +tzv gSK -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -uYL -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +bfH +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT nlm nlm dDL @@ -197426,55 +203333,54 @@ nlm nlm nlm nlm +dDL nlm nlm +pGP +asM +tBB +kCh +mDG +kbu +mht +gfi +llG +xsK +lWD +gfi +kHD +kbu +rqs nlm +dDL nlm nlm +dDL nlm nlm +dDL +gmD +cyO +cyO +bdq +rOy +jmK +gmD +dDL nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -xIe -nlm -dcE -heR -ngH -iQe -iQe -hCg -hCg -joI -ngH -heR -nlm -nlm +dDL nlm nlm lAS nlm -dDL nlm +dDL nlm nlm nlm nlm nlm nlm -qCR nlm xIe xIe @@ -197514,6 +203420,7 @@ nlm nlm nlm nlm +nlm dDL dDL vwe @@ -197683,57 +203590,57 @@ nlm nlm nlm nlm +xIe nlm nlm +pGP +xst +liE +lhP +qSj +kbu +qHW +kbH +gfi +gfi +iUz +gfi +vPF +unl +rqs nlm +dDL nlm nlm +dDL nlm nlm +dDL +gmD +tUE +xVP +bdq +fGI +jbZ +gmD +dDL nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -xIe -nlm -dcE -heR -ngH -vwQ -hCg -ugo -qlx -gRx -ngH -heR -nlm -nlm +dDL nlm nlm lAS nlm -dDL nlm +dDL nlm nlm nlm nlm nlm nlm +dDL +dDL nlm -xIe -xIe nlm nlm nlm @@ -197874,57 +203781,35 @@ nlm nlm nlm nlm -"} -(189,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(189,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -197963,33 +203848,55 @@ nlm nlm nlm xIe +dDL +dDL +pGP +pGP +pGP +pGP +xKo +mnf +mnf +tbE +wIi +rcA +xGS +gfi +gfi +kbu +rqs nlm -dcE -heR -ngH -btb -pTS -uXR -geE -gRx -ngH -heR +dDL nlm nlm +dDL nlm nlm -lAS +dDL +gmD +lEm +cBv +aFn +ycy +jbZ +gmD +dDL nlm dDL nlm nlm +lAS +nlm +nlm +dDL nlm nlm nlm nlm nlm -qCR dDL +dDL +nlm nlm nlm nlm @@ -198197,55 +204104,55 @@ nlm nlm nlm nlm +dDL nlm nlm +msd +gtC +gtC +gtC +gtC +fHO +kbu +bYd +bYd +eaU +oTi +owk +owk +kbu +rqs nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -xIe -nlm -dcE -heR -ngH -ngH -ngH -ngH -ngH -ngH -ngH -heR +dDL +dDL +dDL +dDL +dDL +dDL +dDL +gmD +gmD +gmD +gmD +gmD +gmD +gmD dDL dDL eRz dDL -lAS dDL +lAS dDL dDL dDL -iWu nlm nlm nlm -qCR -qCR +nlm +dDL +dDL +nlm nlm nlm nlm @@ -198454,58 +204361,58 @@ nlm nlm nlm nlm +xIe nlm nlm nlm +dDL nlm +dDL nlm +msd +unl +kbu +kbu +unl +unl +kbu +kbu +unl +roM nlm +dDL nlm nlm +dDL nlm nlm +dDL +agX +dDL +dDL +dDL +dDL +dDL +agX +dDL nlm +eRz nlm nlm +lAS nlm nlm -nlm -nlm -nlm -nlm +dDL nlm nlm nlm xIe -nlm -dcE -heR -heR -heR -heR -heR -heR -heR -heR -heR -nlm -nlm -eRz -nlm -lAS -nlm dDL nlm nlm nlm nlm nlm -qCR -qCR -nlm -nlm -nlm -nlm nlm nlm nlm @@ -198710,30 +204617,30 @@ nlm nlm nlm nlm +hMq +iWu +xIe +xIe +xIe +xIe +dDL +ldr +lgA +dDL +agX +dDL +dDL +dDL +dDL +dDL +dDL +agX +dDL +dDL +dDL nlm nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -xIe +dDL nlm nlm dDL @@ -198746,18 +204653,18 @@ nlm nlm nlm nlm -nlm eRz nlm -lAS nlm -dDL +lAS nlm nlm +dDL nlm nlm xIe -dDL +xIe +nlm nlm nlm nlm @@ -198968,50 +204875,49 @@ nlm nlm nlm nlm +dDL nlm nlm nlm nlm nlm nlm +xIe nlm +dDL nlm nlm nlm -nlm -nlm -nlm -nlm +dDL nlm nlm nlm nlm vof -nlm -nlm -nlm xIe xIe xIe xIe xIe xIe +iWu xIe xIe -nlm -nlm -nlm -nlm -nlm -nlm +xIe +xIe +xIe +xIe +xIe +xIe +iWu dDL nlm -lAS -nlm -dDL nlm +lAS nlm nlm +dDL +iWu xIe xIe nlm @@ -199056,6 +204962,7 @@ nlm nlm nlm nlm +nlm coh dDL vwe @@ -199232,6 +205139,19 @@ nlm nlm nlm nlm +dDL +dDL +xIe +xIe +xIe +dDL +dDL +dDL +xIe +xIe +xIe +dDL +dDL nlm nlm nlm @@ -199247,19 +205167,6 @@ nlm nlm nlm nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -xIe -xIe -xIe -xIe -xIe -iWu dDL dDL dDL @@ -199267,9 +205174,9 @@ lAS dDL dDL dDL -iWu -xIe -xIe +nlm +nlm +nlm nlm nlm nlm @@ -199493,11 +205400,11 @@ nlm nlm nlm nlm +dDL nlm nlm nlm -nlm -nlm +dDL nlm nlm nlm @@ -199750,11 +205657,11 @@ nlm nlm nlm nlm -nlm -nlm -nlm -nlm -nlm +dDL +xIe +xIe +xIe +dDL nlm nlm nlm @@ -200290,9 +206197,9 @@ nlm nlm eRz dDL -dDL +upI tid -dDL +upI dDL eRz nlm diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index f164f22799d5..7faa02b18445 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -24,14 +24,14 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aaQ" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, /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) +/area/station/ai/satellite/exterior) "aaR" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/north, /obj/item/kirbyplants/random, @@ -63,14 +63,12 @@ /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) "aaY" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/effect/landmark/start/hangover, /obj/machinery/status_display/evac/directional/west, /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "abi" = ( @@ -106,7 +104,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aby" = ( /turf/open/floor/wood, /area/station/command/heads_quarters/captain) @@ -124,7 +122,7 @@ /area/station/medical/medbay) "abJ" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "abL" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -820,11 +818,9 @@ "akg" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/disposalpipe/trunk, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/command/heads_quarters/cmo) "ako" = ( @@ -849,10 +845,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/maintenance/department/eva/abandoned) -"akM" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/science/xenobiology) "akS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -880,7 +872,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "alG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -904,7 +896,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "alM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -1087,10 +1079,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/service/library/abandoned) -"anB" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) "anC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ @@ -1113,7 +1101,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "anF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1140,7 +1128,7 @@ /turf/open/floor/iron/dark, /area/station/engineering/gravity_generator) "anV" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -1165,10 +1153,8 @@ /turf/open/floor/iron/white, /area/station/medical/medbay) "anZ" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/lattice, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/space/basic, /area/space/nearstation) "aoc" = ( @@ -1179,7 +1165,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/disposalpipe/segment, @@ -1325,7 +1311,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "apV" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -1454,7 +1440,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "arc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1592,7 +1578,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "asc" = ( /obj/effect/landmark/start/hangover, /obj/structure/chair{ @@ -1648,11 +1634,9 @@ /area/station/medical/surgery/theatre) "asO" = ( /obj/machinery/porta_turret/ai, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "asS" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, @@ -1866,7 +1850,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/e_gun, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "auZ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -1910,7 +1894,7 @@ name = "Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/abandoned, @@ -2133,6 +2117,7 @@ dir = 8 }, /obj/machinery/light/directional/west, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron, /area/station/engineering/main) "azm" = ( @@ -2156,7 +2141,7 @@ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -2166,6 +2151,15 @@ dir = 9 }, /obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, /turf/open/floor/iron/white, /area/station/medical/medbay) "azy" = ( @@ -2214,7 +2208,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/meter/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aAj" = ( /turf/closed/wall, /area/station/science/breakroom) @@ -2328,7 +2322,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aBV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -2460,7 +2454,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aEz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2523,7 +2517,7 @@ /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) "aEV" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/spawner/random/structure/closet_private, /obj/item/clothing/suit/toggle/lawyer/black, /obj/item/clothing/under/rank/civilian/lawyer/black, @@ -2549,10 +2543,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"aFE" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/command/teleporter) "aGm" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line, @@ -2701,7 +2691,7 @@ /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aHv" = ( /obj/structure/rack, /obj/item/holosign_creator/robot_seat/restaurant{ @@ -2725,7 +2715,7 @@ "aHG" = ( /obj/structure/table, /obj/item/folder, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/item/stamp/denied{ pixel_x = 3; pixel_y = 3 @@ -2762,10 +2752,6 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/disposal/bin, -/obj/structure/sign/directions/arrival{ - dir = 1; - pixel_y = -22 - }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/primary/central/fore) @@ -3036,7 +3022,7 @@ /obj/item/flashlight/lamp, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aMc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -3188,7 +3174,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aNM" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -3214,7 +3200,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aNP" = ( /obj/structure/sign/warning/hot_temp/directional/west, /turf/open/floor/plating, @@ -3467,11 +3453,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/item/kirbyplants/random, /obj/machinery/light/directional/east, +/obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "aRr" = ( /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aRz" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -3531,7 +3518,7 @@ /obj/machinery/ore_silo, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aSt" = ( /obj/effect/turf_decal/siding/thinplating/dark, /obj/effect/turf_decal/trimline/dark_blue/filled/line, @@ -3551,12 +3538,10 @@ }, /obj/structure/cable, /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/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/command) "aSJ" = ( @@ -3591,7 +3576,8 @@ id = "Cell 3"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4300,12 +4286,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/science/research) -"bbP" = ( -/obj/structure/plaque/static_plaque/golden/commission/delta, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "bbQ" = ( /obj/machinery/vending/wardrobe/hydro_wardrobe, /obj/effect/turf_decal/bot, @@ -4733,7 +4713,7 @@ /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) +/area/station/ai/satellite/interior) "bhw" = ( /turf/closed/wall, /area/station/maintenance/department/medical/morgue) @@ -4849,7 +4829,7 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/stripes/line{ @@ -5090,7 +5070,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, /turf/open/floor/iron, /area/station/maintenance/department/eva/abandoned) @@ -5124,7 +5104,7 @@ /obj/machinery/status_display/ai/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bmq" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/tile/neutral/half/contrasted, @@ -5137,7 +5117,6 @@ /area/station/command/gateway) "bmw" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -5153,6 +5132,7 @@ /obj/machinery/door/airlock/medical{ name = "Paramedic Dispatch" }, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, /turf/open/floor/iron, /area/station/medical/paramedic) "bmC" = ( @@ -5356,7 +5336,7 @@ /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) +/area/station/ai/upload/chamber) "bpV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -5490,14 +5470,12 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos) "bsd" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/airalarm/directional/south, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/spawner/random/structure/closet_private, /obj/item/clothing/suit/jacket/letterman_nanotrasen, /obj/item/clothing/under/pants/track, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/wood, /area/station/commons/dorms) "bsj" = ( @@ -5604,7 +5582,7 @@ /area/station/service/chapel) "btH" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "btT" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -5790,7 +5768,7 @@ /obj/structure/cable, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bwr" = ( /obj/structure/table/wood, /obj/effect/spawner/random/bureaucracy/paper, @@ -6090,8 +6068,11 @@ pixel_y = 10 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bAM" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/rnd_all, @@ -6109,7 +6090,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bAO" = ( /obj/structure/chair/pew/right, /turf/open/floor/iron/chapel{ @@ -6169,10 +6150,6 @@ /area/station/maintenance/starboard/aft) "bBh" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, /obj/structure/disposalpipe/trunk{ dir = 1 }, @@ -6240,23 +6217,24 @@ /obj/item/bedsheet/medical{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 }, /obj/structure/cable, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/white, /area/station/medical/virology) "bBK" = ( -/obj/machinery/flasher/directional/south{ - id = "brigflashdoor"; - pixel_x = 26 +/obj/structure/sign/directions/dorms{ + dir = 4; + pixel_y = 8 }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/station/commons/vacant_room/commissary) "bCc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -6296,7 +6274,7 @@ "bCu" = ( /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bCC" = ( /obj/machinery/door/poddoor{ id = "justiceblast"; @@ -6442,14 +6420,14 @@ name = "Private Channel" }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bEl" = ( /obj/machinery/ai_slipper{ uses = 10 }, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bEm" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/radio/intercom/directional/north{ @@ -6469,7 +6447,7 @@ name = "Private Channel" }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bEH" = ( /obj/structure/rack, /obj/item/book/manual/wiki/engineering_guide, @@ -6531,7 +6509,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/large, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/paramedic) "bFe" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -6595,7 +6573,6 @@ /turf/open/floor/iron/white, /area/station/medical/treatment_center) "bFT" = ( -/obj/effect/landmark/start/ai, /obj/item/radio/intercom/directional/west{ freerange = 1; listening = 0; @@ -6626,8 +6603,9 @@ pixel_x = 24; req_access = list("ai_upload") }, +/obj/effect/landmark/start/ai, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bFV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6642,7 +6620,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bGa" = ( /obj/structure/table/wood/fancy, /obj/structure/sign/painting/large/library{ @@ -6753,7 +6731,7 @@ /area/station/engineering/atmos/project) "bGN" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/item/storage/wallet, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -6804,7 +6782,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, @@ -6829,7 +6807,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -6902,7 +6880,7 @@ dir = 1 }, /turf/open/floor/iron/large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bID" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -6941,7 +6919,6 @@ /area/station/maintenance/solars/port/aft) "bIW" = ( /obj/machinery/turretid{ - icon_state = "control_stun"; name = "AI Chamber turret control"; pixel_x = 3; pixel_y = -23 @@ -6954,7 +6931,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bJf" = ( /obj/structure/chair/sofa/bench/right{ dir = 8 @@ -7090,7 +7067,7 @@ /turf/open/floor/wood, /area/station/service/theater) "bKo" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/machinery/firealarm/directional/south, @@ -7167,7 +7144,7 @@ /area/station/medical/medbay/lobby) "bLs" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bLu" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/stripes/line{ @@ -7177,7 +7154,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bLx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -7316,7 +7293,7 @@ /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bMV" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -7408,10 +7385,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "bOF" = ( @@ -7452,7 +7429,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bOU" = ( /obj/effect/landmark/start/hangover, /obj/structure/chair/sofa/bench{ @@ -7485,10 +7462,10 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bPC" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bPD" = ( /obj/item/clothing/mask/gas, /obj/item/wrench, @@ -7517,7 +7494,7 @@ "bPH" = ( /obj/structure/sign/plaques/kiddie, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bPI" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine, @@ -7610,7 +7587,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bRz" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/structure/cable, @@ -7620,11 +7597,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRD" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bRE" = ( /obj/structure/cable, /obj/machinery/chem_master/condimaster{ @@ -7657,14 +7630,14 @@ }, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bRM" = ( /obj/machinery/computer/teleporter, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bRP" = ( /obj/structure/sign/warning/vacuum, /turf/closed/wall, @@ -7844,7 +7817,7 @@ "bTq" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bTs" = ( /obj/machinery/camera/directional/east{ c_tag = "AI Satellite - Maintenance"; @@ -7855,11 +7828,11 @@ /obj/effect/turf_decal/stripes/line, /obj/structure/cable/layer3, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bTu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bTy" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/vending/clothing, @@ -7868,7 +7841,8 @@ name = "curtain control"; pixel_x = -24; pixel_y = -8; - req_access = list("theatre") + req_access = list("theatre"); + dir = 8 }, /turf/open/floor/iron/dark, /area/station/service/theater) @@ -8060,10 +8034,6 @@ /obj/effect/mapping_helpers/requests_console/announcement, /obj/effect/mapping_helpers/requests_console/information, /obj/effect/mapping_helpers/requests_console/assistance, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -8202,22 +8172,24 @@ /turf/open/floor/iron, /area/station/medical/abandoned) "bYc" = ( -/obj/structure/filingcabinet/chestdrawer, /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/machinery/computer/crew{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/paramedic) "bYe" = ( /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bYf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bYh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8271,7 +8243,7 @@ /obj/item/gps, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bYK" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ dir = 5 @@ -8367,7 +8339,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cac" = ( /obj/machinery/recharge_station, /obj/machinery/status_display/evac/directional/south, @@ -8375,7 +8347,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cad" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = -3; @@ -8387,12 +8359,8 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cak" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = -26 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 }, @@ -8462,7 +8430,7 @@ /obj/effect/spawner/random/food_or_drink/donkpockets, /obj/effect/spawner/random/food_or_drink/condiment, /obj/effect/turf_decal/bot_white, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/maintenance/port) "cbh" = ( @@ -8519,7 +8487,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -8652,10 +8620,10 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cdt" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cdB" = ( /obj/structure/chair/sofa/bench/right{ dir = 1 @@ -8759,9 +8727,10 @@ /turf/closed/wall, /area/station/science/genetics) "ceV" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall, -/area/station/engineering/main) +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) "cfb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -8771,10 +8740,10 @@ /area/station/maintenance/department/science/xenobiology) "cfu" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cfx" = ( /obj/structure/cable, -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 4 }, /obj/effect/turf_decal/bot, @@ -8890,7 +8859,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: PRESSURIZED DOORS"; - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow/opposingcorners, @@ -8909,7 +8879,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "chn" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible, /obj/effect/decal/cleanable/dirt, @@ -8941,23 +8911,15 @@ /turf/open/floor/iron, /area/station/engineering/gravity_generator) "chF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/dorms{ - dir = 4; - pixel_x = 32; +/obj/structure/sign/directions/security{ pixel_y = 8 }, -/obj/structure/sign/directions/medical{ - pixel_x = 32 - }, -/obj/structure/sign/directions/evac{ - pixel_x = 32; +/obj/structure/sign/directions/dorms, +/obj/structure/sign/directions/vault{ pixel_y = -8 }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) +/turf/closed/wall, +/area/station/hallway/primary/central/fore) "chT" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line, @@ -8975,7 +8937,7 @@ /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) +/area/station/ai/satellite/exterior) "chY" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "engsm"; @@ -8996,10 +8958,8 @@ /turf/open/floor/iron, /area/station/engineering/atmos/hfr_room) "ciz" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "ciB" = ( @@ -9124,15 +9084,16 @@ /turf/open/floor/iron, /area/station/maintenance/port/fore) "ckd" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 8 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 6 }, +/obj/machinery/light/small/directional/south, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, /obj/effect/turf_decal/box/corners, /obj/effect/turf_decal/box/corners{ - dir = 8 + dir = 4 }, /turf/open/floor/iron/white, /area/station/medical/medbay) @@ -9319,7 +9280,7 @@ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ @@ -9835,7 +9796,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "crZ" = ( /obj/machinery/door/airlock/external{ name = "External Docking Port" @@ -9866,7 +9827,7 @@ "csk" = ( /obj/structure/cable, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "csw" = ( /turf/closed/wall, /area/station/service/hydroponics) @@ -9978,7 +9939,7 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ctU" = ( /obj/structure/chair/office{ dir = 1 @@ -10079,7 +10040,7 @@ dir = 8 }, /obj/machinery/light/small/directional/west, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "cvu" = ( /obj/structure/disposalpipe/segment, @@ -10129,6 +10090,19 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) +"cvX" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay Desk" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron, +/area/station/medical/paramedic) "cwe" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -10230,7 +10204,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cxp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/effect/decal/cleanable/dirt, @@ -10832,7 +10806,7 @@ /obj/machinery/holopad, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cEK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11102,7 +11076,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cHU" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -11162,7 +11136,7 @@ /turf/open/floor/iron, /area/station/engineering/hallway) "cIE" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -11189,7 +11163,7 @@ /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cJw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11249,7 +11223,7 @@ /obj/machinery/status_display/evac/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cKI" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/bot, @@ -11519,7 +11493,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/service/theater/abandoned) @@ -11551,7 +11525,7 @@ /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/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cOR" = ( /obj/effect/spawner/random/maintenance/two, /obj/structure/closet, @@ -11641,7 +11615,7 @@ /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cQj" = ( /obj/machinery/light/small/dim/directional/south, /turf/open/floor/plating, @@ -11678,7 +11652,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cQy" = ( /obj/machinery/camera/directional/south{ c_tag = "Bridge - Command Chair"; @@ -11758,7 +11732,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11787,6 +11761,17 @@ dir = 8 }, /obj/machinery/light/small/directional/south, +/obj/structure/table/glass, +/obj/item/emergency_bed, +/obj/item/emergency_bed{ + pixel_y = 3 + }, +/obj/item/emergency_bed{ + pixel_y = 3 + }, +/obj/item/wheelchair{ + pixel_y = 15 + }, /turf/open/floor/iron/white, /area/station/medical/paramedic) "cSi" = ( @@ -12053,7 +12038,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cVy" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -12727,7 +12712,7 @@ /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/turret_protected/ai) +/area/station/ai/satellite/chamber) "deY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12955,10 +12940,6 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"djf" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/project) "djn" = ( /obj/structure/table/wood, /obj/item/toy/talking/codex_gigas, @@ -13455,7 +13436,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dql" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -13706,6 +13687,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/port) "dsz" = ( @@ -14045,7 +14027,7 @@ /obj/machinery/door/window/right/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "dwv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -14119,7 +14101,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dwV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -14260,9 +14242,6 @@ /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) "dyi" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -14307,7 +14286,7 @@ name = "Maintenance Hatch" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/duct, @@ -14416,7 +14395,7 @@ "dBO" = ( /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dBR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14765,7 +14744,6 @@ /obj/machinery/status_display/ai/directional/south, /obj/machinery/camera/directional/south{ c_tag = "Service - Cafeteria Aft"; - dir = 5; name = "service camera" }, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -14776,7 +14754,7 @@ /obj/structure/closet, /obj/effect/spawner/random/entertainment/wallet_storage, /obj/effect/turf_decal/bot_white, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/maintenance/port) "dGS" = ( @@ -14893,7 +14871,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, @@ -15095,7 +15073,7 @@ /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_interior) +/area/station/ai/satellite/interior) "dKR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -15140,8 +15118,9 @@ /obj/machinery/porta_turret/ai, /obj/machinery/status_display/ai/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dLu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/delivery, @@ -15219,7 +15198,6 @@ "dMh" = ( /obj/machinery/camera/directional/south{ c_tag = "Atmospherics - Project Room Fore"; - dir = 5; name = "atmospherics camera" }, /obj/machinery/status_display/evac/directional/south, @@ -15272,6 +15250,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, +/obj/structure/sign/warning/vacuum/external/directional/east, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) "dMM" = ( @@ -15362,7 +15341,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dNm" = ( /obj/item/radio/intercom/directional/north, /obj/structure/disposalpipe/segment{ @@ -15396,7 +15375,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/science/research) "dNr" = ( @@ -15441,7 +15420,7 @@ /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) +/area/station/ai/satellite/exterior) "dNU" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 4 @@ -15463,7 +15442,7 @@ /area/station/cargo/storage) "dNX" = ( /obj/structure/closet/boxinggloves, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -15509,7 +15488,7 @@ /obj/effect/turf_decal/bot, /obj/structure/mirror/directional/north, /obj/machinery/light/small/directional/north, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/medical/cryo) @@ -15675,7 +15654,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dQN" = ( /obj/structure/table/wood, /obj/effect/spawner/random/food_or_drink/donkpockets, @@ -15860,9 +15839,7 @@ /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) "dTS" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/space/basic, /area/space/nearstation) "dUb" = ( @@ -15906,7 +15883,7 @@ /turf/open/floor/iron/white, /area/station/medical/medbay) "dUH" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/spawner/random/clothing/wardrobe_closet_colored, /obj/structure/sign/poster/random/directional/north, /turf/open/floor/iron/dark, @@ -16000,7 +15977,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "dWd" = ( /obj/structure/cable, @@ -16100,8 +16077,9 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/department/crew_quarters/bar) "dXr" = ( @@ -16112,10 +16090,6 @@ /turf/open/floor/iron, /area/station/maintenance/port) "dXw" = ( -/obj/structure/sign/painting/large/library_private{ - dir = 1; - pixel_x = -29 - }, /obj/structure/destructible/cult/item_dispenser/archives/library, /obj/item/book/codex_gigas, /turf/open/floor/iron/dark, @@ -16229,7 +16203,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dYQ" = ( /obj/structure/table, /obj/machinery/computer/records/medical/laptop{ @@ -16307,7 +16281,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron, @@ -16328,7 +16302,7 @@ dir = 9 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eae" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -16336,14 +16310,14 @@ /obj/item/pen, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eaA" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/transit_tube/curved, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eaC" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" @@ -16352,7 +16326,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -16461,7 +16435,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -16702,6 +16676,24 @@ "efg" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/button/door{ + id = "brigprison"; + name = "Prison Lockdown"; + req_access = list("brig"); + pixel_y = 9 + }, +/obj/machinery/button/door{ + id = "brigfront"; + name = "Brig Access Control"; + req_access = list("security"); + pixel_x = 7 + }, +/obj/machinery/button/door{ + id = "brigwindows"; + name = "Cell Window Control"; + req_access = list("security"); + pixel_x = -7 + }, /turf/open/floor/iron, /area/station/security/warden) "efh" = ( @@ -17035,7 +17027,7 @@ /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/spawner/random/maintenance, /turf/open/floor/iron, /area/station/cargo/warehouse) @@ -17124,6 +17116,7 @@ /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "emB" = ( @@ -17166,8 +17159,11 @@ pixel_y = 10 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "enw" = ( /obj/item/storage/toolbox/electrical, /obj/effect/decal/cleanable/dirt, @@ -17459,7 +17455,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -17622,7 +17618,7 @@ }, /obj/machinery/light/directional/east, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "esQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18162,7 +18158,7 @@ /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) +/area/station/ai/satellite/exterior) "eAi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -18237,7 +18233,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/dim/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eBb" = ( /obj/structure/filingcabinet/security, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ @@ -18354,7 +18350,7 @@ /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "eCn" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -18838,9 +18834,6 @@ /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{ @@ -19066,6 +19059,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/security/checkpoint/escape) "eKV" = ( @@ -19085,7 +19079,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/camera/directional/south{ c_tag = "Library - Aft Starboard"; - dir = 5; name = "library camera" }, /turf/open/floor/iron/grimy, @@ -19108,7 +19101,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eLY" = ( /obj/machinery/door/window/right/directional/west{ name = "Bar Delivery"; @@ -19271,14 +19264,15 @@ /area/station/hallway/primary/central/fore) "eNP" = ( /obj/structure/sign/painting/library{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /turf/open/floor/wood/large, /area/station/service/library/lounge) "eOb" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eOe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19422,7 +19416,7 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/maintenance/department/science) "ePK" = ( @@ -19467,7 +19461,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eQd" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8; @@ -19491,7 +19485,7 @@ /area/station/security/checkpoint/customs/aft) "eQr" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eQs" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -19557,7 +19551,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eQK" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 @@ -19802,16 +19796,12 @@ /turf/open/floor/carpet, /area/station/command/bridge) "eUq" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/ai_slipper{ uses = 10 }, -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eUu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20394,25 +20384,16 @@ /turf/open/floor/iron, /area/station/service/kitchen/abandoned) "fcP" = ( -/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/decal/cleanable/dirt, -/obj/structure/sign/directions/lavaland{ - dir = 1; - pixel_x = 1; - pixel_y = 38 - }, /obj/structure/sign/directions/arrival{ - dir = 8; - pixel_x = 1; - pixel_y = 28 + dir = 1; + pixel_y = -4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/sign/directions/lavaland{ + dir = 4; + pixel_y = 10 }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) +/turf/closed/wall, +/area/station/service/janitor) "fcR" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -20428,7 +20409,7 @@ /turf/open/floor/iron, /area/station/engineering/atmos/project) "fdn" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/crate, /obj/effect/turf_decal/bot, /obj/item/airlock_painter/decal, @@ -20546,7 +20527,8 @@ name = "curtain control"; pixel_x = 24; pixel_y = -8; - req_access = list("theatre") + req_access = list("theatre"); + dir = 4 }, /obj/machinery/light/small/directional/east, /turf/open/floor/wood, @@ -21018,7 +21000,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fkS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21073,10 +21055,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, /area/station/maintenance/department/crew_quarters/bar) "flB" = ( @@ -21199,7 +21181,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fmB" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, @@ -21240,7 +21222,7 @@ "fmO" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) @@ -21283,7 +21265,7 @@ /obj/machinery/door/window/left/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fnx" = ( /obj/effect/landmark/secequipment, /obj/effect/turf_decal/bot, @@ -21349,7 +21331,7 @@ /area/station/security/holding_cell) "fot" = ( /turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "foI" = ( /obj/docking_port/stationary{ dwidth = 2; @@ -21716,10 +21698,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "ftw" = ( @@ -21745,9 +21727,6 @@ /turf/open/floor/iron, /area/station/maintenance/department/crew_quarters/bar) "ftG" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/structure/table, /obj/machinery/cell_charger, /obj/item/gps, @@ -21755,6 +21734,7 @@ dir = 4 }, /obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/white, /area/station/science/lobby) "ftO" = ( @@ -21776,11 +21756,6 @@ }, /obj/machinery/status_display/evac/directional/south, /obj/effect/turf_decal/bot, -/obj/structure/sign/directions/arrival{ - dir = 1; - pixel_x = 32; - pixel_y = -4 - }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -21872,7 +21847,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -21888,7 +21863,7 @@ "fvZ" = ( /obj/structure/sign/warning/no_smoking, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fwa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21979,7 +21954,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fxc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -22076,7 +22051,7 @@ /turf/open/floor/iron/white/smooth_large, /area/station/medical/virology) "fyt" = ( -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/aft) "fyv" = ( @@ -22127,12 +22102,10 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "fyU" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "fza" = ( @@ -22280,7 +22253,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "fAE" = ( /obj/effect/turf_decal/siding/green{ dir = 1 @@ -22412,6 +22385,7 @@ /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "fCd" = ( @@ -22423,7 +22397,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fCf" = ( /obj/machinery/door/poddoor/preopen{ id = "atmoslock"; @@ -22536,7 +22510,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fDS" = ( /obj/machinery/shieldgen, /obj/effect/turf_decal/bot, @@ -22697,7 +22671,6 @@ "fFp" = ( /obj/machinery/camera/directional/east{ c_tag = "Departures Lounge - Fore Starboard"; - dir = 6; name = "departures camera" }, /obj/effect/turf_decal/tile/neutral, @@ -23077,7 +23050,7 @@ /obj/item/ai_module/supplied/freeform, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fKP" = ( /obj/effect/turf_decal/trimline/white/warning, /obj/effect/mapping_helpers/burnt_floor, @@ -23212,7 +23185,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fMo" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -23624,7 +23597,7 @@ /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/aisat/exterior) +/area/station/ai/satellite/exterior) "fRb" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -23661,7 +23634,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fRK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -23840,7 +23813,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -24073,7 +24046,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, @@ -24124,7 +24097,8 @@ id = "Cell 1"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -24153,7 +24127,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fXQ" = ( /obj/effect/spawner/random/structure/tank_holder, /obj/effect/turf_decal/trimline/green/filled/corner{ @@ -24347,7 +24321,7 @@ /turf/open/floor/wood/large, /area/station/service/library/lounge) "fZV" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -24532,7 +24506,6 @@ /obj/item/radio/intercom/directional/north, /obj/machinery/camera/directional/east{ c_tag = "Service - Hydroponics Front Fore"; - dir = 6; name = "service camera" }, /obj/effect/turf_decal/tile/green/opposingcorners, @@ -24551,7 +24524,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/light/cold/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gcu" = ( /obj/machinery/door/poddoor/preopen{ id = "transitlock"; @@ -24595,7 +24568,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gcP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24774,7 +24747,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -24864,10 +24837,8 @@ /area/station/security/checkpoint/arrivals) "gfp" = ( /obj/structure/table/wood, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/wood, /area/station/commons/dorms) "gfq" = ( @@ -24952,7 +24923,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ggs" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -25133,7 +25104,8 @@ id = "Cell 4"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25191,7 +25163,7 @@ /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) +/area/station/ai/upload/chamber) "gjB" = ( /obj/structure/cable, /obj/structure/closet/emcloset, @@ -25208,7 +25180,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "gjI" = ( /obj/structure/window/reinforced/spawner/directional/west, @@ -25403,7 +25375,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25576,7 +25548,7 @@ /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) +/area/station/ai/satellite/exterior) "gnW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/start/hangover, @@ -25620,7 +25592,8 @@ /area/station/command/bridge) "goj" = ( /obj/structure/sign/painting/library{ - pixel_y = 33 + pixel_y = 33; + dir = 1 }, /turf/open/floor/carpet/green, /area/station/commons/dorms) @@ -25806,10 +25779,10 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/commons/vacant_room/office) "gqF" = ( @@ -25888,6 +25861,7 @@ /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/engineering/main) "grm" = ( @@ -26113,10 +26087,10 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "gtJ" = ( @@ -26155,7 +26129,6 @@ /obj/machinery/light/small/directional/north, /obj/machinery/camera/directional/north{ c_tag = "Service - Janitorial Closet"; - dir = 9; name = "service camera" }, /mob/living/basic/lizard/eats_the_roaches, @@ -26259,7 +26232,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -26398,7 +26371,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -26427,7 +26401,7 @@ req_access = list("command") }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "gwx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -26688,7 +26662,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "gAu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -27072,9 +27046,12 @@ /turf/closed/wall, /area/station/service/library/lounge) "gDW" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) "gDY" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -27194,7 +27171,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gFM" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -27267,7 +27244,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gHh" = ( /obj/effect/turf_decal/bot, /obj/machinery/camera/directional/east{ @@ -27844,10 +27821,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, /area/station/maintenance/fore) "gPh" = ( @@ -27858,7 +27835,7 @@ /obj/effect/spawner/random/contraband/armory, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gPj" = ( /obj/machinery/hydroponics/soil, /obj/effect/decal/cleanable/dirt, @@ -28179,12 +28156,14 @@ "gSB" = ( /obj/structure/cable, /obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_y = 36; pixel_x = -8; - pixel_y = 36 + dir = 1 }, /obj/machinery/button/door/incinerator_vent_atmos_aux{ pixel_x = -8; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/directional/south, @@ -28518,9 +28497,11 @@ /area/station/hallway/secondary/exit) "gXm" = ( /obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, +/obj/structure/fireaxecabinet/jawsofrecovery/directional/south{ + pixel_y = -26 + }, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "gXn" = ( /obj/structure/table, @@ -28586,7 +28567,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -28623,7 +28604,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gYz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28855,7 +28836,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hct" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, @@ -29118,7 +29099,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hfB" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/delivery, @@ -29218,7 +29199,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hgX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29454,7 +29435,7 @@ "hkC" = ( /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hkG" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -29627,7 +29608,7 @@ "hmU" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hmY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump/on{ @@ -29666,9 +29647,6 @@ /area/station/hallway/secondary/command) "hnx" = ( /obj/structure/table, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/computer/records/security/laptop{ dir = 8; pixel_y = 6 @@ -29737,7 +29715,7 @@ req_access = list("medical"); specialfunctions = 4 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/medical/cryo) @@ -29889,6 +29867,10 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = 6 + }, /turf/open/floor/iron/dark, /area/station/engineering/transit_tube) "hrs" = ( @@ -30077,10 +30059,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "htQ" = ( @@ -30177,7 +30159,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hvf" = ( /obj/machinery/duct, /obj/effect/turf_decal/trimline/blue/filled/warning{ @@ -30213,7 +30195,7 @@ /turf/open/floor/iron, /area/station/maintenance/fore) "hvq" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -30224,12 +30206,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/large, /area/station/science/auxlab/firing_range) "hvv" = ( @@ -30264,7 +30244,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hwe" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/yellow{ @@ -30319,8 +30299,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -30530,7 +30509,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hzK" = ( /obj/machinery/computer/holodeck{ dir = 4 @@ -30949,7 +30928,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hGG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/green/filled/line, @@ -31074,6 +31053,7 @@ "hIh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, /obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "hIs" = ( @@ -31565,7 +31545,7 @@ dir = 1 }, /turf/open/floor/iron/large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hPh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -31588,7 +31568,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hPu" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -31739,7 +31719,7 @@ /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) +/area/station/ai/satellite/exterior) "hRs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate_loot, @@ -31763,7 +31743,7 @@ dir = 8 }, /obj/machinery/airalarm/directional/east, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/dark_blue/fourcorners, /turf/open/floor/iron, /area/station/commons/dorms/laundry) @@ -31923,7 +31903,7 @@ }, /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hTv" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -32040,7 +32020,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hVx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -32060,7 +32040,7 @@ /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) +/area/station/ai/satellite/exterior) "hVE" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32232,7 +32212,7 @@ /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hYa" = ( /obj/structure/chair/office, /obj/machinery/newscaster/directional/north, @@ -32461,7 +32441,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/spawner/random/armory/bulletproof_helmet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iaY" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 4 @@ -32618,7 +32598,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "icD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32755,9 +32735,6 @@ /turf/open/floor/plating, /area/station/maintenance/department/electrical) "idD" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -32767,6 +32744,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "idF" = ( @@ -33028,7 +33006,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -33259,7 +33237,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ikV" = ( /obj/effect/turf_decal/siding/yellow{ dir = 1 @@ -33534,7 +33512,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "inR" = ( /obj/machinery/door/airlock/research{ name = "Research and Development Lab" @@ -33629,7 +33607,7 @@ /turf/open/floor/iron, /area/station/security/prison/garden) "ipr" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 8 }, /obj/machinery/camera/directional/east{ @@ -34081,7 +34059,7 @@ req_access = list("captain") }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iuI" = ( /obj/item/book/manual/hydroponics_pod_people, /obj/item/paper/guides/jobs/hydroponics, @@ -34166,7 +34144,7 @@ id = "paramed_dispatch"; name = "Privacy Shutters"; pixel_x = 6; - req_access = list("medical") + req_access = list("paramedic") }, /obj/machinery/light_switch/directional/north{ pixel_x = -8 @@ -34175,7 +34153,9 @@ dir = 4 }, /obj/machinery/light/small/directional/north, -/turf/open/floor/iron/white, +/obj/item/toy/figure/paramedic, +/obj/item/surgicaldrill, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "ivz" = ( /obj/structure/window/reinforced/spawner/directional/south, @@ -34237,7 +34217,7 @@ pixel_y = -32 }, /obj/effect/spawner/random/structure/closet_private, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/item/clothing/suit/toggle/lawyer, /obj/item/clothing/under/rank/civilian/lawyer/beige, /obj/item/clothing/under/rank/civilian/lawyer/beige/skirt, @@ -34279,7 +34259,7 @@ /obj/structure/cable/multilayer/connected, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ixG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35047,7 +35027,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iGL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35174,7 +35154,7 @@ /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) +/area/station/ai/satellite/exterior) "iIn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -35438,6 +35418,7 @@ dir = 4; pixel_y = 8 }, +/obj/structure/sign/directions/medical, /turf/closed/wall, /area/station/security/courtroom) "iLD" = ( @@ -35494,12 +35475,10 @@ /area/station/science/ordnance/burnchamber) "iMO" = ( /obj/structure/closet/secure_closet/personal, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/item/storage/wallet, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/commons/locker) "iMS" = ( @@ -35526,7 +35505,7 @@ /turf/open/floor/iron, /area/station/service/kitchen/abandoned) "iNg" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, @@ -35724,7 +35703,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "iQf" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -35795,7 +35774,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iRk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/generic_maintenance_landmark, @@ -36229,14 +36208,19 @@ /turf/open/floor/grass, /area/station/hallway/secondary/exit/departure_lounge) "iWH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/medical{ - pixel_x = 32 +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 8 }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) +/obj/structure/sign/directions/vault{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -8 + }, +/turf/closed/wall, +/area/station/security/courtroom) "iWR" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -36374,7 +36358,7 @@ /obj/machinery/nuclearbomb/selfdestruct, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iYq" = ( /obj/machinery/computer/prisoner/management{ dir = 4 @@ -36406,10 +36390,8 @@ "iYJ" = ( /obj/structure/table/wood, /obj/item/camera, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/item/hand_labeler, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/wood, /area/station/commons/vacant_room/office) "iZc" = ( @@ -36455,6 +36437,7 @@ pixel_y = 8; req_access = list("atmospherics") }, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/engineering/lobby) "iZG" = ( @@ -36536,7 +36519,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jaz" = ( /obj/effect/spawner/random/structure/steam_vent, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -36550,6 +36533,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating, /area/station/maintenance/port) "jaV" = ( @@ -36944,13 +36928,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/command/bridge) -"jeI" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) "jeM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -37006,7 +36983,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jfn" = ( /obj/machinery/vending/wardrobe/bar_wardrobe, /obj/structure/sign/poster/random/directional/east, @@ -37050,11 +37027,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"jfL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) "jfP" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37238,7 +37210,6 @@ /area/station/security/lockers) "jhs" = ( /obj/structure/cable, -/obj/effect/landmark/start/paramedic, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, @@ -37727,7 +37698,7 @@ /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jnG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37799,19 +37770,14 @@ /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "jom" = ( -/obj/structure/sign/directions/evac{ - pixel_x = -32; - pixel_y = -8 - }, /obj/structure/sign/directions/science{ - dir = 8; - pixel_x = -32 + dir = 8 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/sign/directions/evac{ + pixel_y = -8 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) +/turf/closed/wall/r_wall, +/area/station/command/gateway) "jop" = ( /obj/structure/falsewall, /turf/open/floor/iron/dark, @@ -37988,7 +37954,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, @@ -38102,6 +38068,7 @@ name = "Head of Security's Fax Machine" }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) "jsL" = ( @@ -38193,18 +38160,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"jtz" = ( -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay) +/area/station/ai/satellite/exterior) "jtB" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -38233,7 +38189,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: BLAST DOORS"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -38738,7 +38695,7 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "jAY" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 4 }, /obj/effect/turf_decal/bot/left, @@ -38824,7 +38781,8 @@ name = "Flash Control"; pixel_x = 26; pixel_y = 7; - req_access = list("security") + req_access = list("security"); + dir = 4 }, /obj/machinery/button/door/directional/east{ id = "brigfront"; @@ -39203,13 +39161,11 @@ dir = 4 }, /obj/item/bedsheet/medical, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 5 }, /obj/structure/cable, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/white, /area/station/medical/virology) "jFP" = ( @@ -39358,7 +39314,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -39632,6 +39588,7 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, /area/station/security/evidence) "jLo" = ( @@ -39780,7 +39737,6 @@ /obj/item/radio/intercom/directional/east, /obj/machinery/camera/directional/east{ c_tag = "Departures Lounge - Aft Starboard"; - dir = 6; name = "departures camera" }, /obj/effect/turf_decal/tile/neutral{ @@ -39858,7 +39814,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jOr" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 @@ -39903,7 +39859,7 @@ /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) +/area/station/ai/satellite/exterior) "jPd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39920,7 +39876,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jPf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -40441,11 +40397,13 @@ }, /obj/structure/sign/picture_frame/showroom/three{ pixel_x = -20; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/sign/picture_frame/showroom/four{ pixel_x = 2; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/large, /area/station/command/corporate_showroom) @@ -40639,7 +40597,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jYs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -40676,7 +40634,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jYM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40706,7 +40664,7 @@ /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jZf" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -40747,18 +40705,6 @@ /turf/open/floor/iron, /area/station/commons/vacant_room) "jZs" = ( -/obj/structure/sign/directions/science{ - pixel_x = -32 - }, -/obj/structure/sign/directions/medical{ - pixel_x = -32; - pixel_y = -8 - }, -/obj/structure/sign/directions/upload{ - dir = 8; - pixel_x = -32; - pixel_y = 8 - }, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, @@ -40830,7 +40776,7 @@ /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kax" = ( /obj/structure/chair/office/light{ dir = 4 @@ -40849,11 +40795,9 @@ /area/station/service/abandoned_gambling_den) "kaG" = ( /obj/structure/closet/secure_closet/personal, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/commons/locker) "kaL" = ( @@ -40924,15 +40868,13 @@ /area/station/service/hydroponics) "kbg" = ( /obj/machinery/pdapainter/research, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/bot_red, /obj/effect/turf_decal/tile/purple{ dir = 8 }, /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/command/heads_quarters/rd) "kbn" = ( @@ -40995,9 +40937,7 @@ }, /obj/effect/spawner/random/structure/crate, /obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/maintenance/department/engine/atmos) "kca" = ( @@ -41143,13 +41083,14 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kdX" = ( /obj/machinery/piratepad/civilian, /obj/effect/turf_decal/trimline/yellow, /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/cargo/lobby) "kdY" = ( @@ -41200,7 +41141,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "keE" = ( /obj/structure/table/reinforced, /obj/item/plant_analyzer, @@ -41210,18 +41151,9 @@ /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) "keH" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 8 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, /turf/open/floor/iron/white, /area/station/medical/medbay) "keO" = ( @@ -41386,7 +41318,7 @@ /obj/effect/turf_decal/siding/dark_blue{ dir = 8 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/dark_blue/fourcorners, /obj/machinery/light/cold/directional/east, /turf/open/floor/iron, @@ -41713,7 +41645,7 @@ /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) +/area/station/ai/upload/chamber) "kke" = ( /turf/open/floor/plating, /area/station/cargo/drone_bay) @@ -41727,7 +41659,7 @@ "kkh" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kkm" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -41853,7 +41785,7 @@ }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -41931,7 +41863,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "knd" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 @@ -42086,7 +42018,7 @@ /obj/item/wrench, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kpn" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -42177,11 +42109,9 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) "kqQ" = ( @@ -42250,7 +42180,7 @@ /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/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ksd" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/decal/cleanable/dirt, @@ -42367,7 +42297,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kun" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -42456,7 +42386,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kvq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -42544,7 +42474,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/science/research) "kvK" = ( @@ -42676,7 +42606,7 @@ /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kxA" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/tile/purple{ @@ -42756,7 +42686,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kzm" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 4; @@ -43082,6 +43012,9 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/scanner_gate/preset_guns, +/obj/machinery/flasher/directional/south{ + id = "brigflashdoor" + }, /turf/open/floor/iron/dark, /area/station/security/brig) "kEw" = ( @@ -43103,7 +43036,7 @@ dir = 6 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kEJ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -43244,7 +43177,7 @@ /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "kGK" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -43520,22 +43453,18 @@ /area/station/medical/storage) "kKz" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; pixel_y = -32 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kKW" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/department/electrical) "kKY" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -43585,27 +43514,19 @@ /turf/open/floor/iron/white, /area/station/medical/virology) "kLz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 8 }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/sign/directions/vault{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/science{ +/obj/structure/sign/directions/engineering{ dir = 8; - pixel_x = -32 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_x = -32; - pixel_y = 8 + pixel_y = -8 }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/turf/closed/wall, +/area/station/commons/storage/primary) "kLA" = ( /obj/structure/chair{ dir = 4 @@ -43879,7 +43800,7 @@ /obj/machinery/door/window/left/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kPc" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 9 @@ -44069,7 +43990,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -44196,10 +44117,6 @@ }, /turf/open/floor/iron/grimy, /area/station/command/heads_quarters/hos) -"kTV" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) "kUn" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/brown{ @@ -44223,6 +44140,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/hallway) "kUC" = ( @@ -44453,7 +44371,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kXH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44465,16 +44383,16 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "kXJ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kXO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -44505,17 +44423,15 @@ /turf/open/space/basic, /area/space/nearstation) "kYb" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /obj/machinery/camera/directional/west{ c_tag = "Departures Hallway - Access"; name = "hallway camera" }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) "kYn" = ( @@ -44686,10 +44602,8 @@ /turf/open/floor/plating, /area/station/science/research/abandoned) "laJ" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/station/security/courtroom) "laK" = ( @@ -44922,7 +44836,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ldn" = ( /obj/effect/landmark/start/hangover, /obj/effect/decal/cleanable/dirt, @@ -44971,7 +44885,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "len" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -45017,13 +44931,11 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "lfs" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "lfz" = ( @@ -45096,7 +45008,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lgG" = ( /obj/machinery/modular_computer/preset/engineering, /obj/structure/cable, @@ -45214,7 +45126,7 @@ /area/station/maintenance/port) "lhY" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lhZ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45642,7 +45554,7 @@ }, /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lmm" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, @@ -45717,7 +45629,7 @@ }, /obj/machinery/light/directional/south, /obj/effect/turf_decal/bot, -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /turf/open/floor/iron/dark/textured_large, @@ -45757,6 +45669,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/command/heads_quarters/captain/private) "lnp" = ( @@ -45884,8 +45797,7 @@ /turf/open/floor/iron/white, /area/station/medical/chemistry) "lpy" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -45895,6 +45807,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "lpz" = ( @@ -45946,6 +45859,7 @@ /obj/structure/table/reinforced, /obj/machinery/light_switch/directional/east, /obj/effect/spawner/random/engineering/toolbox, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/eva/abandoned) "lqa" = ( @@ -46123,7 +46037,7 @@ /area/station/hallway/secondary/entry) "lte" = ( /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -46156,8 +46070,8 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "ltt" = ( @@ -46229,13 +46143,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron, /area/station/medical/cryo) "ltV" = ( @@ -46252,7 +46166,7 @@ dir = 4 }, /obj/effect/spawner/random/structure/barricade, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -46568,15 +46482,12 @@ /obj/machinery/flasher{ id = "justiceflash"; pixel_x = 26; - req_access = list("security") + req_access = list("security"); + dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/flasher/directional/east{ - id = "justiceflash"; - req_access = list("security") - }, /obj/effect/turf_decal/tile/red{ dir = 4 }, @@ -46589,7 +46500,7 @@ /obj/machinery/newscaster/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lyh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -46748,6 +46659,17 @@ /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/button/door/directional/east{ + pixel_y = -4; + id = "paramed_dispatch_desk"; + name = "Desk Shutter Control" + }, +/obj/machinery/button/door/directional/east{ + pixel_y = 6; + name = "Medbay Doors Control"; + id = "MedbayFoyer" + }, /turf/open/floor/iron/white, /area/station/medical/paramedic) "lAs" = ( @@ -46781,7 +46703,6 @@ "lAV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, -/obj/effect/landmark/start/paramedic, /turf/open/floor/iron, /area/station/medical/cryo) "lAW" = ( @@ -46891,9 +46812,14 @@ /turf/open/floor/iron, /area/station/medical/virology) "lBR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) "lBV" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/decal/cleanable/dirt, @@ -46948,7 +46874,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -47034,10 +46960,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/library/printer) -"lDV" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/engineering/main) "lDY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47055,10 +46977,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) "lEe" = ( @@ -47336,7 +47258,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lGW" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47352,7 +47274,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lHd" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47479,15 +47401,13 @@ /turf/open/floor/plating, /area/station/maintenance/department/science) "lIy" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/table/reinforced, /obj/item/storage/lockbox/loyalty, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/directional/east, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lID" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/west, @@ -47752,7 +47672,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lKK" = ( /obj/structure/cable, /obj/effect/landmark/event_spawn, @@ -47839,7 +47759,7 @@ /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) +/area/station/ai/satellite/chamber) "lMz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, @@ -47856,7 +47776,7 @@ /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) +/area/station/ai/satellite/chamber) "lMF" = ( /obj/machinery/vending/autodrobe, /obj/effect/turf_decal/siding/dark_blue{ @@ -48213,6 +48133,7 @@ "lRx" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/bot, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/maintenance/port) "lSh" = ( @@ -48248,12 +48169,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /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, /turf/open/floor/iron, /area/station/maintenance/port/fore) "lSo" = ( @@ -48267,7 +48188,7 @@ /area/station/medical/treatment_center) "lSw" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -48309,9 +48230,7 @@ /turf/open/floor/iron/white, /area/station/command/heads_quarters/captain/private) "lTC" = ( -/obj/structure/sign/plaques/kiddie/library, /obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/station/service/library/artgallery) "lTG" = ( @@ -48419,7 +48338,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lUF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -48653,7 +48572,7 @@ /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron, @@ -48844,7 +48763,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mck" = ( /obj/structure/chair/office, /obj/effect/landmark/start/depsec/medical, @@ -48939,7 +48858,7 @@ /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) +/area/station/ai/satellite/chamber) "mdg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48952,9 +48871,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/science/auxlab/firing_range) "mdm" = ( @@ -49146,13 +49063,6 @@ /obj/machinery/computer/security/telescreen/entertainment/directional/west, /turf/open/floor/iron, /area/station/cargo/office) -"mfO" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "mfP" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -49427,7 +49337,7 @@ /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/aisat/exterior) +/area/station/ai/satellite/exterior) "miD" = ( /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/plating, @@ -49560,7 +49470,7 @@ dir = 5 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mly" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -49584,17 +49494,15 @@ /area/station/maintenance/department/electrical) "mlE" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mlW" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/railing{ dir = 1 }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) "mmq" = ( @@ -49750,7 +49658,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/dim/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mph" = ( /obj/effect/landmark/start/hangover, /obj/structure/table/wood, @@ -50114,6 +50022,7 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 }, +/obj/structure/sign/warning/secure_area/directional/northwest, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -50249,11 +50158,12 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "muA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron, /area/station/engineering/main) "muK" = ( @@ -50326,7 +50236,8 @@ /obj/machinery/button/flasher{ id = "visitorflash"; pixel_x = -6; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/button/door/directional/north{ id = "visitation"; @@ -50433,12 +50344,12 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/machinery/door/airlock/medical/glass{ name = "Medbay" }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron, /area/station/medical/medbay) "mwS" = ( @@ -51192,6 +51103,7 @@ /obj/effect/turf_decal/box/corners{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "mFH" = ( @@ -51572,11 +51484,12 @@ /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/aisat/exterior) +/area/station/ai/satellite/exterior) "mJi" = ( /obj/structure/sign/departments/science{ name = "ROBOTICS"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -51672,9 +51585,7 @@ /area/station/engineering/atmos/pumproom) "mJS" = ( /obj/structure/dresser, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/wood, /area/station/commons/dorms) "mJW" = ( @@ -51796,7 +51707,7 @@ /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/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mMr" = ( /obj/effect/turf_decal/stripes/end{ dir = 1 @@ -51840,7 +51751,7 @@ /obj/structure/tank_dispenser/oxygen, /obj/effect/turf_decal/bot, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mNC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52273,10 +52184,10 @@ /obj/structure/disposalpipe/segment, /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/machinery/door/airlock/medical/glass{ name = "Medbay Treatment Center" }, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron, /area/station/medical/treatment_center) "mTc" = ( @@ -52368,6 +52279,7 @@ /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/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron, /area/station/engineering/atmos/project) "mUZ" = ( @@ -52382,7 +52294,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron, @@ -52397,22 +52309,6 @@ /turf/open/floor/iron/grimy, /area/station/service/abandoned_gambling_den) "mVr" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_y = 6; - req_access = list("medical") - }, -/obj/machinery/button/door/directional/west{ - id = "paramed_dispatch_desk"; - name = "Desk Shutter Control"; - pixel_y = -4; - req_access = list("medical") - }, /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 }, @@ -52592,7 +52488,7 @@ /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/aisat/exterior) +/area/station/ai/satellite/exterior) "mYk" = ( /obj/effect/turf_decal/loading_area{ dir = 8 @@ -52680,7 +52576,7 @@ dir = 4 }, /obj/effect/spawner/random/structure/barricade, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -52937,7 +52833,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ndc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -53093,7 +52989,7 @@ /obj/machinery/recharger, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ngb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/railing/corner{ @@ -53369,10 +53265,6 @@ }, /turf/open/floor/iron, /area/station/security/checkpoint/supply) -"njz" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) "njA" = ( /obj/machinery/airalarm/directional/east, /obj/effect/decal/cleanable/dirt, @@ -53406,7 +53298,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nkd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/effect/turf_decal/stripes/line{ @@ -53622,15 +53514,9 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nmU" = ( /obj/structure/cable, -/obj/machinery/firealarm/directional/south{ - pixel_x = -32 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -24 - }, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, @@ -53770,7 +53656,7 @@ /area/station/commons/storage/primary) "nph" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/siding/wood, /obj/structure/closet/secure_closet/personal/cabinet{ name = "mime's closet" @@ -54128,11 +54014,13 @@ }, /obj/structure/sign/picture_frame/showroom/one{ pixel_x = -2; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/sign/picture_frame/showroom/four{ pixel_x = 19; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/large, /area/station/command/corporate_showroom) @@ -54177,7 +54065,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -54316,9 +54204,6 @@ /turf/open/floor/iron/dark, /area/station/science/xenobiology) "nwW" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/status_display/ai/directional/north, /obj/structure/table/wood/fancy/red, /obj/machinery/door/window/brigdoor/left/directional/east{ @@ -54331,8 +54216,9 @@ /obj/item/ai_module/reset/purge{ pixel_y = 11 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nwY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54373,7 +54259,7 @@ }, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nxs" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/lattice, @@ -54547,10 +54433,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "nyZ" = ( @@ -54598,6 +54484,7 @@ name = "engineering camera"; network = list("ss13","engine") }, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "nzt" = ( @@ -54753,10 +54640,10 @@ /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) +/area/station/ai/satellite/exterior) "nBF" = ( /obj/structure/cable, -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 }, @@ -54883,7 +54770,7 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nDx" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -55025,6 +54912,7 @@ dir = 1 }, /obj/machinery/light/directional/north, +/obj/structure/sign/warning/radiation/directional/north, /turf/open/floor/iron, /area/station/engineering/main) "nFv" = ( @@ -55162,7 +55050,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -55321,7 +55209,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "nIW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55437,7 +55325,7 @@ dir = 10 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nJP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -55668,7 +55556,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "nNK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -56020,9 +55908,12 @@ /turf/open/floor/iron/white, /area/station/medical/virology) "nSv" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain/private) +/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/structure/sign/nanotrasen/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) "nSA" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -56102,7 +55993,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nTQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/cigbutt, @@ -56136,7 +56027,7 @@ /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) "nUo" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/personal, /obj/effect/spawner/random/food_or_drink/cups, @@ -56628,7 +56519,8 @@ id = "Cell 5"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -56734,7 +56626,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -56766,15 +56658,15 @@ /turf/open/floor/plating, /area/station/hallway/secondary/entry) "odc" = ( -/obj/structure/reagent_dispensers/water_cooler, /obj/machinery/newscaster/directional/south, /obj/machinery/camera/directional/east{ c_tag = "Medbay - Paramedic Dispatch"; name = "medbay camera"; network = list("ss13","medbay") }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, +/obj/machinery/suit_storage_unit/medical, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "odd" = ( /obj/docking_port/stationary/random{ @@ -56789,7 +56681,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "odl" = ( /obj/item/radio{ pixel_x = -5; @@ -56815,7 +56707,7 @@ /obj/machinery/newscaster/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "odD" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -56942,14 +56834,12 @@ dir = 4; name = "Mix Outlet Pump" }, -/obj/structure/sign/warning/secure_area/directional/west{ - pixel_y = -32 - }, /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/southwest, /turf/open/floor/iron, /area/station/engineering/atmos/mix) "ofN" = ( @@ -57143,7 +57033,7 @@ /turf/open/floor/iron/dark, /area/station/security/detectives_office) "oiO" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 8 }, /obj/effect/turf_decal/bot, @@ -57257,9 +57147,14 @@ }, /area/station/hallway/primary/fore) "okb" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/maintenance/department/crew_quarters/bar) +/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/structure/sign/nanotrasen/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) "oke" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -57270,7 +57165,7 @@ "okj" = ( /obj/effect/spawner/random/structure/crate_loot, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/plating, /area/station/medical/abandoned) "okk" = ( @@ -57416,7 +57311,7 @@ /obj/structure/extinguisher_cabinet/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "olI" = ( /obj/machinery/computer/shuttle/mining{ dir = 8 @@ -57474,7 +57369,7 @@ /obj/machinery/door/window/right/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "omj" = ( /obj/structure/chair{ dir = 4 @@ -58020,7 +57915,7 @@ /obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ouc" = ( /obj/structure/sign/warning/electric_shock{ pixel_y = -30 @@ -58076,12 +57971,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/large, /area/station/science/auxlab/firing_range) "ovb" = ( @@ -58737,7 +58630,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oDz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -58996,15 +58889,13 @@ /turf/closed/wall, /area/station/service/chapel) "oGM" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/closet/secure_closet/armory2, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/rubbershot, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oHe" = ( /obj/effect/turf_decal/bot, /obj/effect/landmark/start/hangover, @@ -59420,6 +59311,7 @@ /area/station/maintenance/department/eva/abandoned) "oMh" = ( /obj/effect/turf_decal/tile/blue, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/hallway) "oMo" = ( @@ -59504,7 +59396,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oNb" = ( /obj/structure/rack, /obj/item/circuitboard/machine/teleporter_hub{ @@ -59536,7 +59428,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "oNF" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/tile/blue/opposingcorners, @@ -59871,10 +59763,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "oSd" = ( @@ -60094,7 +59986,7 @@ }, /obj/effect/landmark/start/paramedic, /obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "oUM" = ( /obj/effect/decal/cleanable/blood/oil, @@ -60143,6 +60035,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/department/science) +"oVq" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/structure/plaque/static_plaque/golden/commission/delta, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "oVt" = ( /obj/structure/chair/pew, /turf/open/floor/iron/chapel{ @@ -60177,7 +60075,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -60539,7 +60437,7 @@ }, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pbP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60567,7 +60465,7 @@ /turf/open/floor/iron/white, /area/station/science/research) "pca" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -60925,10 +60823,6 @@ }, /turf/open/floor/glass, /area/station/maintenance/space_hut/observatory) -"pgA" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/main) "pgE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61495,6 +61389,21 @@ /obj/machinery/duct, /turf/open/floor/iron/diagonal, /area/station/medical/break_room) +"pnc" = ( +/obj/machinery/light/small/directional/north, +/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"; + pixel_y = 32; + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "png" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -61699,7 +61608,7 @@ /turf/open/floor/iron, /area/station/commons/lounge) "prl" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/crate, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -61854,7 +61763,7 @@ /obj/structure/sign/warning/electric_shock/directional/south, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ptC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61869,6 +61778,9 @@ /area/station/maintenance/department/crew_quarters/bar) "ptI" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/painting/large/library_private{ + dir = 1 + }, /turf/open/floor/iron/dark, /area/station/service/library/printer) "ptM" = ( @@ -61889,7 +61801,7 @@ /obj/effect/turf_decal/stripes/line, /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "puh" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 8 @@ -61937,7 +61849,7 @@ /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "puK" = ( /obj/structure/table, /obj/item/storage/crayons, @@ -62032,7 +61944,6 @@ /obj/effect/turf_decal/bot, /obj/machinery/camera/directional/west{ c_tag = "Service - Hydroponics Back"; - dir = 10; name = "hallway camera" }, /obj/effect/turf_decal/tile/blue{ @@ -62101,7 +62012,7 @@ /area/station/service/kitchen) "pwC" = ( /obj/item/radio/intercom/directional/north, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/spawner/random/structure/closet_private, /obj/item/clothing/under/rank/civilian/curator, /obj/item/clothing/under/rank/civilian/curator/skirt, @@ -62221,7 +62132,7 @@ /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) +/area/station/ai/satellite/exterior) "pxz" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/bot, @@ -62695,7 +62606,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pDx" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -62824,7 +62735,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: BLAST DOORS"; - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /turf/open/floor/iron/dark/textured_large, /area/station/security/execution/transfer) @@ -62903,7 +62815,7 @@ /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) +/area/station/ai/satellite/interior) "pFq" = ( /obj/structure/sign/warning/no_smoking/directional/west, /obj/effect/turf_decal/stripes/line{ @@ -62947,7 +62859,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pFF" = ( /obj/item/kirbyplants/random, /obj/machinery/camera/directional/north{ @@ -63073,7 +62985,7 @@ /obj/item/aicard, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pGR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron/herringbone, @@ -63117,10 +63029,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) -"pHy" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/service/chapel) "pHz" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -63134,7 +63042,7 @@ pixel_x = -7; pixel_y = 9 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -7; pixel_y = 1 }, @@ -63214,7 +63122,7 @@ "pIX" = ( /obj/effect/turf_decal/trimline/dark_red/filled/warning, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pJf" = ( /obj/structure/chair/office, /obj/effect/turf_decal/siding/yellow, @@ -63317,7 +63225,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pKb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -63380,7 +63288,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pKG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63603,7 +63511,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pNq" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -63714,12 +63622,14 @@ /turf/open/floor/iron, /area/station/commons/dorms) "pOQ" = ( -/obj/structure/lattice, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" }, -/turf/open/space/basic, -/area/space/nearstation) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "pOT" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -63992,7 +63902,7 @@ /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/aisat/exterior) +/area/station/ai/satellite/exterior) "pSg" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -64211,7 +64121,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -64330,7 +64241,7 @@ /obj/machinery/status_display/evac/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pUG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64383,7 +64294,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pUU" = ( /obj/effect/landmark/start/hangover, /obj/structure/chair/sofa/bench/left{ @@ -64408,7 +64319,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/spawner/random/armory/bulletproof_helmet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pVb" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/bot, @@ -64440,7 +64351,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/maintenance/port) "pVR" = ( @@ -64674,7 +64585,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -64864,12 +64775,9 @@ /obj/machinery/status_display/ai/directional/south, /obj/machinery/camera/directional/south{ c_tag = "Service - Bar Aft"; - dir = 5; name = "service camera" }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, +/obj/effect/turf_decal/tile/red/opposingcorners, /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron, /area/station/commons/lounge) @@ -64983,7 +64891,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, @@ -65123,7 +65031,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qdP" = ( /obj/item/kirbyplants/random, /obj/structure/extinguisher_cabinet/directional/east, @@ -65131,23 +65039,12 @@ /turf/open/floor/iron, /area/station/engineering/supermatter/room) "qdT" = ( -/obj/structure/table/wood, -/obj/item/storage/medkit/emergency, -/obj/item/toy/figure/paramedic, /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 1 }, -/turf/open/floor/iron/white, -/area/station/medical/paramedic) -"qdV" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = -26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/secure_closet/paramedic, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/medical/paramedic) "qdW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -65177,7 +65074,7 @@ /obj/item/folder/documents, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qeg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -65703,6 +65600,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron/dark/corner, /area/station/engineering/atmos/project) "qlA" = ( @@ -65711,12 +65609,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "qlD" = ( @@ -65917,6 +65815,7 @@ "qoo" = ( /obj/structure/table/wood, /obj/item/pai_card, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/wood, /area/station/command/meeting_room/council) "qoA" = ( @@ -66392,9 +66291,15 @@ /turf/open/floor/iron, /area/station/maintenance/port/aft) "qvn" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "qvo" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" @@ -66405,10 +66310,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "qvq" = ( @@ -66453,6 +66358,7 @@ /obj/item/paper_bin, /obj/item/pen, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/security/courtroom) "qvG" = ( @@ -66567,7 +66473,7 @@ /obj/structure/sign/departments/aiupload/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qxi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -66673,6 +66579,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron, /area/station/engineering/atmos/project) "qyy" = ( @@ -66760,7 +66667,7 @@ normaldoorcontrol = 1; specialfunctions = 4 }, -/obj/item/food/sandwich/cheese/grilled, +/obj/item/food/sandwich/grilled_cheese, /turf/open/floor/iron/cafeteria, /area/station/medical/break_room) "qzT" = ( @@ -66934,7 +66841,7 @@ /obj/item/restraints/handcuffs, /obj/item/assembly/flash/handheld, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qBF" = ( /obj/machinery/status_display/ai/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66984,7 +66891,7 @@ /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /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/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -67127,7 +67034,7 @@ /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) +/area/station/command/vault) "qDT" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -67323,7 +67230,7 @@ /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) +/area/station/ai/upload/chamber) "qGw" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -67637,7 +67544,7 @@ "qKc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qKg" = ( /obj/machinery/duct, /obj/effect/landmark/event_spawn, @@ -67654,7 +67561,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qKk" = ( /obj/structure/table/wood, /obj/item/radio/intercom, @@ -67797,6 +67704,7 @@ /obj/structure/chair{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/plating, /area/station/security/execution/transfer) "qLG" = ( @@ -67805,10 +67713,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) -"qLJ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) "qLO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/suit_storage_unit/engine, @@ -67854,7 +67758,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/library, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -67896,10 +67800,10 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "qMS" = ( -/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "qNb" = ( @@ -68014,7 +67918,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -68176,7 +68080,7 @@ name = "Security Transferring Center" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/disposalpipe/segment, @@ -68371,7 +68275,7 @@ /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qTK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -68383,19 +68287,17 @@ /area/station/security/courtroom) "qTR" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/service/chapel) "qUi" = ( -/obj/structure/disposalpipe/sorting/mail{ - name = "Engineering Junction" - }, /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 = 1 }, -/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/structure/disposalpipe/junction, /turf/open/floor/iron, /area/station/engineering/main) "qUu" = ( @@ -68441,10 +68343,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /turf/open/floor/iron, /area/station/cargo/storage) -"qUM" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/tcommsat/server) "qUP" = ( /obj/machinery/hydroponics/soil, /obj/item/shovel/spade, @@ -68666,10 +68564,6 @@ dir = 1 }, /area/station/medical/morgue) -"qZb" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port) "qZn" = ( /obj/machinery/status_display/ai/directional/south, /obj/effect/turf_decal/trimline/yellow/filled/line, @@ -68988,7 +68882,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69101,7 +68995,7 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rgj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69168,7 +69062,7 @@ }, /obj/machinery/light/small/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rgK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69180,7 +69074,7 @@ "rgL" = ( /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rgN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/start/depsec/engineering, @@ -69205,7 +69099,7 @@ /obj/effect/turf_decal/stripes/line, /obj/structure/cable/multilayer/connected, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rhf" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/bot, @@ -69264,7 +69158,7 @@ /obj/machinery/status_display/ai/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rhK" = ( /obj/structure/flora/bush/stalky/style_random, /obj/structure/flora/bush/lavendergrass/style_random, @@ -69293,7 +69187,7 @@ /turf/open/floor/iron, /area/station/maintenance/department/crew_quarters/bar) "riv" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -69339,16 +69233,13 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rjt" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/theater) "rju" = ( /obj/structure/closet/crate/preopen, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/item/tank/internals/oxygen/red{ pixel_x = 3 }, @@ -69358,6 +69249,7 @@ /obj/item/wrench, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/security/execution/education) "rjz" = ( @@ -69470,7 +69362,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/camera/directional/south{ c_tag = "Library - Aft Port"; - dir = 5; name = "library camera" }, /turf/open/floor/iron/grimy, @@ -69535,7 +69426,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/iron, @@ -69689,9 +69580,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/science/auxlab/firing_range) "rmo" = ( @@ -69755,6 +69644,10 @@ "rnf" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/east, +/obj/machinery/flasher/directional/east{ + id = "justiceflash"; + req_access = list("security") + }, /turf/open/floor/iron/dark, /area/station/security/execution/education) "rni" = ( @@ -70238,8 +70131,9 @@ /obj/machinery/porta_turret/ai, /obj/machinery/status_display/ai/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ruU" = ( /obj/item/instrument/violin, /obj/structure/table/wood, @@ -70577,7 +70471,7 @@ }, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ryE" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/iron/fifty, @@ -70722,7 +70616,7 @@ /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/aisat/exterior) +/area/station/ai/satellite/exterior) "rAG" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/iron{ @@ -71139,6 +71033,7 @@ dir = 4 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/engineering/hallway) "rGU" = ( @@ -71262,7 +71157,7 @@ dir = 4 }, /obj/effect/spawner/random/structure/barricade, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -71270,9 +71165,7 @@ /area/station/service/kitchen/abandoned) "rIl" = ( /obj/machinery/mass_driver/chapelgun, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, +/obj/structure/sign/warning/vacuum/external/directional/north, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -71364,7 +71257,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/spawner/random/structure/barricade, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -71468,7 +71361,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rKE" = ( /obj/effect/turf_decal/trimline/yellow/line, /obj/machinery/light/directional/south, @@ -71479,7 +71372,7 @@ dir = 10 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rKG" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -71776,11 +71669,11 @@ /turf/open/floor/iron, /area/station/science/robotics/lab) "rOa" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = -14 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port) "rOc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/large, @@ -71828,7 +71721,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -71866,7 +71759,7 @@ dir = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rOV" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -71907,7 +71800,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rPf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -71968,6 +71861,10 @@ /obj/structure/sign/directions/science{ pixel_y = 2 }, +/obj/structure/sign/directions/arrival{ + dir = 1; + pixel_y = 10 + }, /turf/closed/wall, /area/station/commons/vacant_room/office) "rPJ" = ( @@ -72055,7 +71952,7 @@ dir = 4 }, /obj/effect/spawner/random/trash/grille_or_waste, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -72375,10 +72272,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "rTW" = ( @@ -72444,11 +72341,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "rUX" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/item/kirbyplants/random, /obj/machinery/digital_clock/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/wood, /area/station/commons/dorms) "rVc" = ( @@ -72462,7 +72357,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/iron, /area/station/service/library/abandoned) @@ -72816,7 +72711,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rZF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ @@ -73076,12 +72971,10 @@ dir = 4 }, /obj/effect/turf_decal/bot/left, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/modular_computer/preset/cargochat/science{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/science/research) "scs" = ( @@ -73121,8 +73014,11 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sde" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, @@ -73183,7 +73079,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "sdO" = ( /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ dir = 1 @@ -73268,15 +73164,13 @@ /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 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "sfc" = ( @@ -73292,6 +73186,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, +/obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron, /area/station/security/checkpoint/engineering) "sfs" = ( @@ -73313,7 +73208,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: EXTERNAL AIRLOCK"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/smooth_large, @@ -73571,7 +73467,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "siV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow/opposingcorners{ @@ -73701,13 +73597,6 @@ /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 @@ -73717,6 +73606,13 @@ name = "science camera"; network = list("ss13","rd") }, +/obj/machinery/button/door/directional/north{ + pixel_x = 7; + pixel_y = 26; + id = "rdordnance"; + name = "Ordnance Containment Contro"; + req_access = list("science") + }, /turf/open/floor/iron/white, /area/station/science/ordnance/office) "skC" = ( @@ -73727,7 +73623,7 @@ /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) +/area/station/ai/satellite/interior) "skI" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -73938,7 +73834,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/disablers, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "sob" = ( /obj/structure/disposalpipe/segment, /obj/item/kirbyplants/random, @@ -73998,6 +73894,7 @@ pixel_y = 4 }, /obj/item/radio/intercom/directional/south, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/engineering/main) "soU" = ( @@ -74259,27 +74156,6 @@ /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, @@ -74469,7 +74345,7 @@ req_access = list("captain") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "suZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74630,6 +74506,7 @@ fax_name = "Captain's Office"; name = "Captain's Fax Machine" }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/wood, /area/station/command/heads_quarters/captain) "swn" = ( @@ -74695,7 +74572,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -74772,7 +74649,6 @@ /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 }, @@ -74782,7 +74658,8 @@ /obj/machinery/door/airlock/medical{ name = "Medbay Desk" }, -/turf/open/floor/iron, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "sxK" = ( /obj/effect/turf_decal/siding/wood, @@ -74929,7 +74806,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "szs" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -75042,7 +74919,7 @@ /turf/open/floor/iron, /area/station/service/hydroponics) "sAY" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, /obj/machinery/firealarm/directional/west, @@ -75286,7 +75163,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: PRESSURIZED DOORS"; - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/port/fore) @@ -75315,7 +75193,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -75345,7 +75223,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, @@ -75454,7 +75332,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "sGi" = ( /obj/structure/cable, /obj/effect/landmark/start/hangover, @@ -75476,17 +75354,13 @@ /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) +/area/station/ai/upload/chamber) "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, @@ -75511,7 +75385,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sGQ" = ( /obj/structure/chair/office{ dir = 4 @@ -75694,26 +75568,15 @@ /turf/open/floor/plating, /area/station/maintenance/department/security) "sIZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/directions/engineering{ +/obj/structure/sign/directions/arrival{ dir = 8; - pixel_x = -32; - pixel_y = -8 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_x = -32; pixel_y = 8 }, -/obj/structure/sign/directions/vault{ - dir = 1; - pixel_x = -32 +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/evac{ + pixel_y = -8 }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/central/fore) "sJb" = ( /obj/effect/spawner/random/trash/mess, @@ -75759,7 +75622,7 @@ "sJr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "sJF" = ( /obj/machinery/button/ignition/incinerator/atmos, /turf/closed/wall/r_wall, @@ -75843,7 +75706,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -75899,7 +75762,7 @@ "sKP" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sKQ" = ( /obj/machinery/computer/pandemic, /obj/effect/turf_decal/bot, @@ -76059,13 +75922,11 @@ /turf/open/floor/iron, /area/station/engineering/supermatter/room) "sMx" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "sMG" = ( @@ -76460,7 +76321,7 @@ "sSb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sSe" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -76547,7 +76408,8 @@ id = "Cell 2"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -76593,24 +76455,15 @@ /turf/open/floor/iron/white, /area/station/science/lobby) "sTR" = ( -/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/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/directions/dorms{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sign/directions/science{ + dir = 8 }, -/obj/structure/sign/directions/supply{ +/obj/structure/sign/directions/command{ dir = 1; - pixel_x = 32; pixel_y = 8 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) +/turf/closed/wall, +/area/station/medical/psychology) "sTV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/virology/glass{ @@ -76754,7 +76607,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sVW" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, @@ -76888,14 +76741,6 @@ /obj/machinery/igniter/incinerator_ordmix, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/burnchamber) -"sXE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/lattice/catwalk, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) "sXI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -77157,12 +77002,15 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/table, /obj/machinery/light/directional/west, -/obj/item/stack/conveyor/thirty, -/obj/item/boulder_beacon{ - pixel_x = -5 +/obj/item/food/ready_donk/donkrange_chicken, +/obj/item/food/ready_donk/donkhiladas{ + pixel_y = 5 }, -/obj/item/conveyor_switch_construct{ - pixel_x = 10 +/obj/item/food/ready_donk/country_chicken{ + pixel_y = 10 + }, +/obj/structure/closet/mini_fridge{ + name = "mini-fridge" }, /turf/open/floor/iron, /area/station/cargo/miningoffice) @@ -77176,7 +77024,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /turf/open/floor/iron, /area/station/maintenance/department/medical/morgue) @@ -77341,7 +77189,7 @@ /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/command/nuke_storage) +/area/station/command/vault) "tcH" = ( /obj/structure/table/glass, /obj/item/folder/yellow, @@ -77446,7 +77294,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "teA" = ( /obj/structure/displaycase/captain, /turf/open/floor/iron/grimy, @@ -77477,7 +77325,7 @@ /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tfi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock{ @@ -77499,7 +77347,7 @@ /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) +/area/station/ai/satellite/interior) "tfq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77589,6 +77437,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) "tgT" = ( @@ -77700,6 +77549,7 @@ dir = 5 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/departments/vault/directional/south, /turf/open/floor/iron/dark, /area/station/engineering/atmos) "tiP" = ( @@ -77794,7 +77644,7 @@ /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) +/area/station/ai/satellite/exterior) "tkB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77963,7 +77813,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tnJ" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, @@ -78126,10 +77976,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/service/abandoned_gambling_den/gaming) -"tpJ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/security/courtroom) "tpP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -78300,7 +78146,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "trW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/directional/north{ @@ -78428,7 +78274,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tti" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -78477,7 +78323,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -78592,7 +78438,7 @@ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -78990,15 +78836,13 @@ /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) "tAL" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/railing{ dir = 1 }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) "tAM" = ( @@ -79267,7 +79111,7 @@ /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) +/area/station/ai/upload/chamber) "tDD" = ( /obj/machinery/computer/shuttle/mining{ dir = 1 @@ -79331,13 +79175,10 @@ /turf/open/floor/iron, /area/station/service/kitchen/abandoned) "tEd" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/departments/vault/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/command/vault) "tEh" = ( /obj/structure/sign/directions/evac{ pixel_y = -8 @@ -79673,27 +79514,13 @@ /obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tHV" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/medical/morgue) "tHW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/directions/vault{ - dir = 1; - pixel_x = 32 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = -8 - }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/light/directional/east, /turf/open/floor/iron, @@ -79703,7 +79530,7 @@ /obj/machinery/light_switch/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tIe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance_hatch{ @@ -79716,7 +79543,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -79798,26 +79625,17 @@ /turf/open/floor/carpet, /area/station/commons/vacant_room/office) "tJT" = ( -/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/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/directions/vault{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/directions/dorms{ - pixel_x = 32 +/obj/structure/sign/directions/arrival{ + dir = 8; + pixel_x = 1 }, -/obj/structure/sign/directions/security{ - pixel_x = 32; - pixel_y = 8 +/obj/structure/sign/directions/lavaland{ + dir = 1; + pixel_x = 1; + pixel_y = 10 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) +/turf/closed/wall, +/area/station/hallway/secondary/entry) "tJU" = ( /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ dir = 1 @@ -79864,7 +79682,7 @@ "tKq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tKw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79920,10 +79738,6 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/half, /area/station/security/range) -"tLC" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) "tLW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/fourcorners, @@ -80123,11 +79937,11 @@ }, /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/airlock/medical/glass{ id_tag = "MedbayFoyer"; name = "Medbay Foyer" }, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron, /area/station/medical/medbay/lobby) "tOm" = ( @@ -80146,7 +79960,7 @@ /area/station/security/range) "tOs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/siding/wood, /obj/structure/closet/secure_closet/personal/cabinet{ name = "clown's closet" @@ -80468,7 +80282,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tSq" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/structure/table/reinforced, @@ -80683,10 +80497,10 @@ /obj/effect/spawner/random/armory/riot_helmet, /obj/effect/spawner/random/armory/riot_shield, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tVC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/closet/secure_closet/personal/cabinet{ name = "clown's closet" }, @@ -80704,7 +80518,6 @@ /obj/machinery/holopad, /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/paramedic, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, /area/station/medical/medbay) @@ -80756,12 +80569,11 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tWx" = ( /obj/effect/turf_decal/tile/red/diagonal_centre, /obj/effect/turf_decal/tile/blue/diagonal_edge, /obj/machinery/duct, -/obj/effect/landmark/start/paramedic, /turf/open/floor/iron/diagonal, /area/station/medical/break_room) "tWD" = ( @@ -80971,6 +80783,13 @@ /obj/structure/sign/directions/command{ dir = 1 }, +/obj/structure/sign/directions/dorms{ + pixel_y = -8 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 8 + }, /turf/closed/wall, /area/station/commons/storage/tools) "tYz" = ( @@ -81186,7 +81005,7 @@ }, /area/station/science/research) "uaY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ dir = 4 @@ -81205,10 +81024,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "ubz" = ( @@ -81390,7 +81209,7 @@ /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 }, -/obj/structure/sign/warning/no_smoking/directional/north, +/obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay) "udf" = ( @@ -81445,13 +81264,13 @@ }, /obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/medical/abandoned) "udG" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, /obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ dir = 4 }, @@ -81560,7 +81379,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ueC" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced/spawner/directional/east, @@ -81668,10 +81487,6 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) -"ugP" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/maintenance/port) "uhb" = ( /turf/closed/wall/r_wall, /area/station/science/xenobiology) @@ -81701,7 +81516,7 @@ /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "uhH" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -81720,7 +81535,7 @@ /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) +/area/station/ai/satellite/chamber) "uhS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -81877,7 +81692,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ujL" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -81960,7 +81775,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ukR" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, @@ -82097,7 +81912,7 @@ dir = 5 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "umA" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/siding/blue{ @@ -82125,7 +81940,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, @@ -82140,7 +81955,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "umN" = ( /turf/closed/wall, @@ -82150,7 +81965,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "umT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -82237,7 +82052,7 @@ /turf/open/floor/iron, /area/station/engineering/supermatter/room) "unO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, /obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ dir = 4 }, @@ -82275,9 +82090,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/light/small/directional/south, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark, @@ -82296,7 +82108,7 @@ /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) +/area/station/ai/upload/chamber) "uoS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -82351,10 +82163,11 @@ "upp" = ( /obj/item/kirbyplants/random, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; pixel_x = -32; - req_access = list("minisat") + req_access = list("minisat"); + dir = 8 }, /obj/machinery/camera/directional/west{ c_tag = "AI Satellite - Teleporter"; @@ -82364,13 +82177,13 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "upB" = ( /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/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "upM" = ( /obj/structure/table, /obj/item/storage/photo_album/prison, @@ -82394,7 +82207,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uqk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral, @@ -82470,7 +82283,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "urq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -82496,7 +82309,7 @@ /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "urC" = ( /obj/structure/cable, /obj/structure/table/reinforced, @@ -82551,7 +82364,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -82785,7 +82598,7 @@ cycle_id = "sci-toxins-passthrough" }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/maintenance/department/science) "uuP" = ( @@ -82857,7 +82670,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uvR" = ( /obj/machinery/camera/directional/south{ c_tag = "Security Hallway - Center"; @@ -83109,7 +82922,7 @@ /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) +/area/station/ai/satellite/exterior) "uyB" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -83259,12 +83072,9 @@ /turf/open/floor/wood/large, /area/station/service/library) "uzZ" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) "uAc" = ( /obj/structure/closet/crate, /obj/item/target/alien, @@ -83308,9 +83118,6 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) "uAL" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/structure/table/reinforced, /obj/machinery/recharger{ pixel_x = -6; @@ -83322,6 +83129,7 @@ }, /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/light/small/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/security/lockers) "uAV" = ( @@ -83440,7 +83248,8 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/turf/open/floor/iron/white, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "uCp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -83518,18 +83327,14 @@ /turf/open/floor/iron, /area/station/engineering/lobby) "uDj" = ( -/obj/structure/cable, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, -/area/station/command/corporate_showroom) +/area/station/command/bridge) "uDk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -83547,7 +83352,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uDp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83577,10 +83382,6 @@ /obj/structure/chair/stool/bar/directional/north, /turf/open/floor/carpet/green, /area/station/commons/lounge) -"uDI" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/service/chapel/funeral) "uDJ" = ( /obj/structure/sign/poster/contraband/random/directional/west, /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ @@ -83659,9 +83460,6 @@ /turf/open/floor/iron/white/side, /area/station/science/research) "uFa" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/camera/directional/south{ c_tag = "Security - Brig Desk" }, @@ -83671,6 +83469,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/security/holding_cell) "uFs" = ( @@ -84035,7 +83834,7 @@ "uJH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uJN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84384,7 +84183,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uNt" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/turf_decal/bot_white, @@ -84442,8 +84241,9 @@ /turf/open/floor/iron, /area/station/maintenance/port) "uNU" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, +/obj/item/kirbyplants/random, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/wood, /area/station/command/heads_quarters/hop) "uNY" = ( /turf/closed/wall, @@ -84494,9 +84294,7 @@ /area/station/service/abandoned_gambling_den) "uOC" = ( /obj/structure/lattice, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/space/basic, /area/space/nearstation) "uOE" = ( @@ -84590,7 +84388,7 @@ /turf/open/floor/iron, /area/station/commons/storage/tools) "uPj" = ( -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/delivery, /obj/structure/closet/emcloset, /turf/open/floor/iron, @@ -84658,9 +84456,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/space/basic, /area/space/nearstation) "uPS" = ( @@ -84720,32 +84516,19 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) -"uQD" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/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"; - pixel_y = 32 - }, -/obj/item/kirbyplants/organic/plant22, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "uQF" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/effect/turf_decal/bot_red, -/obj/machinery/suit_storage_unit/medical, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, /obj/machinery/light/cold/directional/west, +/obj/structure/table/reinforced, +/obj/item/toy/figure/md{ + pixel_y = 4 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = -4 + }, /turf/open/floor/iron/textured, /area/station/medical/storage) "uQN" = ( @@ -84768,7 +84551,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uRe" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ dir = 10 @@ -84887,6 +84670,17 @@ }, /turf/open/floor/iron, /area/station/security/prison/safe) +"uSo" = ( +/obj/structure/sign/directions/upload{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/science, +/obj/structure/sign/directions/medical{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/station/service/barber) "uSL" = ( /obj/effect/turf_decal/box/white{ color = "#9FED58" @@ -84952,7 +84746,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uTM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -85026,7 +84820,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) @@ -85070,7 +84864,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uVZ" = ( /obj/structure/cable, /obj/machinery/duct, @@ -85192,7 +84986,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uYp" = ( /obj/machinery/computer/records/medical{ dir = 8 @@ -85498,7 +85292,7 @@ /obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/delivery, /obj/machinery/airalarm/directional/west, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) @@ -85585,7 +85379,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vdH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85739,18 +85533,11 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "vfA" = ( -/obj/structure/table/glass, /obj/item/radio/intercom/directional/south, -/obj/item/clipboard, -/obj/item/toy/figure/md{ - pixel_y = 4 - }, -/obj/item/reagent_containers/hypospray/medipen{ - pixel_y = -4 - }, /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/structure/filingcabinet/chestdrawer, /turf/open/floor/iron/white, /area/station/medical/paramedic) "vfN" = ( @@ -85799,7 +85586,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vgm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, @@ -85873,9 +85660,7 @@ /area/station/service/bar/backroom) "vhW" = ( /obj/item/kirbyplants/random, -/obj/structure/sign/warning/pods/directional/south{ - dir = 8 - }, +/obj/structure/sign/warning/pods/directional/south, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, @@ -86110,11 +85895,9 @@ "vkX" = ( /obj/effect/turf_decal/bot, /obj/machinery/vending/cigarette, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/west, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/hallway/primary/central/fore) "vlA" = ( @@ -86331,6 +86114,7 @@ /obj/effect/turf_decal/trimline/yellow/mid_joiner{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/plating, /area/station/engineering/supermatter/room) "voi" = ( @@ -86452,10 +86236,8 @@ /turf/open/floor/iron, /area/station/engineering/storage_shared) "vqg" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/landmark/start/hangover, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/wood, /area/station/commons/dorms) "vqt" = ( @@ -86612,7 +86394,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron, @@ -86883,6 +86665,7 @@ dir = 1 }, /obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron/half, /area/station/engineering/main) "vvy" = ( @@ -86941,7 +86724,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vvO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -87087,7 +86870,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vxQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -87139,7 +86922,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/laser_gun, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vyl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -87214,7 +86997,7 @@ /obj/item/storage/belt/utility, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vze" = ( /obj/structure/bookcase/random, /obj/item/radio/intercom/directional/south{ @@ -87315,13 +87098,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"vAl" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) "vAs" = ( /obj/structure/cable, /obj/machinery/holopad/secure, @@ -87484,10 +87260,6 @@ icon_state = "foam_plating" }, /area/station/maintenance/department/science/xenobiology) -"vBX" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/engineering/storage/tech) "vBY" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -87506,7 +87278,8 @@ /area/station/hallway/primary/fore) "vCk" = ( /obj/structure/sign/departments/medbay/alt{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -87727,7 +87500,6 @@ /obj/structure/cable, /obj/machinery/camera/directional/east{ c_tag = "Dormitories - Hall"; - dir = 6; name = "dormitories camera" }, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -87769,7 +87541,7 @@ pixel_y = -16 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vFC" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 5 @@ -87838,7 +87610,7 @@ /obj/structure/secure_safe/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vGP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/railing{ @@ -88022,6 +87794,7 @@ }, /obj/structure/closet/radiation, /obj/machinery/firealarm/directional/north, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/engineering/main) "vJh" = ( @@ -88098,7 +87871,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vKl" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/brown/half/contrasted{ @@ -88142,6 +87915,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/station/security/checkpoint/engineering) "vLg" = ( @@ -88301,17 +88075,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"vOe" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/obj/item/kirbyplants/organic/plant22, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "vOh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -88386,7 +88149,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vPe" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -88596,10 +88359,6 @@ "vRU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/lavaland{ - dir = 4; - pixel_y = -26 - }, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, @@ -88620,7 +88379,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vSk" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -88962,7 +88721,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vWV" = ( /obj/effect/turf_decal/bot, /obj/machinery/requests_console/directional/north{ @@ -89055,7 +88814,7 @@ /area/station/service/abandoned_gambling_den/gaming) "vXT" = ( /obj/structure/closet/wardrobe/pjs, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -89183,7 +88942,7 @@ "vZE" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vZX" = ( /obj/machinery/status_display/ai/directional/north, /obj/effect/turf_decal/tile/yellow/opposingcorners, @@ -89213,7 +88972,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -89270,11 +89029,11 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "wbe" = ( @@ -89576,7 +89335,7 @@ dir = 4 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -89693,7 +89452,7 @@ /area/station/commons/dorms) "wgF" = ( /obj/structure/cable, -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/machinery/status_display/ai/directional/south, @@ -89707,7 +89466,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wgL" = ( /turf/open/floor/wood, /area/station/service/library/abandoned) @@ -90103,15 +89862,18 @@ /obj/structure/cable, /obj/machinery/button/door/incinerator_vent_atmos_aux{ pixel_x = -8; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/button/door/incinerator_vent_atmos_main{ pixel_x = -8; - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /obj/machinery/button/ignition/incinerator/atmos{ pixel_x = 8; - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /obj/structure/closet/radiation, /obj/item/analyzer, @@ -90489,25 +90251,14 @@ /turf/open/floor/stone, /area/station/command/corporate_showroom) "wpu" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - pixel_x = -32; - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - pixel_x = -32 - }, -/obj/structure/sign/directions/arrival{ - dir = 8; - pixel_x = -32; - pixel_y = 8 +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast Door" }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/holding_cell) "wpx" = ( /obj/machinery/airalarm/directional/north, /obj/structure/table, @@ -90678,7 +90429,8 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, /obj/structure/sign/warning/no_smoking{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -90824,7 +90576,7 @@ /obj/effect/turf_decal/trimline/dark_red/filled/line, /obj/structure/chair/office, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wtS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -90837,6 +90589,10 @@ /area/station/science/research) "wtU" = ( /obj/structure/cable, +/obj/structure/sign/plaques/kiddie/library{ + dir = 1; + pixel_y = 32 + }, /turf/open/floor/wood/tile, /area/station/service/library/artgallery) "wtV" = ( @@ -91161,9 +90917,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "wxX" = ( @@ -91296,7 +91050,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "wAt" = ( /obj/machinery/hydroponics/soil, @@ -91484,7 +91238,8 @@ "wCr" = ( /obj/machinery/button/crematorium{ id = "crematoriumChapel"; - pixel_x = 25 + pixel_x = 25; + dir = 4 }, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -91916,7 +91671,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wHW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, @@ -92019,7 +91774,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "wJs" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -92072,7 +91827,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wJY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, @@ -92091,14 +91846,12 @@ /turf/open/floor/iron/chapel, /area/station/service/chapel) "wKm" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) "wKo" = ( @@ -92239,7 +91992,7 @@ /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/aisat_interior) +/area/station/ai/satellite/interior) "wLZ" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/yellow{ @@ -92465,7 +92218,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wQo" = ( /obj/structure/table/wood, /obj/machinery/recharger{ @@ -92549,7 +92302,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wRz" = ( /obj/structure/table/wood, /obj/item/storage/briefcase/secure{ @@ -92736,7 +92489,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wTF" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -92833,7 +92586,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wVQ" = ( /obj/structure/table, /obj/effect/spawner/random/food_or_drink/snack, @@ -93148,8 +92901,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/commons/vacant_room/office) "xbp" = ( @@ -93444,7 +93197,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -93655,7 +93408,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, @@ -93711,7 +93464,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -93753,6 +93506,7 @@ "xil" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, /obj/machinery/light/directional/south, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "xin" = ( @@ -93838,7 +93592,7 @@ /obj/structure/cable, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xjo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -94147,7 +93901,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xnw" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, @@ -94234,7 +93988,7 @@ /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/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xpy" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -94257,6 +94011,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -94366,7 +94121,7 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "xrg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -94633,7 +94388,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Drone Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -94735,7 +94490,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, @@ -94959,7 +94714,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xxN" = ( /obj/structure/table/wood, /obj/machinery/computer/security/telescreen/entertainment/directional/north, @@ -94971,9 +94726,8 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/effect/landmark/start/medical_doctor, /obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/large, +/turf/open/floor/iron/dark/smooth_large, /area/station/medical/paramedic) "xxX" = ( /obj/effect/decal/cleanable/dirt, @@ -95039,9 +94793,11 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "xyu" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/medical/morgue) +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark, +/area/station/ai/satellite/interior) "xyC" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/reflector/single, @@ -95389,13 +95145,11 @@ /turf/open/floor/circuit/telecomms/mainframe, /area/station/tcommsat/server) "xCf" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "xCC" = ( @@ -95526,10 +95280,6 @@ /turf/open/floor/iron, /area/station/science/xenobiology) "xEg" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, /obj/machinery/light/small/directional/south, /obj/item/kirbyplants/organic/plant22, /obj/effect/turf_decal/tile/blue/half/contrasted, @@ -96200,7 +95950,7 @@ /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) +/area/station/ai/satellite/chamber) "xMI" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/computer/atmos_control/nitrogen_tank{ @@ -96251,7 +96001,7 @@ /obj/structure/cable/layer3, /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xMX" = ( /obj/structure/chair/office{ dir = 4 @@ -96261,7 +96011,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xNe" = ( /obj/structure/lattice, /obj/structure/grille/broken, @@ -96326,12 +96076,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 }, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Engineering Junction" + }, /turf/open/floor/iron, /area/station/engineering/lobby) "xNU" = ( @@ -96390,7 +96142,6 @@ /obj/structure/extinguisher_cabinet/directional/west, /obj/machinery/camera/directional/west{ c_tag = "Service - Kitchen Coldroom"; - dir = 10; name = "service camera" }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, @@ -96501,7 +96252,7 @@ /area/station/medical/storage) "xQZ" = ( /obj/machinery/airalarm/directional/north, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/spawner/random/structure/closet_private, /obj/item/clothing/head/costume/kitty, /obj/item/clothing/under/costume/maid, @@ -96523,7 +96274,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xRv" = ( /obj/effect/landmark/start/hangover, /obj/effect/turf_decal/stripes/line, @@ -96540,7 +96291,7 @@ /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) +/area/station/ai/satellite/exterior) "xRF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -96750,6 +96501,7 @@ network = list("ss13","engine") }, /obj/item/kirbyplants/random, +/obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "xUq" = ( @@ -96904,7 +96656,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xWw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance_hatch{ @@ -96958,7 +96710,7 @@ /obj/item/multitool, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xWQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -97125,7 +96877,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, @@ -97182,7 +96934,7 @@ /obj/machinery/computer/bank_machine, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "yaj" = ( /obj/effect/turf_decal/siding/white/corner, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -97247,7 +96999,7 @@ /area/station/commons/dorms) "yaW" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "yba" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -97599,7 +97351,7 @@ /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) +/area/station/ai/satellite/chamber) "ygc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -97636,7 +97388,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ @@ -97685,13 +97437,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ygY" = ( /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"; - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/effect/turf_decal/tile/red{ dir = 4 @@ -97765,7 +97518,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "yhJ" = ( /turf/open/floor/plating/airless, /area/space/nearstation) @@ -97981,15 +97734,12 @@ /turf/open/floor/plating, /area/station/engineering/supermatter/room) "ykl" = ( -/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/east{ - pixel_y = -32 +/obj/structure/sign/plaques/kiddie/library{ + dir = 1; + pixel_y = 32 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/turf/open/floor/wood/tile, +/area/station/service/library/artgallery) "ykm" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -98028,7 +97778,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4 }, /turf/open/floor/iron, @@ -105442,7 +105192,7 @@ jPe kXJ cQh bPC -bRD +bPC bPC tnG bPC @@ -105704,7 +105454,7 @@ ikT uQY ikT qTF -bRD +bPC ruN aRr csk @@ -105967,7 +105717,7 @@ hmU sdK xpt sdK -qdV +sdK qGs cdt idU @@ -106995,7 +106745,7 @@ hmU sdK tDB hmU -tEd +hmU cJh cdt idU @@ -107498,7 +107248,7 @@ xMX kXJ cQh bPC -bRD +bPC bPC dNg bPC @@ -107755,7 +107505,7 @@ lyf lMA btH bPC -uNh +xyu upp hzJ rKC @@ -116227,7 +115977,7 @@ efQ qYo wes gnH -sXE +gnH gnH wFJ wFJ @@ -117018,7 +116768,7 @@ qYo aaa vVc gAw -uzZ +qYo qYo ksq vVc @@ -117802,7 +117552,7 @@ ike cbs wry hIh -akM +nCi jyt hKV dXH @@ -118286,7 +118036,7 @@ xUy xqR qzc kUx -kTV +nUp chv dQl oIE @@ -119073,8 +118823,8 @@ ntd hWY heZ bpr -bpr -anB +qvn +gAw ilG cwI sHT @@ -119314,7 +119064,7 @@ xUy xqR vTc oMh -kTV +nUp oow qzT nAF @@ -119344,9 +119094,9 @@ jcL vUV ugr xil -tLC +gAw epC -qZb +pTC jaI kwX pTC @@ -119588,7 +119338,7 @@ ntd bzY cMA vog -anB +gAw aVW lbl sHT @@ -119858,10 +119608,10 @@ sHT qqQ sLe nzs -tLC +gAw eYG -qZb -uKY +pTC +rOa gcr pTC kWi @@ -120074,7 +119824,7 @@ unO jxJ avX tiC -jfL +hhM mtm guU nNz @@ -120629,7 +120379,7 @@ qJI nCl gAw dtX -ugP +pTC pTC pTC uKY @@ -120886,7 +120636,7 @@ xEt nlS cCY jxQ -nlS +ceV lDk pTC wle @@ -121896,18 +121646,18 @@ rex ttE gAw mwW -anB +gAw cCY cCY cCY gAw gAw gAw -tLC +gAw cCY rAd cCY -tLC +gAw gAw gAw gAw @@ -122931,11 +122681,11 @@ jkK fbn gTr rRD -pgA +rRD aYU pzA aYU -pgA +rRD rRD dOr mKv @@ -124193,7 +123943,7 @@ gvj rNf xLZ xLZ -rOa +xLZ xLZ iVV cZY @@ -124203,11 +123953,11 @@ eSk wif pEY vvp -lDV +tqo tUg gmP qeP -ceV +tqo nFr bfX gRE @@ -124473,11 +124223,11 @@ vvH hcQ dsj rRD -pgA +rRD hOa aGo auD -pgA +rRD fii pUf bID @@ -125700,9 +125450,9 @@ hwM hwM hwM hwM -djf +hwM bGC -djf +hwM hwM oXU vjF @@ -125743,7 +125493,7 @@ bjl lNk nSJ bDX -qLJ +wGA wGA wGA rAH @@ -126214,9 +125964,9 @@ oYs oYs azA nmw -qvn +nmw pKG -qvn +nmw nmw nmw nmw @@ -127030,7 +126780,7 @@ dGS dGS dGS dGS -vBX +dGS dsy nps nps @@ -127301,7 +127051,7 @@ lhZ rQi pTC pTC -qZb +pTC guQ pTC pTC @@ -128918,7 +128668,7 @@ msu deV kpa ydW -pOQ +anZ efQ qYo efQ @@ -129938,7 +129688,7 @@ qQM qQM uBt lVQ -gDW +kzc lpY tsJ wbP @@ -131913,11 +131663,11 @@ ilJ iyq iyq fHI -fHI +kLz mvA rtO rtO -qAQ +uSo sAh sAh qAQ @@ -132170,7 +131920,7 @@ sYU sYU sYU giC -sIZ +cpr hAc ctw lSl @@ -132366,7 +132116,7 @@ aaa aaa qld lYd -bbP +oVq kJd xcm lSh @@ -132698,14 +132448,14 @@ eMc wXU uiR piG -clH +nSv unK erS nXY plO nXY nXY -nXY +okb sxD nXY kHu @@ -132955,14 +132705,14 @@ pRS pRS pRS pRS -uNU +pRS jaV tPc mlE mlE mlE mlE -lBR +mlE mlE mlE mlE @@ -133150,7 +132900,7 @@ sjt dyi iWA vRU -tCs +fcP tCs tCs bJf @@ -133189,7 +132939,7 @@ xms xms xms diL -uQD +pnc drj bog xEg @@ -133446,10 +133196,10 @@ aaa qYo aaa diL -nBJ +uDj eVb jYX -nBJ +pOQ awc fIn rgW @@ -133725,7 +133475,7 @@ tns lZx lZx dQf -sGz +lZx pRS mcv qLS @@ -133800,7 +133550,7 @@ xPc sTV xPc tgT -pOQ +anZ aaa aaa qYo @@ -133982,7 +133732,7 @@ mqr uNy cIb asq -qnQ +uNU pRS tMj kxs @@ -135251,7 +135001,7 @@ yil obc sQA qoo -vAl +mGw mGw qHx awc @@ -136026,8 +135776,8 @@ kZu cjl yfN yiC -qUM -jDi +xkw +uzZ eDK dfb hup @@ -137548,7 +137298,7 @@ qAV ttF qAV qAV -okb +qAV rKN pXg jkf @@ -138102,7 +137852,7 @@ duA fqN mzL sFu -uDj +sFu duA tAL nEk @@ -138275,8 +138025,8 @@ sjt qld qld sjt -sjt -fcP +tJT +qso sde nSF koM @@ -138416,7 +138166,7 @@ tHV tHV tHV tHV -xyu +tHV eKU imN exJ @@ -138849,7 +138599,7 @@ bog jlZ gOU swj -jeI +aby aby igb gOU @@ -139403,7 +139153,7 @@ fNm qeB uNY keH -jtz +yfM ckd veM hJn @@ -139660,7 +139410,7 @@ rmo lnz uNY eQC -gQl +cvX eQC gQl ltz @@ -140140,7 +139890,7 @@ aby wRz aGZ teA -nSv +ivA lnm tLa nDn @@ -140642,7 +140392,7 @@ aaa qYo aaa diL -nBJ +uDj eVb jYX nBJ @@ -140899,10 +140649,10 @@ xms xms xms diL -uQD +pnc drj bog -vOe +xEg gOU prt wUw @@ -141151,7 +140901,7 @@ vRO eUH dvy lSl -kOj +sIZ kGK kNw anV @@ -141179,7 +140929,7 @@ vIQ twE vIQ vIQ -aFE +vIQ jaV tPc ksK @@ -141190,7 +140940,7 @@ ksK ksK ksK ksK -ksK +jom kxg hJs vlY @@ -141202,7 +140952,7 @@ xuI uNY uNY gQl -gpq +gQl gQl gQl gQl @@ -141223,7 +140973,7 @@ dki jzN ram pvF -dki +sTR pAK aZO hXm @@ -141408,7 +141158,7 @@ xhW upX aGG lSl -wpu +cpr lSl lSl lSl @@ -141417,7 +141167,7 @@ pNq kHp skX pNq -lSl +gDW jol lSl lSl @@ -141436,7 +141186,7 @@ ltY lSl lSl dbU -qSd +lBR rRB nOP sqd @@ -141447,7 +141197,7 @@ uKZ sqd sqd rbb -jom +sqd aLv qAW gnz @@ -141480,7 +141230,7 @@ cUY fdX dju dju -kLz +qRA ocC xgH vZl @@ -141922,7 +141672,7 @@ hXg seX mEv vPp -tJT +oAW qzY qzY edB @@ -141936,11 +141686,11 @@ vPp qzY qzY jfK -sTR +oAW eFr ohP lZt -iWH +lZt wXU lZt lZt @@ -141956,7 +141706,7 @@ tHW juZ dHb clH -chF +clH clH clH clH @@ -142179,7 +141929,7 @@ hXg lDY tpZ kOj -kOj +chF nHQ nHQ xPt @@ -142209,11 +141959,11 @@ iVq iVq iVq iVq -iVq +iWH kuO orL orL -hgJ +bBK gFi ssp ssp @@ -142439,7 +142189,7 @@ aaa qYo aaa teY -ykl +tcG teY aaa qYo @@ -142783,7 +142533,7 @@ oWo oWo oGK oGK -pHy +oGK aaa qYo qYo @@ -142954,7 +142704,7 @@ lhY vZE ldU tcG -vZE +tEd vZE lhY qYo @@ -143749,7 +143499,7 @@ aSi aSi aSi aSi -tpJ +iVq wmM iVq oKL @@ -144032,7 +143782,7 @@ nHY gnh aBz lTC -pPl +ykl pPl pPl vPf @@ -145867,7 +145617,7 @@ vNn vNn oGK oGK -pHy +oGK aaa qYo aaa @@ -147403,7 +147153,7 @@ kgf cVh uuP brb -uDI +brb aaa aaa aaa @@ -147851,8 +147601,8 @@ lim uLf grp mJq -bBK -vMj +mJq +wpu jCb kHZ myc @@ -150978,7 +150728,7 @@ qOK nXH nXH nXH -njz +nXH mOH nXH nXH @@ -151679,7 +151429,7 @@ sgh lTJ gJk qIH -pOQ +anZ qYo hQq fNW @@ -153243,10 +152993,10 @@ efQ aaa aaa aaa -mfO +qYo pYW aaa -mfO +qYo aaa aaa aaa @@ -156048,7 +155798,7 @@ cBD hms qLF gJk -pOQ +qYo qYo efQ efQ @@ -157135,7 +156885,7 @@ fIQ uKw mfC uKw -pOQ +anZ efQ aaa aaa diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm index 8c28835a05b8..70abb1613d39 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm @@ -23,6 +23,9 @@ /obj/item/taperecorder, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"aax" = ( +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "aaI" = ( /obj/structure/closet/wardrobe/white, /obj/item/clothing/shoes/jackboots, @@ -67,6 +70,12 @@ /obj/item/clothing/head/helmet/skull, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"abC" = ( +/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/science/server) "abJ" = ( /obj/machinery/camera{ c_tag = "Service - Botany"; @@ -99,14 +108,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"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, @@ -123,7 +124,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -170,7 +171,7 @@ /area/station/tcommsat/computer) "adq" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -251,7 +252,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aey" = ( /obj/machinery/camera/directional/east{ c_tag = "Xenobiology Pens - Starboard Fore"; @@ -359,7 +360,7 @@ }, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "agI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -478,7 +479,7 @@ /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/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ajr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -683,7 +684,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "alM" = ( /turf/closed/wall, /area/station/maintenance/aft/lesser) @@ -741,6 +742,15 @@ /obj/structure/flora/bush/style_random, /turf/open/floor/grass, /area/station/service/hydroponics) +"amD" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + location = "Bridge" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/central/greater) "amE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -767,6 +777,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"amS" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/white, +/area/station/medical/medbay/aft) "amW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -779,7 +793,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -983,20 +997,6 @@ }, /turf/open/floor/iron, /area/station/service/bar) -"aoP" = ( -/obj/machinery/door/airlock/external{ - dir = 8; - name = "Lower Medical External Access" - }, -/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{ dir = 4; @@ -1048,7 +1048,7 @@ /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) +/area/station/ai/satellite/service) "apo" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -1090,14 +1090,6 @@ /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, @@ -1105,7 +1097,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "apT" = ( /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ @@ -1416,6 +1408,12 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) +"atr" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/closet/secure_closet/paramedic, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "atv" = ( /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, @@ -1490,24 +1488,6 @@ }, /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; @@ -1594,6 +1574,10 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) +"avw" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/janitor) "avC" = ( /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/white/corner{ @@ -1624,7 +1608,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "awe" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -1969,7 +1953,7 @@ dir = 4 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aAl" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 1 @@ -2011,6 +1995,19 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/cmo) +"aBE" = ( +/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, +/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/janitor) "aBK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -2057,13 +2054,6 @@ }, /turf/open/floor/iron, /area/station/cargo/miningdock) -"aCj" = ( -/obj/structure/sign/poster/official/twelve_gauge/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) "aCo" = ( /obj/structure/chair/wood{ dir = 8 @@ -2085,12 +2075,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"aCA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) "aCC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2259,7 +2243,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "aFn" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -2281,12 +2265,13 @@ /obj/machinery/dna_scannernew, /turf/open/floor/iron/dark, /area/station/science/genetics) -"aFz" = ( -/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, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) +"aFy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/smooth_half, +/area/station/security/brig/upper) "aFG" = ( /obj/structure/railing/corner{ dir = 1 @@ -2314,6 +2299,12 @@ /obj/item/flashlight/lantern/on, /turf/open/misc/hay/icemoon, /area/icemoon/underground/explored) +"aGl" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/science/research) "aGr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/directional/east{ @@ -2482,14 +2473,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) -"aID" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) "aIE" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plating, @@ -2514,6 +2497,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"aIW" = ( +/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, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/maintenance/department/cargo) "aJa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2653,6 +2647,17 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"aLf" = ( +/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, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) "aLz" = ( /obj/machinery/conveyor{ id = "garbage" @@ -2687,8 +2692,9 @@ "aLX" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "aMa" = ( @@ -2700,7 +2706,7 @@ /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/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -2726,7 +2732,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/structure/sign/poster/contraband/random/directional/north, +/obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "aMr" = ( @@ -2814,9 +2820,7 @@ /turf/open/floor/plating, /area/mine/eva/lower) "aNE" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/central) "aOb" = ( @@ -2847,7 +2851,8 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/vending/clothing, /obj/structure/noticeboard/staff{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/commons/locker) @@ -2869,11 +2874,6 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) -"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) "aOU" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/trunk/multiz/down, @@ -2969,7 +2969,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "aPZ" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, @@ -3018,6 +3018,13 @@ /obj/structure/cable, /turf/open/floor/circuit/telecomms/mainframe, /area/station/tcommsat/server) +"aQS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/office) "aQW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3104,7 +3111,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aRR" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -3151,18 +3158,11 @@ /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) +/area/station/security/armory/upper) "aSI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -3231,17 +3231,27 @@ }, /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) +"aTA" = ( +/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, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) "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{ +/obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/area/station/medical/chem_storage) +/obj/machinery/button/door/directional/east{ + pixel_y = 0; + id = "paramedic_shutters"; + name = "Shutters button"; + pixel_x = 23; + req_access = list("paramedic") + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "aTH" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 1 @@ -3486,7 +3496,7 @@ req_access = list("armory") }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "aWo" = ( /obj/machinery/hydroponics/constructable, /obj/effect/decal/cleanable/dirt, @@ -3678,12 +3688,10 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "aZw" = ( -/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/planet) +/obj/structure/flora/rock/pile/icy/style_random, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "aZx" = ( /obj/machinery/camera/directional/east{ c_tag = "Telecomms Monitoring"; @@ -3877,13 +3885,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"bbB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "bbM" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -3892,22 +3893,13 @@ /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{ +/obj/effect/turf_decal/trimline/blue/filled/line{ 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 - }, +/obj/machinery/computer/records/medical, +/obj/machinery/light/directional/north, /turf/open/floor/iron/dark, -/area/station/security/courtroom) +/area/station/medical/paramedic) "bbU" = ( /obj/structure/closet/toolcloset, /obj/machinery/status_display/evac/directional/south, @@ -4043,7 +4035,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bdQ" = ( /obj/structure/table, /obj/item/assembly/signaler{ @@ -4083,7 +4075,7 @@ /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) +/area/station/ai/satellite/interior) "bep" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron, @@ -4180,12 +4172,6 @@ /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) @@ -4208,15 +4194,7 @@ 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) +/area/station/ai/satellite/chamber) "bgK" = ( /obj/structure/table, /obj/item/toner, @@ -4300,15 +4278,6 @@ }, /turf/open/floor/plating, /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 @@ -4428,7 +4397,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -4486,7 +4455,7 @@ "bkr" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "bkC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4497,6 +4466,14 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, /area/station/security/brig/upper) +"bkI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/science/research) "bkQ" = ( /obj/structure/tank_holder/extinguisher, /obj/structure/sign/warning/biohazard/directional/north, @@ -4742,7 +4719,7 @@ /obj/machinery/nuclearbomb/selfdestruct, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bnL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance_hatch, @@ -4853,7 +4830,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bpq" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 1 @@ -4878,8 +4855,8 @@ /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, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "bpQ" = ( @@ -4957,7 +4934,7 @@ "bqt" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "bqx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5026,7 +5003,7 @@ /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) +/area/station/ai/satellite/interior) "brp" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue{ @@ -5286,12 +5263,6 @@ "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, @@ -5555,6 +5526,19 @@ "bxe" = ( /turf/closed/wall/r_wall, /area/station/maintenance/solars/starboard/fore) +"bxp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/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) "bxJ" = ( /obj/structure/closet/crate, /turf/open/floor/plating, @@ -5673,6 +5657,10 @@ /obj/structure/girder, /turf/open/floor/plating, /area/station/maintenance/fore) +"byT" = ( +/mob/living/basic/lizard/wags_his_tail, +/turf/open/floor/iron, +/area/station/service/janitor) "bza" = ( /obj/structure/fence/end{ dir = 8 @@ -5717,7 +5705,7 @@ /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) +/area/station/ai/upload/chamber) "bzD" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "mining-aux-mechbay-external" @@ -5748,6 +5736,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"bzT" = ( +/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) "bzW" = ( /turf/open/floor/engine/plasma, /area/station/engineering/atmos) @@ -5758,19 +5754,6 @@ /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, @@ -5981,7 +5964,8 @@ /area/station/engineering/lobby) "bDB" = ( /obj/structure/plaque/static_plaque/golden/commission/icebox{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -6090,7 +6074,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bEC" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -6116,7 +6100,7 @@ "bEN" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/department/chapel) "bEX" = ( @@ -6192,6 +6176,11 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/station/command/bridge) +"bGl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit, +/area/station/science/robotics/mechbay) "bGm" = ( /obj/machinery/firealarm/directional/south, /obj/structure/filingcabinet/white, @@ -6331,7 +6320,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bIl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -6433,7 +6422,7 @@ "bJj" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "bJp" = ( /obj/machinery/camera/directional/east{ c_tag = "Security - Permabrig Workout"; @@ -6476,10 +6465,17 @@ name = "Firefighting Equipment" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"bKz" = ( +/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/white, +/area/station/science/explab) "bKA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6561,17 +6557,13 @@ /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) +/area/station/ai/satellite/hallway) "bLA" = ( /obj/structure/closet, /turf/open/floor/plating, @@ -6663,9 +6655,16 @@ /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, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"bMV" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "bMY" = ( /turf/open/floor/glass/reinforced, /area/station/hallway/primary/starboard) @@ -6713,12 +6712,6 @@ /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, @@ -6736,8 +6729,8 @@ "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, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "bOk" = ( @@ -6809,7 +6802,7 @@ "bPc" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "bPl" = ( /obj/structure/table/wood, /obj/item/folder/blue, @@ -7150,7 +7143,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bTM" = ( /obj/structure/closet/crate, /obj/machinery/light/small/directional/south, @@ -7266,25 +7259,6 @@ /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, @@ -7336,7 +7310,7 @@ /area/station/maintenance/port/fore) "bWn" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bWp" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/iron/dark, @@ -7400,6 +7374,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/service/chapel) +"bXa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/gateway) "bXf" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -7419,18 +7399,9 @@ /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) +/area/station/security/armory/upper) "bXD" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -7458,22 +7429,13 @@ }, /obj/effect/spawner/random/armory/laser_gun, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bYi" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/yellow/half/contrasted, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"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, @@ -7563,7 +7525,7 @@ }, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) @@ -7674,7 +7636,8 @@ }, /obj/effect/turf_decal/bot_white, /obj/structure/sign/picture_frame/portrait/bar{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/large, /area/station/service/bar/atrium) @@ -7726,6 +7689,15 @@ dir = 1 }, /area/mine/living_quarters) +"cbf" = ( +/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/plating, +/area/station/maintenance/aft/greater) "cbk" = ( /turf/open/floor/iron, /area/mine/mechbay) @@ -7749,7 +7721,7 @@ "cbz" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cbC" = ( /obj/machinery/meter, /obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ @@ -7801,7 +7773,8 @@ /area/station/hallway/primary/central) "cct" = ( /obj/structure/noticeboard/captain{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/wood, /area/station/command/meeting_room) @@ -7820,7 +7793,7 @@ "ccw" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "ccx" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -7999,7 +7972,8 @@ "ceO" = ( /obj/machinery/button/crematorium{ id = "crematoriumChapel"; - pixel_x = 25 + pixel_x = 25; + dir = 4 }, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -8043,7 +8017,7 @@ /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) +/area/station/ai/satellite/interior) "cfh" = ( /obj/structure/railing{ dir = 1 @@ -8225,13 +8199,11 @@ /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 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) "chQ" = ( @@ -8243,6 +8215,11 @@ }, /turf/open/floor/iron/white/side, /area/mine/living_quarters) +"chZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "cie" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/purple, @@ -8522,13 +8499,6 @@ /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, @@ -8599,7 +8569,7 @@ "cnz" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -8616,6 +8586,12 @@ }, /turf/open/floor/iron, /area/station/cargo/office) +"cnQ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "cod" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 @@ -8643,6 +8619,16 @@ /obj/effect/decal/cleanable/rubble, /turf/open/floor/iron, /area/mine/production) +"coZ" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Locker Room West" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/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) "cpe" = ( /obj/machinery/atmospherics/components/tank/air{ dir = 8 @@ -8754,7 +8740,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -8816,7 +8802,15 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) +"cqY" = ( +/obj/item/stack/ore/silver, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningdock) "crf" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/red{ @@ -8931,7 +8925,7 @@ "ctl" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "ctm" = ( /obj/structure/railing{ dir = 5 @@ -9024,6 +9018,12 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/station/commons/vacant_room/office) +"cuu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit, +/area/station/science/robotics/mechbay) "cuJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -9034,10 +9034,6 @@ /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, @@ -9064,7 +9060,7 @@ pixel_y = -8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cvj" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -9223,7 +9219,7 @@ "cxl" = ( /obj/machinery/status_display/evac/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cxp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/personal{ @@ -9257,7 +9253,7 @@ /area/station/medical/medbay/central) "cxO" = ( /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cxP" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 4 @@ -9308,7 +9304,7 @@ /area/station/medical/surgery/fore) "cyA" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -9330,10 +9326,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"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, @@ -9354,13 +9346,7 @@ /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) +/area/station/ai/satellite/interior) "czl" = ( /obj/effect/turf_decal/tile/brown/fourcorners, /obj/machinery/modular_computer/preset/cargochat/engineering, @@ -9498,7 +9484,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cAM" = ( /obj/structure/table, /obj/item/folder/white{ @@ -9583,11 +9569,8 @@ 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) +/area/station/ai/upload/chamber) "cBY" = ( /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/unexplored/rivers/deep/shoreline) @@ -9595,6 +9578,11 @@ /obj/structure/flora/tree/pine/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"cCq" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/station/command/bridge) "cCu" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -9672,7 +9660,7 @@ name = "Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "cDz" = ( @@ -9800,6 +9788,11 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/smooth_edge, /area/station/security/lockers) +"cFp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "cFr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -9813,7 +9806,7 @@ /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) +/area/station/ai/satellite/chamber) "cFZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9849,7 +9842,7 @@ /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) +/area/station/command/eva) "cGu" = ( /obj/structure/closet/crate, /turf/open/floor/plating, @@ -9871,12 +9864,6 @@ }, /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{ @@ -9931,7 +9918,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cHQ" = ( /obj/machinery/vending/wardrobe/robo_wardrobe, /obj/machinery/button/door/directional/east{ @@ -10006,6 +9993,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/smooth, /area/station/security/brig/upper) "cJb" = ( @@ -10027,9 +10015,9 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "cJi" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/station/security/warden) +/obj/structure/sign/warning/directional/south, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "cJk" = ( /obj/machinery/chem_mass_spec, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ @@ -10045,6 +10033,12 @@ "cJt" = ( /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"cJu" = ( +/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/entry) "cJw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -10406,13 +10400,6 @@ }, /turf/open/floor/iron, /area/station/science/xenobiology) -"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 @@ -10549,6 +10536,12 @@ /obj/machinery/wall_healer/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/port) +"cQr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) "cQw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/brown{ @@ -10566,6 +10559,17 @@ /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, /turf/open/floor/plating, /area/station/maintenance/fore) +"cQy" = ( +/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, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/chemistry) "cQA" = ( /obj/effect/turf_decal/trimline/neutral/warning{ dir = 8 @@ -10580,14 +10584,14 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/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) +/area/station/ai/satellite/atmos) "cQV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/siding/dark_blue, @@ -10728,7 +10732,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/barricade/wooden, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -10757,7 +10761,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Locker Room Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /turf/open/floor/plating, @@ -10817,6 +10821,16 @@ dir = 8 }, /area/station/security/brig) +"cWn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Medbay Stasis Center North"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) "cWq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/tile/green/half/contrasted{ @@ -11014,7 +11028,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11090,10 +11104,19 @@ "cZv" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "cZD" = ( /turf/open/floor/iron/checker, /area/station/maintenance/port/fore) +"cZG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/hallway/secondary/entry) "cZJ" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11330,6 +11353,18 @@ }, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"dcz" = ( +/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/effect/spawner/random/entertainment/arcade{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) "dcC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11424,10 +11459,6 @@ }, /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" @@ -11449,7 +11480,7 @@ /obj/machinery/airalarm/directional/north, /obj/structure/closet/secure_closet/personal/cabinet, /obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/commons/dorms) "ddu" = ( @@ -11513,7 +11544,7 @@ "deg" = ( /obj/structure/cable/layer3, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dei" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/vending/cigarette, @@ -11722,7 +11753,7 @@ dir = 9 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dhR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bookcase/random, @@ -11813,14 +11844,14 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/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) +/area/station/security/armory/upper) "diI" = ( /obj/machinery/mech_bay_recharge_port, /obj/item/radio/intercom/directional/south, @@ -11973,6 +12004,10 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/science/robotics/lab) +"dkt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) "dku" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11983,17 +12018,9 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "dky" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"dkK" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/openspace/icemoon/keep_below, +/area/icemoon/underground/explored) "dkT" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 1 @@ -12021,6 +12048,15 @@ /obj/effect/landmark/start/cook, /turf/open/floor/iron/kitchen/diagonal, /area/station/service/kitchen) +"dlq" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Labor Camp Security Office"; + network = list("labor") + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/mine/laborcamp/security) "dlt" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -12097,12 +12133,6 @@ /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{ @@ -12251,7 +12281,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "doM" = ( /obj/structure/table, /obj/item/paper{ @@ -12284,6 +12314,7 @@ /obj/machinery/light/directional/south, /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "dpq" = ( @@ -12367,7 +12398,7 @@ /turf/open/floor/plating, /area/station/security/checkpoint/medical) "dqR" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/structure/cable, /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 8 @@ -12752,13 +12783,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"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{ @@ -12892,6 +12916,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/maintenance/port/lesser) +"dxF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) "dxI" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/tile/yellow{ @@ -12953,7 +12986,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dzl" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, @@ -13053,16 +13086,6 @@ 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, @@ -13143,7 +13166,7 @@ network = list("aicore") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dBX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, @@ -13346,18 +13369,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/fore) -"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, @@ -13736,19 +13747,17 @@ }, /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 + pixel_y = -10 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 10 + }, +/obj/structure/sign/directions/engineering, +/turf/closed/wall, +/area/station/commons/storage/mining) "dLe" = ( /obj/structure/chair/stool/directional/west, /turf/open/floor/wood/large, @@ -13784,7 +13793,7 @@ "dLL" = ( /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "dLN" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -13842,9 +13851,7 @@ /turf/open/floor/iron/dark, /area/station/medical/morgue) "dMn" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/unexplored/rivers/deep/shoreline) "dMo" = ( @@ -13941,14 +13948,6 @@ /obj/item/wallframe/camera, /turf/open/floor/plating, /area/station/construction) -"dOa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/girder, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) "dOp" = ( /obj/structure/table/wood, /obj/item/instrument/saxophone, @@ -14037,22 +14036,12 @@ /area/mine/mechbay) "dPT" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ 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, @@ -14122,6 +14111,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/mine/laborcamp) +"dRx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/mine/eva) "dRz" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14216,6 +14210,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/bar) +"dTh" = ( +/obj/machinery/airalarm/directional/west, +/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) "dTm" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/mob_spawn/corpse/human/skeleton, @@ -14272,10 +14274,9 @@ /area/icemoon/surface/outdoors/less_spawns) "dTW" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - 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/white, /area/station/medical/treatment_center) "dUe" = ( @@ -14408,27 +14409,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/engineering/lobby) -"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) "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, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "dWn" = ( @@ -14484,7 +14470,7 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "dXh" = ( -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -3; pixel_y = 3 }, @@ -14566,7 +14552,6 @@ /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" = ( @@ -14693,7 +14678,7 @@ "dZX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eaa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14752,6 +14737,15 @@ /obj/structure/sign/departments/vault/directional/north, /turf/open/openspace/icemoon/keep_below, /area/icemoon/surface/outdoors/nospawn) +"eaO" = ( +/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, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "eaQ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small/directional/north, @@ -14765,7 +14759,8 @@ name = "Biohazard Containment Door" }, /obj/structure/noticeboard/rd{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /obj/effect/turf_decal/tile/purple/fourcorners, /obj/effect/turf_decal/delivery, @@ -14804,7 +14799,7 @@ /obj/machinery/newscaster/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ebO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -14873,8 +14868,9 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-med-passthrough" }, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/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) "ede" = ( @@ -14899,7 +14895,7 @@ /obj/machinery/ore_silo, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "edq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -14935,6 +14931,13 @@ /obj/structure/sign/warning/docking/directional/north, /turf/open/floor/engine, /area/station/science/xenobiology) +"eee" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "eei" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -14949,7 +14952,7 @@ "eeD" = ( /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "eeF" = ( /obj/item/cigbutt/cigarbutt, /obj/effect/decal/cleanable/blood/old, @@ -15049,6 +15052,13 @@ initial_gas_mix = "ICEMOON_ATMOS" }, /area/icemoon/underground/explored) +"efQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) "efR" = ( /obj/structure/ladder, /obj/structure/railing{ @@ -15077,7 +15087,7 @@ /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) +/area/station/security/armory) "egm" = ( /obj/structure/table, /obj/item/restraints/handcuffs, @@ -15101,13 +15111,7 @@ /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) +/area/station/command/vault) "egS" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15148,13 +15152,6 @@ }, /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, @@ -15163,6 +15160,13 @@ /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) +"ehn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/fitness) "ehp" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -15172,6 +15176,15 @@ /obj/structure/noticeboard/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central) +"ehB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) "ehJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -15231,6 +15244,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/security/prison/rec) +"eia" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/statue/goliath{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/mine/living_quarters) "eic" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15296,6 +15317,14 @@ /obj/item/clothing/suit/hooded/wintercoat/engineering, /turf/open/floor/iron/dark, /area/station/engineering/storage_shared) +"eiR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/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/exit/departure_lounge) "ejb" = ( /obj/structure/cable, /obj/machinery/door/airlock/security/glass{ @@ -15380,6 +15409,11 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"eki" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/range) "ekj" = ( /obj/structure/closet, /obj/effect/spawner/random/clothing/costume, @@ -15422,6 +15456,18 @@ }, /turf/open/floor/iron/white, /area/station/medical/surgery/fore) +"ekM" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + 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/commons/fitness) "ekW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15541,6 +15587,12 @@ /obj/effect/turf_decal/stripes/box, /turf/open/floor/plating, /area/station/engineering/lobby) +"eny" = ( +/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/aft) "enH" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -15555,7 +15607,7 @@ name = "Tool Storage Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -15602,7 +15654,7 @@ /obj/machinery/firealarm/directional/east, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eoL" = ( /obj/structure/table, /obj/item/taperecorder, @@ -15789,7 +15841,7 @@ "erk" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -15867,13 +15919,6 @@ }, /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) "erO" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 1 @@ -15887,12 +15932,6 @@ }, /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) -"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, @@ -15928,10 +15967,14 @@ /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) +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/medical/chem_storage) "esE" = ( /turf/open/floor/engine, /area/station/engineering/supermatter) @@ -16052,7 +16095,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eud" = ( /obj/item/food/chococoin, /obj/structure/closet/secure_closet/freezer/fridge, @@ -16098,6 +16141,13 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron, /area/station/science/xenobiology) +"euO" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "euZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16180,6 +16230,10 @@ /obj/machinery/light/floor, /turf/open/floor/iron, /area/station/security/brig/upper) +"ewP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) "ewT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16246,14 +16300,6 @@ /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 @@ -16292,15 +16338,6 @@ }, /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, @@ -16346,7 +16383,7 @@ /area/mine/eva/lower) "ezq" = ( /obj/structure/table, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/item/poster/random_official, /turf/open/floor/plating, /area/station/maintenance/port/fore) @@ -16434,7 +16471,7 @@ "eAx" = ( /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eAQ" = ( /obj/structure/rack, /obj/item/storage/box/lights/mixed{ @@ -16495,6 +16532,10 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"eBL" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/commons/fitness) "eBV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /turf/closed/wall/r_wall, @@ -16557,7 +16598,7 @@ /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "eCR" = ( -/obj/structure/no_effect_signpost{ +/obj/structure/signpost{ desc = "Now, where to go from here? That's a timeless question." }, /turf/open/misc/asteroid/snow/icemoon, @@ -16574,11 +16615,11 @@ "eDc" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/vending/wardrobe/medi_wardrobe, /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" = ( @@ -16597,7 +16638,7 @@ name = "MiniSat Teleport Access" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eDj" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -16663,6 +16704,16 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, /area/station/engineering/storage/tech) +"eEs" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Station Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/maintenance/department/cargo) "eEO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16696,13 +16747,6 @@ }, /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 @@ -16931,13 +16975,6 @@ }, /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 @@ -16948,7 +16985,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 }, -/obj/structure/sign/poster/official/here_for_your_safety/directional/north, +/obj/structure/sign/poster/official/here_for_your_safety/directional/west, /turf/open/floor/iron, /area/station/security/prison/visit) "eIk" = ( @@ -16959,9 +16996,7 @@ /turf/open/floor/wood, /area/station/service/library) "eIv" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) "eIC" = ( @@ -17040,6 +17075,15 @@ /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) +"eJO" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/mine/production) "eJU" = ( /obj/machinery/door/airlock/security{ name = "Permanent Cell 2" @@ -17224,11 +17268,11 @@ /obj/effect/turf_decal/stripes/line, /obj/item/radio/intercom/directional/west, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "eMT" = ( /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -17422,6 +17466,13 @@ /obj/structure/sign/warning/pods/directional/north, /turf/open/floor/iron/dark/textured, /area/station/hallway/secondary/entry) +"eQt" = ( +/obj/structure/chair/pew{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) "eQz" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -17466,7 +17517,7 @@ "eRh" = ( /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eRk" = ( /obj/effect/landmark/start/hangover, /obj/machinery/duct, @@ -17494,8 +17545,8 @@ /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, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "eRE" = ( @@ -17509,21 +17560,13 @@ dir = 4 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/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) "eSn" = ( /obj/structure/chair/office, /obj/effect/landmark/start/assistant, @@ -17544,12 +17587,6 @@ /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 @@ -17744,9 +17781,12 @@ /turf/open/floor/iron/dark, /area/station/security/execution/education) "eUI" = ( -/obj/machinery/space_heater, +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, /turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/area/station/medical/chem_storage) "eUK" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty{ @@ -17949,7 +17989,7 @@ c_tag = "Fitness Room North" }, /obj/structure/closet/masks, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, @@ -18033,7 +18073,7 @@ /obj/machinery/power/smes/super/full, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eYK" = ( /obj/structure/rack, /obj/item/clothing/suit/hooded/wintercoat{ @@ -18127,6 +18167,13 @@ }, /turf/open/floor/engine/xenobio, /area/station/science/xenobiology) +"eZF" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/eva) "eZK" = ( /obj/machinery/recycler{ dir = 8 @@ -18319,7 +18366,7 @@ /obj/structure/chair, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fcA" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -18438,6 +18485,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"fdK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) "fdN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -18475,7 +18529,7 @@ /turf/open/floor/plating, /area/station/maintenance/aft/greater) "fep" = ( -/obj/structure/no_effect_signpost, +/obj/structure/signpost, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) "fez" = ( @@ -18498,7 +18552,7 @@ /area/station/maintenance/department/medical/morgue) "feJ" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "feQ" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, @@ -18518,6 +18572,13 @@ }, /turf/open/floor/iron/white, /area/station/medical/pharmacy) +"ffd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/locker) "ffe" = ( /turf/closed/wall/r_wall, /area/station/maintenance/aft/lesser) @@ -18593,13 +18654,13 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fgU" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fgV" = ( /obj/structure/railing/wooden_fence{ dir = 8 @@ -18638,6 +18699,14 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/fore) +"fhF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron, +/area/station/security/prison/mess) "fhL" = ( /obj/structure/sign/warning/directional/north, /turf/open/openspace/icemoon/keep_below, @@ -18937,6 +19006,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/central) +"fly" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/large, +/area/station/commons/storage/mining) "flD" = ( /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/plating, @@ -18955,7 +19029,7 @@ "flW" = ( /obj/machinery/atmospherics/components/tank/air, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "flZ" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -19000,7 +19074,7 @@ /obj/item/stack/rods/fifty, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fmq" = ( /obj/docking_port/stationary{ dir = 4; @@ -19067,12 +19141,6 @@ /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, @@ -19122,7 +19190,7 @@ /area/station/maintenance/starboard/aft) "fpa" = ( /obj/structure/closet/wardrobe/pjs, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron, /area/station/commons/dorms) @@ -19156,6 +19224,15 @@ /obj/machinery/suit_storage_unit/atmos, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos) +"fqd" = ( +/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/cargo/office) "fqv" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19181,11 +19258,6 @@ /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, @@ -19211,29 +19283,19 @@ /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{ +/obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/area/station/medical/chem_storage) +/obj/structure/chair/sofa/left/maroon{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "frc" = ( /obj/structure/cable/multilayer/multiz, /obj/effect/decal/cleanable/dirt, @@ -19277,7 +19339,7 @@ /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) +/area/station/ai/satellite/interior) "frt" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -19389,7 +19451,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -19443,10 +19505,8 @@ /turf/open/floor/iron, /area/station/maintenance/starboard/aft) "ftY" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/flora/grass/both/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "fuc" = ( @@ -19523,13 +19583,6 @@ "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{ @@ -19543,6 +19596,15 @@ /obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron/dark, /area/station/engineering/lobby) +"fvJ" = ( +/obj/structure/chair/pew{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) "fvK" = ( /obj/structure/rack, /obj/item/storage/box/petridish, @@ -19708,7 +19770,7 @@ "fyc" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fyr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ @@ -19723,7 +19785,7 @@ /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) +/area/station/ai/satellite/chamber) "fyw" = ( /obj/machinery/telecomms/server/presets/service, /turf/open/floor/iron/dark/telecomms, @@ -19826,7 +19888,7 @@ }, /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19950,12 +20012,6 @@ 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, @@ -20011,7 +20067,7 @@ /turf/open/floor/wood/parquet, /area/station/service/bar/atrium) "fDl" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) "fDn" = ( @@ -20061,6 +20117,14 @@ }, /turf/open/floor/iron/dark/textured, /area/station/commons/dorms) +"fEi" = ( +/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/commons/fitness) "fEA" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance{ @@ -20232,7 +20296,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fHq" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -20244,10 +20308,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/maintenance/port/aft) -"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{ @@ -20524,14 +20584,6 @@ /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{ @@ -20542,7 +20594,7 @@ "fLs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "fLu" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -20720,11 +20772,6 @@ /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, @@ -20851,7 +20898,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "fQc" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 1 @@ -20879,7 +20926,7 @@ /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) +/area/station/ai/satellite/interior) "fQz" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/carpet, @@ -20898,7 +20945,7 @@ "fRb" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20940,9 +20987,7 @@ dir = 1 }, /obj/effect/mapping_helpers/burnt_floor, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "fSm" = ( @@ -20986,7 +21031,7 @@ /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) +/area/station/command/eva) "fTb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21029,13 +21074,6 @@ /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 @@ -21103,7 +21141,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Firefighting Equipment" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -21170,7 +21208,7 @@ name = "Chemical Storage" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -21196,7 +21234,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -21272,6 +21310,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"fWF" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "fWL" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -21656,7 +21698,7 @@ /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) +/area/station/security/armory/upper) "gbK" = ( /obj/structure/rack, /obj/item/clothing/suit/utility/beekeeper_suit, @@ -21792,12 +21834,6 @@ /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, @@ -21866,12 +21902,6 @@ /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) "gfb" = ( /turf/closed/wall/r_wall, /area/station/maintenance/central/greater) @@ -21898,6 +21928,11 @@ /obj/effect/turf_decal/siding/yellow, /turf/open/floor/iron, /area/station/engineering/storage) +"gfu" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) "gfw" = ( /obj/machinery/light/small/directional/west, /obj/structure/table, @@ -21933,7 +21968,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -21978,7 +22013,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ggV" = ( /obj/machinery/conveyor{ id = "gulag" @@ -21992,6 +22027,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "ghl" = ( @@ -22002,9 +22038,6 @@ /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) @@ -22034,7 +22067,7 @@ /area/station/maintenance/port/fore) "ghY" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "gib" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22069,11 +22102,6 @@ /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, @@ -22138,6 +22166,11 @@ "gjq" = ( /turf/open/openspace/icemoon/keep_below, /area/icemoon/underground/explored) +"gjt" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/morgue) "gjI" = ( /obj/effect/spawner/random/structure/tank_holder, /obj/effect/turf_decal/tile/yellow, @@ -22199,6 +22232,13 @@ "gka" = ( /turf/closed/wall/r_wall, /area/station/engineering/supermatter/room) +"gkk" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "gko" = ( /obj/machinery/conveyor{ dir = 8; @@ -22350,7 +22390,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "glS" = ( /obj/machinery/camera/directional/south{ c_tag = "MiniSat Pod Access"; @@ -22362,7 +22402,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "glX" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -22484,9 +22524,7 @@ /obj/effect/decal/cleanable/blood/tracks{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) "goa" = ( @@ -22528,21 +22566,6 @@ /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 @@ -22627,7 +22650,7 @@ "gpB" = ( /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gpM" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -22755,6 +22778,18 @@ }, /turf/open/floor/plating, /area/station/commons/dorms/laundry) +"gro" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/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, +/area/station/cargo/office) "grp" = ( /turf/open/misc/asteroid/snow/coldroom, /area/icemoon/underground/explored) @@ -22958,6 +22993,14 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/white/smooth_large, /area/station/service/kitchen) +"guM" = ( +/obj/machinery/door/airlock/mining/glass{ + id_tag = "innercargo"; + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron, +/area/station/cargo/storage) "guO" = ( /obj/item/stack/sheet/mineral/wood, /obj/effect/decal/cleanable/generic, @@ -23263,7 +23306,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gzH" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/research{ @@ -23276,17 +23319,6 @@ 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, @@ -23458,16 +23490,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/commons/storage/mining) -"gCl" = ( -/obj/structure/railing/corner/end/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "gCn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23641,11 +23663,6 @@ }, /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 @@ -23719,28 +23736,6 @@ "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, @@ -23789,12 +23784,22 @@ }, /turf/open/floor/iron/dark, /area/station/medical/storage) +"gGN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/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) "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) +/area/station/command/vault) "gHe" = ( /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/tile/blue, @@ -23905,10 +23910,6 @@ /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" @@ -23921,18 +23922,13 @@ }, /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) +"gJa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "gJs" = ( /obj/machinery/portable_atmospherics/canister, /obj/structure/disposalpipe/segment, @@ -23960,7 +23956,7 @@ /mob/living/simple_animal/bot/secbot/beepsky/armsky, /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gJK" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 4 @@ -24188,13 +24184,6 @@ 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, @@ -24238,7 +24227,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "gOi" = ( /obj/structure/rack, /obj/item/clothing/glasses/sunglasses/big{ @@ -24313,7 +24302,7 @@ /obj/structure/cable, /obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "gPC" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -24469,17 +24458,6 @@ /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 @@ -24508,7 +24486,6 @@ "gSq" = ( /obj/machinery/rnd/production/circuit_imprinter/department/science, /obj/machinery/button/door/directional/north{ - dir = 2; id = "rnd"; name = "Shutters Control Button"; req_access = list("research") @@ -24619,6 +24596,18 @@ "gTK" = ( /turf/closed/wall, /area/station/engineering/engine_smes) +"gTQ" = ( +/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) "gTW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24905,6 +24894,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/mine/laborcamp) +"gXD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/mine/eva) "gXJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25019,6 +25013,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"gYM" = ( +/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/mining_center, +/turf/open/floor/iron, +/area/mine/eva/lower) "gYT" = ( /obj/machinery/light/cold/directional/east, /obj/machinery/status_display/ai/directional/east, @@ -25394,7 +25396,7 @@ pixel_y = -24 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hfA" = ( /obj/structure/window/reinforced/spawner/directional/north{ pixel_y = 2 @@ -25428,7 +25430,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -25443,12 +25445,10 @@ /area/station/security/brig/entrance) "hho" = ( /obj/machinery/vending/cigarette, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain) "hhr" = ( @@ -25507,16 +25507,12 @@ }, /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/structure/chair/office/light{ + dir = 1 }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/textured, -/area/station/medical/chem_storage) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "hig" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25816,6 +25812,18 @@ dir = 8 }, /area/station/commons/storage/mining) +"hmA" = ( +/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, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison/visit) "hmE" = ( /obj/structure/chair, /obj/effect/turf_decal/tile/blue/half/contrasted{ @@ -25912,6 +25920,12 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"hot" = ( +/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/research) "hoz" = ( /obj/structure/fence/corner{ dir = 6 @@ -25974,7 +25988,6 @@ "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" = ( @@ -26077,7 +26090,7 @@ name = "Genetics Requests Console" }, /obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/science/genetics) "hqi" = ( @@ -26101,17 +26114,6 @@ 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, @@ -26191,7 +26193,7 @@ "hsh" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "hsn" = ( /obj/effect/landmark/start/medical_doctor, /obj/machinery/holopad, @@ -26228,6 +26230,17 @@ "hsB" = ( /turf/open/floor/iron/freezer, /area/station/commons/toilet) +"hsG" = ( +/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, +/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) "hsN" = ( /obj/structure/table, /obj/item/storage/box/firingpins, @@ -26236,7 +26249,7 @@ /obj/machinery/light/directional/east, /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "hsQ" = ( /obj/structure/tank_holder/oxygen, /turf/open/floor/plating, @@ -26510,7 +26523,7 @@ name = "Utilities Room" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "hxs" = ( @@ -26565,6 +26578,14 @@ }, /turf/open/floor/iron/dark, /area/station/service/bar) +"hyg" = ( +/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) "hyj" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -26669,7 +26690,7 @@ }, /obj/machinery/firealarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hzJ" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -26870,13 +26891,6 @@ /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 @@ -27113,12 +27127,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/security/prison/work) -"hFJ" = ( -/obj/machinery/computer/station_alert/station_only, -/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 @@ -27160,7 +27168,7 @@ /area/station/security/lockers) "hHb" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hHg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -27279,7 +27287,7 @@ /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/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -27361,6 +27369,16 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"hJA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/mine/eva) "hJD" = ( /obj/structure/ladder, /turf/open/floor/wood, @@ -27463,12 +27481,6 @@ }, /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, @@ -27476,12 +27488,6 @@ /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, @@ -27489,7 +27495,7 @@ "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) +/area/station/ai/upload/chamber) "hMg" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -27543,14 +27549,14 @@ }, /area/station/science/lab) "hMH" = ( +/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/filled/end{ +/obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 4 }, -/obj/structure/cable, -/turf/open/floor/iron/textured, -/area/station/medical/chem_storage) +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "hMJ" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -27719,16 +27725,11 @@ }, /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) +/area/station/ai/satellite/interior) "hPf" = ( /obj/structure/safe/vault, /obj/item/clothing/head/costume/bearpelt, @@ -27740,7 +27741,7 @@ /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) +/area/station/command/vault) "hPk" = ( /obj/machinery/door/airlock/security{ name = "Permabrig Chapel" @@ -27760,6 +27761,15 @@ }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) +"hPx" = ( +/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) "hPz" = ( /obj/structure/chair{ dir = 8 @@ -27796,13 +27806,6 @@ /obj/effect/turf_decal/trimline/yellow/filled/line, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) -"hPQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/large, -/area/station/commons/storage/mining) "hPT" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -27967,22 +27970,6 @@ /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) "hSm" = ( /obj/structure/table, /obj/item/paper/crumpled{ @@ -28216,19 +28203,6 @@ /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 @@ -28280,7 +28254,7 @@ "hWi" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hWl" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -28353,6 +28327,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"hXE" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/suit_storage_unit/medical, +/obj/machinery/light/small/directional/south, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "hXU" = ( /obj/machinery/newscaster/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -28363,7 +28344,7 @@ name = "Disposal Access" }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28403,9 +28384,25 @@ }, /turf/open/floor/plating, /area/station/cargo/sorting) +"hYH" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) "hYL" = ( /obj/structure/closet/lasertag/blue, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, @@ -28462,6 +28459,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"hZk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "hZo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -28473,9 +28478,7 @@ /turf/open/floor/plating, /area/station/maintenance/port/greater) "hZu" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/less_spawns) @@ -28557,6 +28560,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) +"iaC" = ( +/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/hallway/secondary/entry) "iaF" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron, @@ -28637,7 +28646,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ibm" = ( /obj/structure/cable, /obj/machinery/newscaster/directional/north, @@ -28695,7 +28704,7 @@ /obj/effect/turf_decal/tile/dark_green, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ich" = ( /obj/structure/sign/warning/electric_shock/directional/north, /turf/open/openspace/icemoon/keep_below, @@ -28710,21 +28719,6 @@ /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{ @@ -28799,7 +28793,7 @@ name = "Garden Maintenance" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -28918,7 +28912,7 @@ /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) +/area/station/ai/satellite/atmos) "ifX" = ( /obj/machinery/vending/wardrobe/cargo_wardrobe, /turf/open/floor/iron, @@ -28964,7 +28958,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 + pixel_x = 32; + dir = 4 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -29048,10 +29043,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/cold/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/textured, /area/station/engineering/storage/tech) "ihu" = ( @@ -29065,7 +29058,7 @@ /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) +/area/station/security/armory/upper) "ihB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29204,7 +29197,7 @@ "ijT" = ( /obj/structure/transit_tube/horizontal, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ijU" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29218,6 +29211,15 @@ /obj/structure/cable, /turf/open/floor/plating, /area/mine/eva/lower) +"ijW" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) "ijY" = ( /obj/structure/flora/rock/icy/style_random, /turf/open/misc/asteroid/snow/icemoon, @@ -29367,7 +29369,7 @@ /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) +/area/station/ai/satellite/atmos) "ilN" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 1 @@ -29391,6 +29393,12 @@ /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) +"imo" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) "imH" = ( /obj/structure/rack, /obj/effect/spawner/random/clothing/gloves, @@ -29490,7 +29498,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ior" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29636,7 +29644,7 @@ /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) +/area/station/ai/satellite/interior) "iqC" = ( /obj/structure/table, /obj/item/flashlight/lamp, @@ -29818,7 +29826,7 @@ "itl" = ( /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "itt" = ( /obj/machinery/door/window/brigdoor/right/directional/south{ name = "Research Director Observation"; @@ -29919,7 +29927,7 @@ "iuS" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "ivi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow, @@ -29997,6 +30005,18 @@ }, /turf/open/floor/wood, /area/station/service/library) +"ivN" = ( +/obj/effect/turf_decal/stripes/asteroid/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/mine/living_quarters) "iwa" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -30068,7 +30088,8 @@ /area/station/commons/vacant_room/office) "ixl" = ( /obj/structure/sign/plaques/kiddie/devils_tooth{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) @@ -30104,6 +30125,14 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) +"ixK" = ( +/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) "ixZ" = ( /obj/machinery/door/airlock/command/glass{ name = "Chief Engineer" @@ -30212,11 +30241,11 @@ "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/effect/mapping_helpers/airlock/unres/delayed, /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/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "izJ" = ( @@ -30250,7 +30279,7 @@ /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) +/area/station/ai/satellite/interior) "iAu" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -30303,14 +30332,6 @@ }, /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, @@ -30420,7 +30441,7 @@ "iDp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iDq" = ( /turf/closed/wall/r_wall, /area/station/security/warden) @@ -30452,6 +30473,13 @@ /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) +"iEt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) "iEA" = ( /obj/structure/table/glass, /obj/item/storage/box/gloves{ @@ -30605,7 +30633,7 @@ /area/station/science/ordnance/office) "iHp" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iHP" = ( /obj/machinery/holopad, /obj/effect/spawner/random/engineering/tracking_beacon, @@ -30700,14 +30728,6 @@ /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 @@ -30724,7 +30744,7 @@ }, /obj/effect/spawner/random/armory/rubbershot, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iJK" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -30754,7 +30774,7 @@ /area/station/hallway/primary/central) "iJO" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iJV" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -30827,7 +30847,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -30944,7 +30964,7 @@ "iMp" = ( /obj/machinery/status_display/ai/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iMu" = ( /obj/machinery/camera/directional/east{ c_tag = "Arrivals Escape Pod 1" @@ -30952,13 +30972,23 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"iMv" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers{ + pixel_y = 7 + }, +/obj/item/assembly/igniter{ + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/station/medical/chem_storage) "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) +/area/station/command/eva) "iMA" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -31041,6 +31071,12 @@ }, /turf/open/floor/iron/grimy, /area/station/commons/vacant_room/office) +"iNL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "iNQ" = ( /turf/open/floor/carpet, /area/station/maintenance/space_hut/cabin) @@ -31064,12 +31100,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"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 @@ -31121,6 +31151,21 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"iPr" = ( +/obj/machinery/door/airlock/external{ + dir = 8; + name = "Lower Medical External Access" + }, +/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, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/morgue) "iPz" = ( /obj/effect/landmark/start/medical_doctor, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -31196,18 +31241,6 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron, /area/station/cargo/miningdock) -"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, @@ -31234,6 +31267,11 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, /area/station/science/xenobiology) +"iQN" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "iQQ" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -31324,14 +31362,6 @@ /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, @@ -31390,19 +31420,24 @@ name = "Unisex Showers" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /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) +/area/station/ai/satellite/chamber) "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) +"iTb" = ( +/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) "iTr" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -31426,11 +31461,6 @@ /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) "iTP" = ( /obj/item/reagent_containers/cup/bucket, /obj/effect/turf_decal/trimline/green/filled/line, @@ -31438,6 +31468,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) +"iTR" = ( +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hop) "iTY" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/plasma, @@ -31518,7 +31551,7 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "iUT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31543,18 +31576,6 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) -"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, @@ -31673,13 +31694,6 @@ }, /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, @@ -31764,6 +31778,14 @@ /obj/structure/sink/directional/west, /turf/open/floor/iron/white, /area/station/medical/medbay/aft) +"iYt" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/plating, +/area/station/ai/satellite/maintenance) "iYy" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -31811,11 +31833,6 @@ /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, @@ -31860,6 +31877,7 @@ /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 1 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/iron/white, /area/station/medical/break_room) "iZW" = ( @@ -31886,7 +31904,7 @@ /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) +/area/station/ai/satellite/chamber) "jai" = ( /obj/structure/fence/post{ dir = 8 @@ -31922,6 +31940,24 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"jaF" = ( +/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/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/medical/chem_storage) "jaO" = ( /obj/machinery/door/airlock/atmos/glass{ name = "Turbine Access" @@ -32106,7 +32142,8 @@ dir = 1 }, /obj/structure/noticeboard/hos{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/security/brig/upper) @@ -32147,12 +32184,6 @@ /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 @@ -32324,15 +32355,6 @@ /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 @@ -32432,6 +32454,13 @@ /obj/structure/table, /turf/open/floor/iron/grimy, /area/station/security/prison/work) +"jhL" = ( +/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/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "jhQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -32470,7 +32499,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jjt" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32583,6 +32612,19 @@ }, /turf/open/floor/iron/smooth, /area/mine/mechbay) +"jld" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/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) "jle" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -32669,14 +32711,6 @@ }, /turf/open/floor/iron/cafeteria, /area/mine/laborcamp) -"jmh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) "jms" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/west, @@ -32739,7 +32773,8 @@ }, /obj/machinery/light/directional/north, /obj/structure/noticeboard/qm{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/cargo/storage) @@ -32813,7 +32848,7 @@ /obj/item/clothing/mask/gas, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jol" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -33024,11 +33059,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 @@ -33040,7 +33070,7 @@ req_one_access = list("teleporter","minisat") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jss" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33081,10 +33111,10 @@ installation = /obj/item/gun/energy/e_gun }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "jtn" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) @@ -33203,10 +33233,6 @@ /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 @@ -33281,6 +33307,19 @@ /obj/machinery/light/floor, /turf/open/floor/iron, /area/mine/production) +"jvJ" = ( +/obj/structure/sign/directions/engineering{ + pixel_y = -10 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 10 + }, +/obj/structure/sign/directions/security{ + dir = 4 + }, +/turf/closed/wall, +/area/station/commons/storage/tools) "jvL" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/hollow/reinforced/middle{ @@ -33359,11 +33398,16 @@ /area/station/security/brig/upper) "jwz" = ( /obj/structure/flora/rock/icy/style_random, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"jwC" = ( +/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) "jwF" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/iron, @@ -33409,12 +33453,7 @@ /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) +/area/station/command/vault) "jxw" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/icemoon, @@ -33536,7 +33575,7 @@ /obj/machinery/firealarm/directional/east, /obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jzH" = ( /obj/machinery/modular_computer/preset/research{ dir = 4 @@ -33546,6 +33585,19 @@ }, /turf/open/floor/iron/smooth_corner, /area/station/command/heads_quarters/rd) +"jzI" = ( +/obj/structure/cable, +/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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) "jzL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ @@ -33667,14 +33719,6 @@ }, /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/machinery/atmospherics/pipe/heat_exchanging/junction, /obj/effect/spawner/structure/window, @@ -33751,12 +33795,30 @@ dir = 4 }, /area/mine/production) +"jCW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/steam_vent, +/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) "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) +"jDf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "jDl" = ( /obj/structure/sign/warning/cold_temp/directional/north, /turf/open/floor/plating, @@ -33829,7 +33891,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jDX" = ( /obj/structure/training_machine, /obj/item/target, @@ -33900,6 +33962,14 @@ }, /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) +"jEW" = ( +/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) "jFf" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -33976,12 +34046,6 @@ /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/less_spawns) "jHe" = ( /obj/structure/table/wood, /turf/open/floor/wood/parquet, @@ -34125,16 +34189,17 @@ }, /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, +/area/station/ai/satellite/chamber) +"jJa" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Mining Storage" + }, /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) +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/commons/storage/mining) "jJe" = ( /obj/machinery/conveyor{ dir = 4; @@ -34269,7 +34334,7 @@ /turf/open/floor/iron/freezer, /area/station/science/xenobiology) "jKJ" = ( -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -34284,9 +34349,8 @@ /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) +/area/station/ai/upload/chamber) "jKN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34304,7 +34368,8 @@ /area/station/maintenance/port/greater) "jKQ" = ( /obj/structure/sign/warning/fire{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/less_spawns) @@ -34446,7 +34511,7 @@ /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) +/area/station/ai/satellite/atmos) "jMn" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ @@ -34583,7 +34648,6 @@ 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) @@ -34698,12 +34762,6 @@ /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, @@ -34732,10 +34790,24 @@ /obj/structure/sign/warning/directional/north, /turf/open/floor/engine, /area/station/engineering/supermatter) +"jQf" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/medical/treatment_center) "jQi" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/station/maintenance/aft/lesser) +"jQv" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/fitness) "jQy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -34809,11 +34881,8 @@ /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) +/area/station/ai/upload/chamber) "jRi" = ( /obj/structure/fence{ dir = 8 @@ -34842,10 +34911,6 @@ "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, @@ -34938,15 +35003,6 @@ }, /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 @@ -34967,12 +35023,6 @@ }, /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/pre_loaded, /turf/open/floor/plating, @@ -35066,7 +35116,7 @@ /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) +/area/station/ai/satellite/hallway) "jUY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/personal{ @@ -35141,6 +35191,11 @@ }, /turf/open/floor/wood/parquet, /area/station/service/bar/atrium) +"jWn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/security/prison/work) "jWq" = ( /obj/structure/fence{ dir = 4 @@ -35297,7 +35352,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jZe" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -35551,6 +35606,14 @@ }, /turf/open/floor/plating, /area/station/security/prison/visit) +"kcQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/textured, +/area/station/medical/chem_storage) "kcT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -35646,6 +35709,15 @@ }, /turf/open/floor/engine/vacuum, /area/station/engineering/atmos) +"kea" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "kei" = ( /obj/docking_port/stationary/escape_pod, /turf/open/floor/plating/snowed/icemoon, @@ -35667,13 +35739,6 @@ dir = 4 }, /area/station/security/brig/entrance) -"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 @@ -35775,7 +35840,7 @@ pixel_x = -10 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kfS" = ( /obj/machinery/atmospherics/components/tank/air/layer4{ initialize_directions = 2 @@ -35891,11 +35956,11 @@ /obj/item/crowbar/red, /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "khR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "khW" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/spawner/random/structure/crate, @@ -35998,7 +36063,7 @@ /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) +/area/station/security/armory) "kjd" = ( /obj/structure/plasticflaps{ dir = 4 @@ -36024,7 +36089,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -36109,13 +36174,13 @@ /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) +/area/station/command/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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -36141,11 +36206,6 @@ /obj/machinery/power/port_gen/pacman/pre_loaded, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"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{ @@ -36285,15 +36345,6 @@ }, /turf/open/floor/iron/white, /area/mine/laborcamp) -"kmC" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Public Mining Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/textured, -/area/station/commons/storage/mining) "kmG" = ( /obj/machinery/defibrillator_mount/directional/north, /obj/effect/turf_decal/tile/blue/full, @@ -36321,7 +36372,7 @@ /obj/machinery/door/airlock/engineering{ name = "Utilities Room" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -36578,21 +36629,17 @@ /turf/open/floor/plating, /area/mine/eva/lower) "krv" = ( -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -40 +/obj/structure/sign/directions/command{ + pixel_y = 10 }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = -32; - pixel_y = -24 +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_y = -10 }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -32; - pixel_y = -32 +/obj/structure/sign/directions/supply{ + dir = 8 }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/central) "kry" = ( /obj/structure/cable, @@ -36703,6 +36750,20 @@ "ksC" = ( /turf/open/floor/iron, /area/station/security/brig/upper) +"ksP" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/entry) "kta" = ( /turf/closed/wall, /area/station/commons/storage/mining) @@ -36731,6 +36792,15 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/aft/greater) +"kth" = ( +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "ktl" = ( /obj/machinery/holopad, /obj/structure/cable, @@ -36855,6 +36925,12 @@ }, /turf/open/floor/plating, /area/station/service/hydroponics) +"kvc" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "kvf" = ( /obj/effect/turf_decal/caution{ dir = 4 @@ -37039,11 +37115,6 @@ 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{ @@ -37113,6 +37184,21 @@ /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/storage) +"kzh" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/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) "kzv" = ( /obj/structure/bed, /obj/effect/spawner/random/bedsheet/any, @@ -37272,16 +37358,20 @@ /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ 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) +"kBy" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "kBL" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -37321,7 +37411,8 @@ /obj/machinery/firealarm/directional/west, /obj/machinery/light/small/directional/west, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/service/library) @@ -37401,7 +37492,7 @@ /area/station/construction) "kCV" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "kDa" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/structure/table, @@ -37471,6 +37562,14 @@ }, /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) +"kEa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/siding/thinplating, +/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/locker) "kEj" = ( /obj/machinery/computer/libraryconsole/bookmanagement, /obj/structure/table, @@ -37570,9 +37669,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/command/heads_quarters/hop) "kGc" = ( @@ -37687,13 +37784,6 @@ /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, @@ -37753,7 +37843,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "kIh" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -37837,6 +37927,13 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/starboard/upper) +"kJd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/heads_quarters/hop) "kJe" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance" @@ -38041,6 +38138,12 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/station/maintenance/department/chapel) +"kMX" = ( +/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/secondary/entry) "kMY" = ( /obj/effect/turf_decal/siding/yellow{ dir = 6 @@ -38234,7 +38337,7 @@ }, /obj/effect/turf_decal/tile/dark_green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kPg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38345,7 +38448,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kQE" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -38390,6 +38493,11 @@ /obj/structure/bookcase, /turf/open/floor/iron, /area/mine/laborcamp) +"kRp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) "kRw" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/atmos_control/nocontrol/incinerator{ @@ -38412,16 +38520,6 @@ /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" @@ -38465,9 +38563,9 @@ /turf/open/floor/iron, /area/mine/laborcamp/security) "kSw" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/icemoon/underground/explored) +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "kSA" = ( /obj/machinery/mining_weather_monitor/directional/east, /turf/open/floor/iron/grimy, @@ -38498,6 +38596,17 @@ }, /turf/open/floor/plating, /area/station/engineering/supermatter) +"kSR" = ( +/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, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) "kSU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -38509,6 +38618,13 @@ dir = 1 }, /area/station/service/chapel/office) +"kTy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "kTz" = ( /turf/open/floor/iron/smooth_half, /area/station/security/brig/upper) @@ -38546,7 +38662,7 @@ "kUn" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -38599,7 +38715,7 @@ /area/station/cargo/storage) "kUJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/structure/mirror/directional/west, /obj/structure/sign/poster/contraband/random/directional/south, /obj/effect/turf_decal/tile/yellow/opposingcorners, @@ -38649,14 +38765,13 @@ /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) +"kVD" = ( +/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/iron, +/area/station/cargo/storage) "kVF" = ( /obj/structure/closet/secure_closet/courtroom, /obj/item/gavelhammer, @@ -38699,6 +38814,11 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/aft) +"kVY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/cargo/miningdock) "kWh" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark/smooth_large, @@ -38804,6 +38924,13 @@ /obj/structure/sign/warning/electric_shock/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"kXm" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/landmark/mining_center, +/turf/open/floor/iron, +/area/station/cargo/storage) "kXq" = ( /obj/machinery/air_sensor/plasma_tank, /turf/open/floor/engine/plasma, @@ -38922,7 +39049,6 @@ /turf/open/floor/iron, /area/mine/laborcamp) "kYF" = ( -/obj/structure/light_construct/directional/west, /mob/living/basic/goose/vomit, /turf/open/floor/wood, /area/station/maintenance/port/aft) @@ -38948,15 +39074,6 @@ }, /turf/open/floor/iron/dark, /area/station/commons/storage/mining) -"kYS" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Public Mining Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/navigate_destination, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/textured, -/area/station/commons/storage/mining) "kZa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39009,12 +39126,6 @@ "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, @@ -39035,18 +39146,7 @@ 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) +/area/station/security/armory) "lah" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39152,6 +39252,12 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/station/command/heads_quarters/qm) +"lbj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) "lbk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -39204,6 +39310,9 @@ "lcu" = ( /turf/open/floor/iron/white, /area/station/science/explab) +"lcA" = ( +/turf/closed/wall/r_wall, +/area/station/medical/chem_storage) "lcB" = ( /obj/machinery/light/small/directional/west, /obj/structure/table/wood, @@ -39237,9 +39346,9 @@ /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/effect/mapping_helpers/airlock/unres/delayed, /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/port/greater) "ldz" = ( @@ -39271,13 +39380,6 @@ /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 @@ -39340,6 +39442,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) +"lfd" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "lfo" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -39412,15 +39521,12 @@ /turf/open/floor/iron, /area/station/command/heads_quarters/qm) "lfL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ 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, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, /area/station/medical/storage) "lfU" = ( /obj/effect/spawner/random/structure/grille, @@ -39732,12 +39838,6 @@ 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, @@ -39769,8 +39869,6 @@ }, /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 }, @@ -39789,6 +39887,9 @@ "lli" = ( /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"llm" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/eva) "lln" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -39798,11 +39899,6 @@ /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, @@ -39990,12 +40086,19 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/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) +"lon" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/eva) "loy" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted, /obj/machinery/button/door/directional/east{ @@ -40019,6 +40122,20 @@ /obj/structure/statue/snow/snowman, /turf/open/misc/asteroid/snow/standard_air, /area/station/science/cytology) +"loP" = ( +/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/workout) +"loQ" = ( +/obj/structure/table, +/obj/item/papercutter{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/heads_quarters/hop) "loT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40139,18 +40256,10 @@ /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/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lqA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -40256,6 +40365,13 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/iron/showroomfloor, /area/station/security/prison/work) +"lrO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/science/explab) "lrY" = ( /obj/machinery/space_heater, /obj/machinery/light/small/directional/east, @@ -40291,6 +40407,13 @@ "lso" = ( /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"lst" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/morgue) "lsA" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -40322,7 +40445,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "ltk" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -40332,13 +40455,14 @@ /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) +/obj/effect/turf_decal/trimline/yellow/filled/end{ + 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/textured, +/area/station/medical/chem_storage) "ltH" = ( /obj/structure/sign/warning/electric_shock/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, @@ -40355,15 +40479,6 @@ /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" @@ -40379,12 +40494,6 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/dark, /area/station/engineering/atmos/project) -"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 @@ -40443,10 +40552,6 @@ }, /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 @@ -40629,16 +40734,6 @@ /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{ @@ -40650,6 +40745,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/storage/tools) +"lxj" = ( +/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/satellite/interior) "lxu" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ dir = 4 @@ -40661,16 +40764,6 @@ /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 @@ -40691,7 +40784,7 @@ /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lyg" = ( /turf/closed/wall/r_wall, /area/station/security/brig) @@ -40716,14 +40809,12 @@ /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 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/command/gateway) "lyG" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "lyH" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, @@ -41039,18 +41130,16 @@ /area/station/engineering/lobby) "lCI" = ( /obj/effect/spawner/random/vending/snackvend, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/command/meeting_room) "lCV" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -41078,22 +41167,19 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "lDo" = ( -/obj/structure/sign/directions/medical{ +/obj/structure/sign/directions/evac{ dir = 4; - pixel_x = 32; - pixel_y = -24 + pixel_y = -10 }, -/obj/structure/sign/directions/science{ +/obj/structure/sign/directions/medical{ dir = 4; - pixel_x = 32; - pixel_y = -32 + pixel_y = 10 }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 +/obj/structure/sign/directions/security{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/maintenance/fore) "lDq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -41159,7 +41245,7 @@ req_access = list("ai_upload") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lEj" = ( /turf/open/floor/iron/dark/textured, /area/station/security/processing) @@ -41179,7 +41265,7 @@ /obj/machinery/door/airlock/research{ name = "Ordnance Launch Room" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/science/ordnance/testlab) @@ -41268,16 +41354,6 @@ /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" @@ -41332,6 +41408,9 @@ dir = 4 }, /obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "lGp" = ( @@ -41387,23 +41466,11 @@ /obj/machinery/button/door{ id = "Interrogation"; name = "Interrogation Shutters"; - pixel_x = -22 + pixel_x = -22; + dir = 8 }, /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, @@ -41522,7 +41589,7 @@ /area/mine/eva/lower) "lIW" = ( /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lJc" = ( /obj/machinery/hydroponics/soil/rich, /turf/open/floor/grass, @@ -41571,7 +41638,7 @@ "lKs" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -41620,13 +41687,20 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lLm" = ( /turf/open/floor/iron/cafeteria, /area/station/maintenance/port/aft) +"lLr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/command/meeting_room) "lLA" = ( /obj/structure/sign/warning/fire{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/openspace/icemoon, /area/icemoon/underground/explored) @@ -41649,6 +41723,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/recharge_floor, /area/mine/mechbay) +"lLZ" = ( +/obj/machinery/light_switch/directional/west, +/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) "lMa" = ( /obj/item/trash/pistachios, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -41701,7 +41783,7 @@ }, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lNi" = ( /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, @@ -41736,7 +41818,7 @@ /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) +/area/station/ai/satellite/chamber) "lNG" = ( /obj/machinery/door/airlock/security/glass{ name = "Security Office" @@ -41763,6 +41845,12 @@ /obj/structure/sign/poster/contraband/random/directional/east, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/maintenance/starboard/fore) +"lNO" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/medical/chem_storage) "lNP" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -41786,6 +41874,10 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/mix) +"lOp" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "lOr" = ( /obj/structure/railing, /obj/structure/stairs/east, @@ -41871,7 +41963,7 @@ /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) +/area/station/ai/satellite/service) "lPh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -41934,7 +42026,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lPK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42065,12 +42157,6 @@ /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 @@ -42093,7 +42179,7 @@ "lRx" = ( /obj/effect/turf_decal/tile/dark_green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lRy" = ( /obj/structure/showcase/cyborg/old{ dir = 8; @@ -42106,7 +42192,7 @@ }, /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lRD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -42171,7 +42257,7 @@ /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, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "lRZ" = ( @@ -42232,13 +42318,13 @@ 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, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/large, /area/station/medical/medbay/lobby) "lUf" = ( @@ -42285,7 +42371,7 @@ dir = 1 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lVk" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end{ dir = 1 @@ -42312,6 +42398,12 @@ "lVt" = ( /obj/machinery/firealarm/directional/west, /obj/machinery/light/floor, +/obj/machinery/button/door/directional/west{ + pixel_x = -22; + id = "xenobia10"; + name = "Xenobio Pen 10 Blast DOors"; + req_access = list("xenobiology") + }, /turf/open/floor/iron/white, /area/station/science/xenobiology) "lVu" = ( @@ -42670,7 +42762,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -42713,7 +42805,7 @@ name = "Fitness Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -42801,12 +42893,6 @@ /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" @@ -42844,7 +42930,7 @@ /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) +/area/station/command/eva) "mdX" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -42880,7 +42966,7 @@ /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) +/area/station/command/eva) "meH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42935,7 +43021,7 @@ /area/mine/eva/lower) "mfD" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "mfH" = ( /turf/closed/wall/r_wall, /area/station/security/brig/upper) @@ -43048,13 +43134,13 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "mhb" = ( /obj/effect/turf_decal/trimline/dark/warning{ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mhx" = ( /obj/effect/turf_decal/bot, /obj/effect/landmark/secequipment, @@ -43125,6 +43211,14 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/engine/n2o, /area/station/engineering/atmos) +"mjA" = ( +/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/secondary/entry) "mjH" = ( /obj/structure/table/optable, /obj/machinery/newscaster/directional/east, @@ -43172,12 +43266,6 @@ /obj/item/clothing/head/costume/fancy, /turf/open/floor/iron/dark/textured, /area/station/security/prison) -"mkn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "mku" = ( /obj/effect/spawner/random/structure/grille, /obj/effect/decal/cleanable/glass, @@ -43226,7 +43314,7 @@ /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) +/area/station/ai/satellite/chamber) "mly" = ( /obj/structure/sign/warning/electric_shock/directional/north, /turf/open/floor/iron/recharge_floor, @@ -43393,13 +43481,6 @@ /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{ @@ -43495,6 +43576,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/prison/mess) +"mpx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/science/research) "mpH" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -43508,9 +43597,6 @@ /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" = ( @@ -43619,6 +43705,12 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) +"mrW" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/cargo/office) "msb" = ( /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, @@ -43683,13 +43775,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /turf/closed/wall/r_wall, /area/station/maintenance/disposal/incinerator) -"msP" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "msT" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/machinery/atmospherics/components/binary/valve/digital/on{ @@ -43802,19 +43887,6 @@ }, /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) "muv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/directional/west, @@ -43865,7 +43937,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mvG" = ( /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ dir = 8 @@ -43899,7 +43971,7 @@ dir = 5 }, /turf/open/floor/plating/snowed/icemoon, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mwp" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 4 @@ -43921,6 +43993,12 @@ }, /turf/open/floor/plating, /area/station/medical/pharmacy) +"mwP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/gateway) "mwQ" = ( /obj/structure/tank_holder/extinguisher, /turf/open/floor/plating, @@ -43941,11 +44019,6 @@ /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{ @@ -43965,17 +44038,6 @@ /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 }, @@ -44017,7 +44079,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/open/floor/plating, @@ -44051,7 +44113,7 @@ "myP" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -44064,11 +44126,6 @@ /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, @@ -44178,19 +44235,10 @@ /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) +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/light_construct/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) "mAc" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Maintenance" @@ -44204,6 +44252,16 @@ "mAe" = ( /turf/open/floor/glass/reinforced, /area/station/security/lockers) +"mAh" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/side, +/area/mine/living_quarters) "mAn" = ( /obj/effect/spawner/random/trash, /obj/structure/grille/broken, @@ -44365,7 +44423,7 @@ /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) +/area/station/ai/satellite/chamber) "mCx" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/south, @@ -44424,6 +44482,17 @@ /obj/item/stamp/head/ce, /turf/open/floor/iron, /area/station/command/heads_quarters/ce) +"mDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness) "mDX" = ( /turf/open/floor/engine/n2, /area/station/engineering/atmos) @@ -44442,7 +44511,7 @@ /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) +/area/station/ai/satellite/hallway) "mEv" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -44470,7 +44539,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mEz" = ( /obj/structure/sign/poster/contraband/random/directional/east, /obj/effect/decal/cleanable/dirt, @@ -44481,12 +44550,6 @@ /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) @@ -44622,26 +44685,20 @@ /area/icemoon/surface/outdoors/nospawn) "mGg" = ( /obj/structure/cable, +/turf/closed/wall, +/area/station/science/xenobiology) +"mGs" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/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/firealarm/directional/south{ - pixel_x = -30 +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/door/airlock/medical/glass{ + name = "Paramedic Dispatch Room" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"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) +/area/station/medical/paramedic) "mGu" = ( /obj/machinery/rnd/server, /obj/structure/lattice/catwalk, @@ -44658,11 +44715,6 @@ /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 @@ -44696,6 +44748,13 @@ /obj/machinery/brm, /turf/open/floor/iron, /area/mine/production) +"mHn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/command/gateway) "mHq" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -44783,18 +44842,12 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"mIH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "mII" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Delivery Access" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -45065,7 +45118,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mNP" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, @@ -45105,6 +45158,17 @@ }, /turf/open/floor/iron, /area/station/cargo/office) +"mOF" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/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) "mOL" = ( /obj/machinery/airalarm/directional/south, /obj/structure/disposalpipe/segment{ @@ -45271,7 +45335,7 @@ /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) +/area/station/ai/satellite/hallway) "mRU" = ( /obj/effect/decal/cleanable/insectguts, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -45311,16 +45375,12 @@ /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) +/obj/structure/fence{ + dir = 2 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "mSY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/sign/warning/secure_area/directional/north, @@ -45378,6 +45438,11 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"mUR" = ( +/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) "mVi" = ( /obj/structure/railing{ dir = 4 @@ -45392,7 +45457,7 @@ "mVp" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mVw" = ( /obj/machinery/requests_console/directional/west{ department = "Captain's Desk"; @@ -45414,7 +45479,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -45438,12 +45503,12 @@ }, /obj/structure/cable, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /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/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "mWf" = ( @@ -45484,8 +45549,14 @@ /obj/structure/sign/warning/secure_area/directional/east, /obj/effect/turf_decal/tile/blue, /obj/machinery/light/small/directional/east, +/obj/machinery/turretid{ + control_area = "/area/station/ai/satellite/hallway"; + name = "Chamber Hallway Turret Control"; + pixel_y = -24; + req_access = list("minisat") + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mWz" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/plating, @@ -45537,6 +45608,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"mWW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/cryo) "mWY" = ( /obj/structure/chair/office, /obj/effect/turf_decal/tile/red/half/contrasted, @@ -45569,7 +45644,7 @@ /obj/structure/cable/layer3, /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mXl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/directional/east{ @@ -45605,7 +45680,7 @@ /area/station/hallway/secondary/entry) "mYh" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mYi" = ( /obj/machinery/door/airlock/medical/glass{ name = "Infirmary" @@ -45664,15 +45739,14 @@ "mYA" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/item/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "mYG" = ( /obj/effect/turf_decal/bot, /obj/structure/noticeboard/hop{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -45714,7 +45788,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron/white, /area/station/maintenance/port/fore) "mZG" = ( @@ -45748,12 +45822,6 @@ /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{ @@ -45770,17 +45838,6 @@ /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, @@ -45879,9 +45936,7 @@ "nbz" = ( /obj/structure/chair/wood, /obj/effect/mapping_helpers/no_atoms_ontop, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) "nbB" = ( @@ -45962,6 +46017,14 @@ /obj/structure/sign/warning/fire/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/less_spawns) +"ncf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/medical/chem_storage) "nch" = ( /obj/effect/turf_decal/trimline/neutral/mid_joiner{ dir = 4 @@ -45977,11 +46040,10 @@ /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) +/area/station/command/eva) "nci" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46070,13 +46132,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/command/heads_quarters/qm) -"ndl" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal) "ndv" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/machinery/light/warm/directional/north, @@ -46358,7 +46413,6 @@ /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) @@ -46375,6 +46429,14 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron/grimy, /area/station/maintenance/aft/greater) +"nhS" = ( +/obj/machinery/door/window/right/directional/north{ + name = "Bridge Delivery"; + req_access = list("command") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/maintenance/central/greater) "nhT" = ( /obj/machinery/door/airlock/external{ glass = 1; @@ -46555,6 +46617,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/vault, /area/station/security/prison/rec) +"nli" = ( +/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 = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/mine/eva) "nlp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46664,6 +46738,13 @@ /obj/effect/spawner/random/contraband/cannabis, /turf/open/floor/grass, /area/station/security/prison/garden) +"nmw" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "nmx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46718,6 +46799,13 @@ /obj/effect/landmark/navigate_destination/library, /turf/open/floor/wood, /area/station/service/library) +"nmX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/breakroom) "nnj" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -46824,11 +46912,6 @@ /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) "noT" = ( /obj/effect/spawner/random/trash/bin, /obj/effect/decal/cleanable/dirt, @@ -46837,13 +46920,6 @@ }, /turf/open/floor/plating, /area/station/commons/storage/mining) -"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, @@ -46912,7 +46988,7 @@ }, /obj/item/clothing/mask/breath, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "npx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -46920,14 +46996,6 @@ /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 @@ -47003,14 +47071,6 @@ /obj/structure/cable, /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"; @@ -47245,11 +47305,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"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 @@ -47266,9 +47321,6 @@ /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 }, @@ -47291,12 +47343,6 @@ /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, @@ -47345,14 +47391,6 @@ }, /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{ @@ -47404,9 +47442,7 @@ /turf/open/floor/iron/dark, /area/station/service/hydroponics) "nwD" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/less_spawns) "nwF" = ( @@ -47441,6 +47477,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating, /area/station/commons/storage/mining) "nxm" = ( @@ -47628,13 +47665,6 @@ }, /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 @@ -47656,7 +47686,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nzG" = ( /obj/structure/railing{ dir = 10 @@ -47726,7 +47756,8 @@ }, /obj/machinery/light/directional/north, /obj/structure/noticeboard/ce{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/engineering/main) @@ -47813,7 +47844,7 @@ name = "Common Channel" }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nBt" = ( /obj/effect/turf_decal/siding/white{ dir = 8 @@ -48125,7 +48156,7 @@ /obj/structure/cable/layer3, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nFn" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -48261,7 +48292,7 @@ }, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "nGU" = ( /obj/structure/closet/secure_closet/security/sec, /obj/machinery/airalarm/directional/north, @@ -48317,6 +48348,14 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/department/chapel) +"nHY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) "nIb" = ( /obj/structure/chair{ dir = 1 @@ -48537,9 +48576,7 @@ /turf/open/openspace, /area/station/science/research) "nLB" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) "nLD" = ( @@ -48626,11 +48663,6 @@ /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{ @@ -48646,12 +48678,15 @@ /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/pharmacy, +/obj/machinery/door/airlock/research{ + name = "Chemical Storage" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, /turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/area/station/medical/chem_storage) "nMP" = ( /obj/structure/chair/pew{ dir = 1 @@ -48666,7 +48701,8 @@ "nMT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/service/library) @@ -48734,6 +48770,18 @@ /obj/structure/railing/corner, /turf/open/floor/iron, /area/station/cargo/storage) +"nNA" = ( +/obj/structure/cable, +/obj/structure/chair{ + dir = 1 + }, +/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/plating, +/area/station/maintenance/aft/greater) "nNB" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 @@ -48744,7 +48792,7 @@ "nNM" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -48778,22 +48826,11 @@ }, /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 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -49159,7 +49196,7 @@ /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) +/area/station/ai/satellite/interior) "nSH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49248,9 +49285,7 @@ /area/station/security/checkpoint/medical) "nTX" = ( /obj/structure/flora/grass/both/style_random, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/less_spawns) "nUg" = ( @@ -49276,7 +49311,7 @@ /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) +/area/station/command/eva) "nUJ" = ( /obj/machinery/flasher/directional/east{ id = "brigentry" @@ -49334,7 +49369,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nVC" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/white, @@ -49352,6 +49387,18 @@ /obj/structure/plasticflaps/kitchen, /turf/open/floor/plating, /area/station/service/kitchen/coldroom) +"nVM" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/entertainment/deck{ + pixel_x = -2; + pixel_y = 15 + }, +/obj/effect/spawner/random/food_or_drink/snack{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/carpet/blue, +/area/station/hallway/secondary/entry) "nVR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/cafeteria{ @@ -49366,6 +49413,13 @@ /obj/item/plate, /turf/open/floor/iron/checker, /area/station/maintenance/port/fore) +"nWj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/breakroom) "nWn" = ( /obj/structure/tank_holder/extinguisher, /obj/effect/mapping_helpers/burnt_floor, @@ -49400,14 +49454,6 @@ /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) @@ -49526,6 +49572,12 @@ /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"nZw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "nZC" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -49549,14 +49601,14 @@ }, /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49852,10 +49904,6 @@ /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 @@ -49885,6 +49933,18 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) +"oev" = ( +/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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/medical/chem_storage) "oex" = ( /turf/open/openspace/icemoon/keep_below, /area/station/maintenance/department/medical/morgue) @@ -50012,12 +50072,12 @@ /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) +/area/station/command/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) +/area/station/ai/satellite/chamber) "ogL" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -50039,8 +50099,14 @@ /turf/open/floor/plating, /area/station/maintenance/department/cargo) "ohp" = ( -/turf/open/floor/glass, -/area/station/maintenance/department/medical/central) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/end, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/textured, +/area/station/medical/chem_storage) "oht" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -50099,9 +50165,10 @@ /turf/open/floor/iron, /area/mine/laborcamp) "oif" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/icemoon/underground/explored) +/obj/effect/gibspawner/human/bodypartless, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "oih" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -50129,7 +50196,7 @@ /area/station/medical/treatment_center) "oiy" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "oiz" = ( /obj/structure/urinal/directional/north, /turf/open/floor/iron/freezer, @@ -50279,7 +50346,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "okb" = ( /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, @@ -50349,6 +50416,11 @@ }, /turf/open/lava/plasma/ice_moon, /area/icemoon/underground/explored) +"okM" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "okU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -50386,12 +50458,10 @@ /turf/open/floor/wood, /area/station/maintenance/aft/greater) "olQ" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/dim/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "olR" = ( /obj/structure/rack, /obj/item/wrench, @@ -50418,6 +50488,7 @@ /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/red_alert_access, /turf/open/floor/iron/smooth, /area/station/security/processing) "omg" = ( @@ -50442,11 +50513,6 @@ "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, @@ -50470,6 +50536,12 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/vault, /area/station/security/prison/rec) +"omL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) "omP" = ( /obj/machinery/door/airlock{ name = "Cleaning Closet" @@ -50666,7 +50738,7 @@ /area/station/maintenance/starboard/upper) "opt" = ( /obj/structure/closet/athletic_mixed, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, @@ -50750,7 +50822,7 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oqc" = ( /obj/effect/turf_decal/trimline/dark_green/arrow_ccw{ dir = 4 @@ -50771,7 +50843,7 @@ }, /obj/effect/turf_decal/tile/dark_green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oqC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -50853,15 +50925,6 @@ }, /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{ @@ -50875,9 +50938,6 @@ }, /area/station/medical/chem_storage) "orG" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/table, /obj/item/assembly/igniter{ pixel_y = 4; @@ -50891,11 +50951,12 @@ /obj/effect/turf_decal/siding/dark_blue/corner{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) "orK" = ( /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "orS" = ( /obj/effect/turf_decal/stripes/asteroid/line{ dir = 10 @@ -50911,7 +50972,7 @@ "orV" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/stripes/line, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "osd" = ( @@ -50934,7 +50995,7 @@ "osm" = ( /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "osn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -50956,7 +51017,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "osI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, @@ -50979,7 +51040,7 @@ }, /obj/structure/sign/warning/cold_temp/directional/south, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "otf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51077,6 +51138,7 @@ /obj/effect/turf_decal/box/white{ color = "#52B4E9" }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/treatment_center) "ouq" = ( @@ -51098,7 +51160,7 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/effect/mapping_helpers/airlock/abandoned, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -51219,12 +51281,6 @@ /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) @@ -51261,7 +51317,7 @@ /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/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -51394,7 +51450,7 @@ /area/icemoon/underground/explored) "oyW" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "oyX" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, /obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ @@ -51417,7 +51473,7 @@ /obj/item/folder/white, /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ozk" = ( /obj/machinery/door/airlock{ name = "Unisex Showers" @@ -51608,7 +51664,7 @@ /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) +/area/station/security/armory) "oBg" = ( /obj/structure/table/wood, /obj/item/book/bible, @@ -51876,8 +51932,8 @@ "oDV" = ( /obj/structure/closet, /obj/item/radio/intercom/directional/east, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, @@ -51902,7 +51958,7 @@ /obj/structure/cable/layer3, /obj/machinery/requests_console/auto_name/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oEt" = ( /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, @@ -51999,7 +52055,7 @@ /obj/machinery/airalarm/directional/south, /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oFG" = ( /obj/machinery/door/airlock/mining/glass{ name = "Drone Bay" @@ -52367,7 +52423,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oJT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/window/reinforced/spawner/directional/south, @@ -52508,7 +52564,7 @@ /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) +/area/station/ai/satellite/interior) "oLK" = ( /obj/machinery/air_sensor/mix_tank, /turf/open/floor/engine/vacuum, @@ -52531,14 +52587,6 @@ }, /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, @@ -52563,7 +52611,7 @@ /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) +/area/station/command/eva) "oMT" = ( /turf/open/floor/iron, /area/station/command/heads_quarters/rd) @@ -52674,14 +52722,27 @@ dir = 8 }, /area/station/hallway/secondary/entry) -"oOQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"oOR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/science/research) +"oPb" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron/dark/side, -/area/mine/eva) +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/side, +/area/mine/living_quarters) "oPl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52703,6 +52764,12 @@ /obj/item/soap/nanotrasen, /turf/open/floor/iron/dark, /area/station/security/execution/education) +"oPr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side, +/area/mine/eva) "oPt" = ( /obj/structure/stairs/east, /turf/open/floor/iron/stairs/medium{ @@ -52725,7 +52792,7 @@ /area/station/maintenance/starboard/lesser) "oPI" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oPO" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -52783,6 +52850,14 @@ "oQY" = ( /turf/open/floor/iron/white, /area/station/medical/virology) +"oRf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) "oRk" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -52848,7 +52923,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oSa" = ( /obj/machinery/door/airlock/public/glass{ id_tag = "gulag3"; @@ -52923,16 +52998,6 @@ /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"; @@ -53049,6 +53114,10 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/freezer, /area/station/commons/toilet) +"oUY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) "oVt" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -53080,7 +53149,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oVG" = ( /obj/machinery/door/airlock/public/glass{ name = "Art Storage" @@ -53188,7 +53257,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oXm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/burnt_floor, @@ -53295,14 +53364,9 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "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) @@ -53315,6 +53379,15 @@ /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron, /area/station/command/teleporter) +"oYZ" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + name = "Office Shutters"; + id = "paramedic_shutters" + }, +/turf/open/floor/plating, +/area/station/medical/paramedic) "oZd" = ( /obj/structure/fence/corner{ dir = 9 @@ -53375,9 +53448,13 @@ }, /area/station/security/prison) "pao" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/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{ + dir = 4 + }, +/area/station/medical/chem_storage) "par" = ( /obj/structure/toilet/greyscale, /obj/machinery/airalarm/directional/east, @@ -53438,7 +53515,7 @@ /area/station/engineering/atmos/hfr_room) "pbs" = ( /turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "pby" = ( /obj/effect/gibspawner/human, /turf/open/misc/asteroid/snow/icemoon, @@ -53550,14 +53627,6 @@ }, /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, @@ -53650,7 +53719,7 @@ "pdK" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "pdO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /turf/open/floor/engine, @@ -53825,17 +53894,6 @@ 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, @@ -53855,7 +53913,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pgN" = ( /obj/item/organ/tail/monkey, /obj/effect/decal/cleanable/blood/splatter, @@ -53891,6 +53949,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/maintenance/port/aft) +"phn" = ( +/obj/structure/window/spawner/directional/south, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/structure/railing/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "phr" = ( /obj/machinery/door/airlock/hydroponics/glass{ name = "Hydroponics" @@ -53950,6 +54016,13 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"phM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) "phS" = ( /obj/structure/table/reinforced, /obj/item/hfr_box/body/fuel_input, @@ -53968,14 +54041,7 @@ 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) +/area/station/command/vault) "pii" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -54034,11 +54100,6 @@ 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, @@ -54109,6 +54170,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, +/obj/structure/tank_holder/extinguisher, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "pjN" = ( @@ -54149,7 +54211,6 @@ /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" = ( @@ -54185,10 +54246,18 @@ /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) +/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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/medical/chem_storage) "pkP" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/machinery/light/directional/south, @@ -54309,7 +54378,7 @@ /area/station/maintenance/department/medical/morgue) "pnj" = ( /obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/stripes/corner, /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, @@ -54372,7 +54441,7 @@ /area/station/science/explab) "pnR" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pnU" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plating, @@ -54403,7 +54472,7 @@ }, /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pou" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, @@ -54470,19 +54539,6 @@ 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 @@ -54497,7 +54553,7 @@ /turf/open/floor/iron, /area/station/cargo/drone_bay) "ppz" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 1 }, /turf/open/floor/iron/white/corner{ @@ -54590,15 +54646,6 @@ "prg" = ( /turf/open/floor/wood, /area/station/service/library) -"prh" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "prs" = ( /obj/docking_port/stationary{ dir = 8; @@ -54754,13 +54801,14 @@ /area/station/maintenance/aft/greater) "ptS" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/service/library) "ptY" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "pua" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron, @@ -54843,6 +54891,13 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"puQ" = ( +/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/smooth_large, +/area/station/science/breakroom) "puX" = ( /obj/structure/table, /obj/item/stock_parts/scanning_module{ @@ -54942,11 +54997,6 @@ /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{ @@ -55126,7 +55176,7 @@ pixel_y = -13 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pyn" = ( /obj/item/storage/photo_album/chapel, /obj/structure/noticeboard/directional/west, @@ -55177,7 +55227,7 @@ }, /obj/effect/spawner/random/armory/e_gun, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "pyI" = ( /obj/machinery/door/airlock/engineering{ name = "Port Quarter Solar Access" @@ -55217,7 +55267,7 @@ "pza" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "pzb" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, @@ -55332,14 +55382,6 @@ /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 @@ -55425,7 +55467,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/button/flasher{ id = "visitorflash"; - pixel_y = -26 + pixel_y = -26; + pixel_x = -7 + }, +/obj/machinery/button/door/directional/south{ + pixel_x = 7; + pixel_y = -26; + name = "Visitation Shutters Control"; + id = "visitation"; + req_access = list("brig") }, /turf/open/floor/iron, /area/station/security/prison/visit) @@ -55700,7 +55750,7 @@ /obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "pGG" = ( @@ -55775,13 +55825,6 @@ /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{ @@ -55880,6 +55923,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"pJE" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "pJQ" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/preopen{ @@ -56012,13 +56062,6 @@ 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 @@ -56179,6 +56222,14 @@ }, /turf/open/floor/iron/large, /area/station/commons/storage/tools) +"pNN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "pNO" = ( /obj/machinery/duct, /obj/structure/disposalpipe/segment, @@ -56195,7 +56246,7 @@ /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/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, @@ -56207,7 +56258,7 @@ "pOo" = ( /obj/machinery/airalarm/directional/north, /obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/carpet, /area/station/commons/dorms) "pOq" = ( @@ -56251,19 +56302,6 @@ dir = 4 }, /area/station/service/hydroponics) -"pPh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"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 @@ -56288,7 +56326,7 @@ "pPK" = ( /obj/structure/stairs/east, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pPN" = ( /obj/machinery/porta_turret/ai{ dir = 8 @@ -56297,13 +56335,14 @@ dir = 10 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pPO" = ( /obj/effect/turf_decal/trimline/blue/filled/warning, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, /obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/west, /turf/open/floor/iron/white, /area/station/medical/medbay/aft) "pPR" = ( @@ -56313,6 +56352,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron, /area/station/tcommsat/computer) "pPT" = ( @@ -56463,7 +56503,7 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pSy" = ( /obj/machinery/modular_computer/preset/curator{ dir = 8 @@ -56487,6 +56527,10 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, /area/station/security/prison/garden) +"pSE" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/security/prison/visit) "pSF" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -56657,7 +56701,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -56670,6 +56714,12 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron, /area/station/command/bridge) +"pVr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) "pVv" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -56855,10 +56905,6 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"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 @@ -56889,16 +56935,6 @@ 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) "pYK" = ( /obj/machinery/door/airlock/external{ glass = 1; @@ -56969,14 +57005,12 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, /area/station/engineering/storage) -"pZN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +"pZM" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 1 }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) +/turf/open/floor/iron/smooth_half, +/area/station/security/brig/upper) "pZS" = ( /obj/structure/railing{ dir = 4 @@ -57210,6 +57244,12 @@ "qck" = ( /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) +"qct" = ( +/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) "qcu" = ( /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, @@ -57282,7 +57322,7 @@ c_tag = "EVA Secure Storage" }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qdF" = ( /obj/machinery/vending/wardrobe/sec_wardrobe, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -57366,6 +57406,15 @@ dir = 4 }, /area/station/hallway/secondary/entry) +"qeK" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "qeL" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -57388,16 +57437,6 @@ }, /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) "qeW" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -57550,17 +57589,18 @@ }, /mob/living/basic/bot/cleanbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "qhi" = ( /obj/machinery/light/small/directional/east, /obj/effect/spawner/random/trash/mopbucket, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) -"qhL" = ( +"qhy" = ( +/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/xenobiology) +/area/station/science/research) "qhN" = ( /turf/open/floor/iron/white, /area/station/medical/medbay/aft) @@ -57773,12 +57813,6 @@ }, /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{ @@ -57920,13 +57954,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"qmN" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/structure/flora/grass/both/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/less_spawns) "qmU" = ( /obj/machinery/duct, /obj/structure/cable, @@ -57994,7 +58021,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qnV" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency{ @@ -58165,12 +58192,10 @@ /turf/open/floor/wood, /area/station/command/meeting_room) "qpU" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/commons/storage/mining) "qpZ" = ( @@ -58323,13 +58348,6 @@ /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) @@ -58353,6 +58371,10 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/security/prison/garden) +"qtx" = ( +/mob/living/basic/sloth/paperwork, +/turf/open/floor/iron, +/area/station/cargo/storage) "qtD" = ( /obj/structure/sign/warning/directional/south, /turf/open/misc/asteroid/snow/icemoon, @@ -58484,6 +58506,11 @@ /obj/structure/closet/secure_closet/atmospherics, /turf/open/floor/iron/dark, /area/station/engineering/atmos) +"qvS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark, +/area/mine/eva) "qvW" = ( /obj/structure/table, /obj/item/storage/belt/utility, @@ -58539,7 +58566,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qwo" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty, @@ -58691,13 +58718,6 @@ /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) @@ -58837,6 +58857,19 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"qCb" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 8 + }, +/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) "qCl" = ( /obj/effect/spawner/random/trash/mess, /obj/structure/disposalpipe/segment{ @@ -58888,11 +58921,11 @@ dir = 5 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qCU" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "qDm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -58962,7 +58995,7 @@ "qEa" = ( /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qEj" = ( /obj/structure/table/glass, /obj/item/assembly/igniter, @@ -59078,7 +59111,7 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/science/research) "qFn" = ( @@ -59109,14 +59142,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/science/explab) -"qFu" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/computer/station_alert/station_only{ - 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, @@ -59154,23 +59179,12 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ 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, @@ -59180,12 +59194,6 @@ /obj/item/gps/mining, /turf/open/floor/iron/smooth, /area/mine/eva) -"qGt" = ( -/obj/structure/sign/warning{ - pixel_y = 32 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) "qGC" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater/on, /obj/machinery/airalarm/directional/east, @@ -59252,19 +59260,6 @@ /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 @@ -59360,7 +59355,7 @@ dir = 1 }, /turf/open/floor/iron/textured_half, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qIC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ @@ -59438,21 +59433,6 @@ /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) "qJV" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = 32; - pixel_y = 24 - }, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -59469,6 +59449,15 @@ /obj/effect/mapping_helpers/airlock/access/all/security/brig, /turf/open/floor/plating, /area/station/security/prison/safe) +"qKa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "qKn" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -59498,9 +59487,7 @@ /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "qKs" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/openspace/icemoon/keep_below, /area/icemoon/underground/explored) "qKt" = ( @@ -59650,7 +59637,7 @@ "qMH" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "qML" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/brown, @@ -59708,6 +59695,7 @@ codes_txt = "delivery;dir=4"; location = "Atmospherics" }, +/obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron, /area/station/maintenance/department/medical/central) "qNn" = ( @@ -59811,7 +59799,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "qOD" = ( /obj/effect/turf_decal/caution/stand_clear, /obj/effect/turf_decal/siding/dark_blue, @@ -59823,7 +59811,7 @@ name = "EVA Shutters" }, /turf/open/floor/iron/textured_half, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qOG" = ( /obj/structure/table/wood, /obj/item/plate, @@ -59835,6 +59823,12 @@ /obj/structure/lattice/catwalk, /turf/open/openspace/icemoon, /area/station/science/server) +"qOM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/server) "qOP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -59942,11 +59936,6 @@ /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) @@ -60050,16 +60039,16 @@ /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/sign/nanotrasen{ - pixel_y = 32 +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 10 }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/less_spawns) +/obj/structure/sign/directions/security{ + dir = 1 + }, +/turf/closed/wall, +/area/station/hallway/primary/starboard) "qRE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -60319,6 +60308,9 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/commons/locker) +"qVj" = ( +/turf/closed/wall, +/area/station/medical/paramedic) "qVk" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/item/kirbyplants/random, @@ -60353,7 +60345,7 @@ }, /obj/item/hand_labeler, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "qVD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -60416,6 +60408,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/science/breakroom) +"qWv" = ( +/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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) "qWy" = ( /obj/machinery/shower/directional/west, /obj/effect/turf_decal/stripes/red/end{ @@ -60494,21 +60500,10 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"qXF" = ( -/obj/machinery/computer/station_alert/station_only, -/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) -"qXU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/service/janitor) "qYb" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ @@ -60547,7 +60542,8 @@ pixel_y = -14 }, /obj/structure/noticeboard/cmo{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron/white/textured, /area/station/medical/medbay/central) @@ -60820,6 +60816,13 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"rbB" = ( +/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) "rbC" = ( /turf/closed/wall, /area/station/command/heads_quarters/qm) @@ -60930,12 +60933,9 @@ /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain) "rdg" = ( -/obj/structure/fence/corner{ - dir = 5 - }, -/obj/structure/sign/warning/secure_area, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/less_spawns) "rdn" = ( /obj/item/radio/intercom/directional/north, /turf/open/floor/iron, @@ -61086,7 +61086,7 @@ /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) +/area/station/ai/satellite/hallway) "rfo" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61190,6 +61190,12 @@ }, /turf/open/floor/plating, /area/station/command/heads_quarters/hos) +"rhg" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) "rhv" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -61338,6 +61344,11 @@ /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"rjV" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) "rkc" = ( /obj/effect/turf_decal/siding/yellow, /obj/effect/turf_decal/siding/yellow{ @@ -61368,9 +61379,7 @@ /obj/machinery/camera/directional/north{ c_tag = "Arrivals Emergency EVA" }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/textured, /area/station/hallway/secondary/entry) "rkl" = ( @@ -61463,13 +61472,6 @@ /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, @@ -61500,7 +61502,7 @@ /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) +/area/station/ai/satellite/interior) "rlV" = ( /obj/structure/table/wood, /turf/open/floor/wood, @@ -61553,7 +61555,7 @@ name = "Observatory Access" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -61592,6 +61594,23 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron/dark/side, /area/mine/eva/lower) +"rnI" = ( +/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 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/medical/chem_storage) "rnQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -61711,13 +61730,6 @@ /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, @@ -61959,15 +61971,13 @@ pixel_x = -11; pixel_y = -2 }, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /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) +/area/station/ai/satellite/hallway) "rsM" = ( /obj/structure/bed/maint, /obj/item/toy/plush/rouny{ @@ -62119,6 +62129,15 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"ruK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/structure/railing/corner/end/flip, +/obj/effect/turf_decal/siding/thinplating/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/locker) "ruO" = ( /obj/machinery/firealarm/directional/west, /obj/structure/disposalpipe/segment{ @@ -62133,11 +62152,16 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"ruP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/wall_healer/directional/east, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "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) +/area/station/ai/satellite/chamber) "rvj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties/red, @@ -62286,7 +62310,7 @@ /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) +/area/station/ai/satellite/chamber) "ryh" = ( /obj/item/clothing/glasses/meson, /obj/item/storage/bag/ore, @@ -62402,14 +62426,6 @@ }, /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 @@ -62483,7 +62499,7 @@ "rAZ" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rBo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ @@ -62537,6 +62553,17 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"rBU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/janitor) "rBV" = ( /turf/closed/wall, /area/station/tcommsat/computer) @@ -62550,12 +62577,6 @@ "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{ @@ -62875,7 +62896,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rGl" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/brown{ @@ -62983,11 +63004,6 @@ /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, @@ -63094,16 +63110,14 @@ /obj/effect/turf_decal/tile/blue, /mob/living/basic/bot/repairbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "rLc" = ( /obj/effect/spawner/random/trash/cigbutt, /obj/effect/spawner/random/trash/cigbutt, /turf/open/floor/plating, /area/station/maintenance/port/aft) "rLl" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central) "rLo" = ( @@ -63121,6 +63135,13 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/cargo/office) +"rLC" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "rLL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63149,6 +63170,12 @@ }, /turf/open/floor/iron/dark/textured, /area/station/security/range) +"rMd" = ( +/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/medical/paramedic) "rMr" = ( /obj/structure/chair{ dir = 8 @@ -63235,9 +63262,7 @@ /area/mine/living_quarters) "rNn" = ( /obj/structure/flora/grass/brown/style_random, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "rNz" = ( @@ -63355,7 +63380,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rOF" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical, @@ -63461,7 +63486,7 @@ }, /obj/effect/mapping_helpers/requests_console/ore_update, /obj/effect/mapping_helpers/requests_console/supplies, -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4 }, /turf/open/floor/iron/checker, @@ -63501,7 +63526,7 @@ /obj/structure/rack, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rRk" = ( /obj/structure/table, /obj/item/storage/belt/utility, @@ -63615,7 +63640,7 @@ dir = 5 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rSP" = ( /obj/structure/closet/secure_closet/engineering_chief, /obj/machinery/power/apc/auto_name/directional/east, @@ -63627,14 +63652,6 @@ /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) "rTz" = ( /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) @@ -63653,6 +63670,7 @@ /area/station/commons/vacant_room/commissary) "rTV" = ( /obj/structure/gulag_beacon, +/obj/structure/sign/warning/directional/north, /turf/open/floor/iron, /area/mine/laborcamp) "rTX" = ( @@ -63698,7 +63716,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "rUo" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/green{ @@ -63731,17 +63749,16 @@ /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 +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 +/obj/machinery/computer/crew, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay Pharmacy"; + network = list("ss13","medbay") }, -/area/station/medical/chem_storage) +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "rUR" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ @@ -63777,19 +63794,6 @@ }, /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, @@ -63804,16 +63808,6 @@ }, /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 @@ -63954,9 +63948,12 @@ /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 +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 4 }, /turf/open/floor/iron/dark, /area/station/medical/storage) @@ -64018,7 +64015,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -64039,19 +64036,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"rXY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "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) +/area/station/ai/satellite/interior) "rYt" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -64117,6 +64107,14 @@ /obj/structure/table, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"rZg" = ( +/obj/structure/disposalpipe/segment, +/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, +/area/station/commons/fitness) "rZm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64201,7 +64199,8 @@ /obj/machinery/button/flasher{ id = "executionflash"; pixel_x = -24; - pixel_y = 5 + pixel_y = 5; + dir = 8 }, /turf/open/floor/plating/icemoon, /area/station/security/execution/education) @@ -64239,17 +64238,9 @@ /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) +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/less_spawns) "sbD" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -64264,13 +64255,6 @@ }, /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, @@ -64305,6 +64289,13 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/showroomfloor, /area/station/security/prison/toilet) +"scj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/command/gateway) "scl" = ( /obj/structure/bookcase/random, /turf/open/floor/carpet/red, @@ -64332,6 +64323,13 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/station/service/hydroponics/garden) +"sct" = ( +/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/service/janitor) "scu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -64456,7 +64454,7 @@ /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sen" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -64491,11 +64489,9 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/smooth_edge, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "seR" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -64520,23 +64516,16 @@ /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{ +/obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/area/station/medical/chem_storage) +/obj/structure/chair/sofa/right/maroon{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "sfr" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -64794,7 +64783,8 @@ /obj/effect/spawner/random/trash/cigbutt, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/plaques/kiddie/perfect_drone{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /turf/open/floor/iron/checker, /area/station/maintenance/port/fore) @@ -64870,7 +64860,7 @@ "skW" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -64886,7 +64876,7 @@ /obj/effect/turf_decal/stripes/line, /obj/item/radio/intercom/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "skZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -64951,6 +64941,12 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/dark, /area/station/engineering/atmos/project) +"slR" = ( +/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/dark, +/area/station/hallway/secondary/entry) "sma" = ( /obj/effect/spawner/random/trash/mopbucket, /obj/effect/decal/cleanable/dirt/dust, @@ -65039,27 +65035,38 @@ }, /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/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/upper) -"snt" = ( +"snk" = ( +/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/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) +/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/command/eva) "snw" = ( /obj/structure/table, /obj/machinery/microwave, @@ -65083,12 +65090,12 @@ /turf/open/floor/iron, /area/station/hallway/primary/starboard) "snJ" = ( -/obj/structure/fence/corner{ +/obj/structure/fence{ dir = 2 }, -/obj/structure/sign/warning/secure_area, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/unexplored/rivers/deep/shoreline) +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "snL" = ( /obj/item/pickaxe{ desc = "Someone left their pickaxe out here, must not have known about the boulder processing machines inside."; @@ -65238,7 +65245,7 @@ /obj/structure/sign/warning/secure_area/directional/north, /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "soR" = ( /obj/machinery/icecream_vat, /obj/structure/sign/clock/directional/north, @@ -65485,7 +65492,7 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ssH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -65662,6 +65669,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"suV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/girder, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "sve" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/bot, @@ -65786,15 +65800,7 @@ /area/station/maintenance/disposal/incinerator) "swF" = ( /turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"swK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/hallway/secondary/entry) +/area/station/ai/satellite/interior) "swO" = ( /obj/effect/spawner/random/maintenance/four, /obj/structure/closet/crate, @@ -65849,6 +65855,14 @@ /obj/structure/sign/warning/electric_shock/directional/west, /turf/open/floor/plating, /area/station/maintenance/solars/port/fore) +"sxL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron/dark/side, +/area/mine/eva) "sxO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/closet/secure_closet/personal{ @@ -65960,15 +65974,6 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/service/kitchen) -"syL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/hallway/secondary/entry) "syN" = ( /obj/item/storage/medkit/regular{ pixel_x = 3; @@ -66112,7 +66117,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_edge, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sBw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66264,6 +66269,12 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/science/cytology) +"sDJ" = ( +/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) "sDQ" = ( /obj/item/radio/intercom/prison/directional/north, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -66284,7 +66295,7 @@ /area/station/maintenance/department/medical/central) "sDV" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; pixel_y = -25 }, @@ -66469,7 +66480,12 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) +"sFY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/mining_center, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "sGk" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/structure/sign/poster/random/directional/south, @@ -66585,7 +66601,7 @@ name = "Utilities Room" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) @@ -66861,7 +66877,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sMy" = ( /obj/structure/flora/tree/pine/style_random, /obj/structure/flora/grass/both/style_random, @@ -66871,7 +66887,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "sMY" = ( /obj/structure/table, /obj/item/radio/off, @@ -66934,10 +66950,8 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "sNA" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/marker_beacon/burgundy, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/less_spawns) "sNF" = ( @@ -66989,7 +67003,7 @@ /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "sOE" = ( /turf/open/floor/iron, /area/station/command/heads_quarters/ce) @@ -66999,16 +67013,6 @@ /obj/structure/sign/poster/random/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"sOJ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) "sOO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -67117,21 +67121,9 @@ dir = 1 }, /area/station/engineering/atmos/hfr_room) -"sQa" = ( -/obj/machinery/door/airlock/mining/glass{ - id_tag = "innercargo"; - name = "Cargo Bay" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/storage) "sQc" = ( /obj/structure/table, -/obj/item/food/sandwich/cheese/grilled{ +/obj/item/food/sandwich/grilled_cheese{ name = "idiot sandwich"; pixel_y = 8 }, @@ -67359,7 +67351,7 @@ "sTx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "sTA" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -67551,11 +67543,9 @@ /turf/open/floor/iron/textured_half, /area/mine/production) "sWD" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/marker_beacon/jade, /obj/effect/mapping_helpers/no_atoms_ontop, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) "sWN" = ( @@ -67584,7 +67574,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ @@ -67659,19 +67649,15 @@ }, /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") +"sYm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/dark/side, -/area/mine/eva) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "sYA" = ( /obj/structure/fluff/tram_rail{ pixel_y = 17 @@ -67871,7 +67857,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -67893,12 +67879,10 @@ pixel_y = 1; pixel_x = 3 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/siding/dark_blue/corner{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) "tcD" = ( @@ -68044,7 +68028,7 @@ }, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "teE" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters{ @@ -68061,6 +68045,12 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"teH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/science/explab) "teM" = ( /obj/structure/ore_box, /obj/effect/decal/cleanable/dirt, @@ -68173,7 +68163,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tgq" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -68310,7 +68300,7 @@ /obj/structure/window/reinforced/fulltile, /obj/structure/transit_tube/horizontal, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tix" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -68379,6 +68369,11 @@ }, /turf/open/floor/iron, /area/station/engineering/storage_shared) +"tjn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/security/prison/work) "tjo" = ( /turf/open/genturf, /area/icemoon/underground/unexplored/rivers) @@ -68543,12 +68538,6 @@ /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, @@ -68760,12 +68749,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/maintenance/fore) -"tnY" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) "toi" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/east, /obj/machinery/status_display/evac/directional/south, @@ -68806,6 +68789,10 @@ }, /turf/open/floor/stone, /area/station/service/bar/atrium) +"toU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/security/prison/visit) "toW" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -68853,9 +68840,6 @@ /turf/closed/wall, /area/station/security/execution/education) "tpN" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -68866,6 +68850,7 @@ /obj/item/camera{ pixel_x = -4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain) "tpO" = ( @@ -69017,7 +69002,7 @@ /turf/open/floor/iron/dark/smooth_corner{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tsH" = ( /obj/machinery/door/airlock/security/glass{ name = "Interrogation" @@ -69067,19 +69052,9 @@ /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) +/area/station/security/armory) "tue" = ( /turf/closed/wall, /area/station/security/checkpoint/supply) @@ -69126,23 +69101,6 @@ }, /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{ @@ -69187,6 +69145,20 @@ }, /turf/open/floor/iron/dark/corner, /area/station/engineering/atmos) +"tvf" = ( +/obj/machinery/door/airlock/mining/glass{ + id_tag = "innercargo"; + name = "Cargo Bay" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/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) "tvk" = ( /obj/structure/sign/warning/docking/directional/north, /turf/open/lava/plasma/ice_moon, @@ -69300,7 +69272,7 @@ dir = 9 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "twU" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/freezer, @@ -69583,8 +69555,10 @@ /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) "tCj" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, +/obj/structure/marker_beacon/burgundy, +/obj/effect/mapping_helpers/no_atoms_ontop, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) "tCk" = ( /obj/structure/disposalpipe/segment{ @@ -69613,6 +69587,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/xenobiology) +"tCz" = ( +/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 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "tCB" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine/air, @@ -69663,6 +69648,13 @@ }, /turf/open/floor/glass/reinforced/icemoon, /area/icemoon/surface/outdoors/nospawn) +"tDi" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "tDj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69697,7 +69689,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "tDN" = ( /obj/structure/chair{ name = "Defense" @@ -69720,13 +69712,6 @@ /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, @@ -69787,7 +69772,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tFe" = ( /obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/effect/landmark/start/cook, @@ -69827,7 +69812,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/duct, @@ -69879,13 +69864,6 @@ "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" @@ -69970,17 +69948,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/mine/laborcamp) -"tHa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/wall_healer/directional/east, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "tHb" = ( /obj/effect/spawner/random/structure/musician/piano/random_piano, /obj/machinery/button/curtain{ id = "cantena_curtains"; - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/wood, /area/station/commons/lounge) @@ -70239,7 +70212,7 @@ /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, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/commons/storage/mining) @@ -70417,11 +70390,18 @@ /turf/open/floor/engine, /area/station/engineering/supermatter) "tMa" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 +/obj/structure/sign/directions/engineering{ + pixel_y = 10 }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -10 + }, +/obj/structure/sign/directions/medical{ + dir = 4 + }, +/turf/closed/wall, +/area/station/medical/pharmacy) "tMc" = ( /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, @@ -70499,14 +70479,6 @@ /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, @@ -70591,12 +70563,6 @@ /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, @@ -70670,11 +70636,26 @@ /obj/effect/turf_decal/box/white, /turf/open/floor/iron/dark/smooth_large, /area/station/engineering/storage/tech) +"tQx" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/command/eva) "tQM" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "tQS" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/landmark/start/assistant, @@ -70740,6 +70721,21 @@ /obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, /turf/open/floor/plating, /area/station/service/hydroponics) +"tRW" = ( +/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/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/command/eva) "tRX" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -70774,10 +70770,6 @@ }, /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{ name = "Deliveries"; @@ -70879,7 +70871,8 @@ /obj/machinery/photobooth/security, /obj/machinery/button/flasher{ id = "transferflash"; - pixel_y = 34 + pixel_y = 34; + dir = 1 }, /turf/open/floor/iron/smooth, /area/station/security/execution/transfer) @@ -70927,13 +70920,13 @@ "tVf" = ( /turf/closed/wall, /area/station/security/prison) -"tVn" = ( -/obj/structure/cable, +"tVk" = ( /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) +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) "tVu" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "innerbrig"; @@ -71009,7 +71002,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tWy" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -71021,7 +71014,7 @@ /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) +/area/station/ai/satellite/interior) "tWz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -71049,6 +71042,11 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/security/prison/work) +"tWT" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/morgue) "tXb" = ( /obj/structure/table, /obj/effect/spawner/random/maintenance, @@ -71056,7 +71054,6 @@ /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, @@ -71167,7 +71164,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -71231,6 +71228,11 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/science/ordnance/office) +"tZG" = ( +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) "tZM" = ( /obj/effect/spawner/random/trash/bin, /turf/open/floor/plating, @@ -71253,7 +71255,7 @@ /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) +/area/station/ai/upload/chamber) "uag" = ( /obj/structure/cable, /obj/machinery/door/firedoor, @@ -71266,15 +71268,6 @@ /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, @@ -71304,6 +71297,7 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "uau" = ( +/obj/item/radio/intercom/directional/south, /turf/open/openspace, /area/station/medical/medbay/lobby) "uaz" = ( @@ -71349,16 +71343,6 @@ /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 @@ -71378,18 +71362,6 @@ }, /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"; @@ -71432,14 +71404,6 @@ /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) "udo" = ( /obj/structure/closet{ name = "evidence closet 4" @@ -71455,7 +71419,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "udA" = ( @@ -71489,13 +71453,9 @@ /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, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /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"; @@ -71567,7 +71527,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ueV" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -71758,7 +71718,7 @@ name = "Chemistry Lab Utilities" }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -71837,7 +71797,7 @@ "ujs" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ujB" = ( /obj/structure/chair{ dir = 8 @@ -71868,14 +71828,6 @@ /obj/effect/decal/cleanable/plastic, /turf/open/floor/plating, /area/station/maintenance/port/lesser) -"uko" = ( -/obj/structure/chair/pew/left{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "ukz" = ( /obj/machinery/duct, /obj/structure/disposalpipe/segment{ @@ -71919,11 +71871,8 @@ /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) +/area/station/command/eva) "ukN" = ( /obj/structure/table, /obj/machinery/door/poddoor/shutters{ @@ -72122,6 +72071,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/blue, /area/station/security/prison/work) +"unh" = ( +/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) "uno" = ( /obj/structure/closet/secure_closet/freezer/gulag_fridge, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -72156,14 +72112,6 @@ /obj/machinery/gulag_teleporter, /turf/open/floor/iron/showroomfloor, /area/station/security/processing) -"unG" = ( -/obj/machinery/computer/station_alert/station_only{ - 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) "unH" = ( /obj/structure/table, /obj/item/analyzer{ @@ -72282,6 +72230,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/atmos) +"uoJ" = ( +/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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) "uoV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72473,20 +72436,10 @@ }, /turf/open/floor/glass/reinforced, /area/station/hallway/primary/starboard) -"urx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "urG" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) -"urJ" = ( -/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/xenobiology) "urK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72508,6 +72461,11 @@ /obj/item/hand_labeler, /turf/open/floor/iron, /area/station/service/hydroponics) +"urS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/circuit, +/area/station/ai/satellite/hallway) "usm" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/plating, @@ -72659,14 +72617,6 @@ "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{ @@ -72706,7 +72656,7 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "uwd" = ( /obj/item/chair/wood, /turf/open/floor/wood, @@ -72750,15 +72700,6 @@ }, /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 @@ -72822,16 +72763,17 @@ /area/station/science/research) "uxG" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/service"; + control_area = "/area/station/ai/satellite/service"; name = "Service Bay Turret Control"; pixel_x = 27; - req_access = list("minisat") + req_access = list("minisat"); + dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uxK" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/vacuum, @@ -72902,17 +72844,18 @@ start_active = 1 }, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/atmos"; + control_area = "/area/station/ai/satellite/atmos"; name = "Atmospherics Turret Control"; pixel_x = -27; - req_access = list("minisat") + req_access = list("minisat"); + dir = 8 }, /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) +/area/station/ai/satellite/interior) "uzd" = ( /obj/structure/rack, /obj/item/mecha_parts/mecha_equipment/hydraulic_clamp{ @@ -72991,8 +72934,8 @@ dir = 8 }, /obj/machinery/plumbing/receiver, -/obj/item/radio/intercom/directional/west, /obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/sign/warning/chem_diamond/directional/west, /turf/open/floor/plating, /area/station/medical/treatment_center) "uzM" = ( @@ -73060,7 +73003,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uBy" = ( /obj/structure/flora/grass/brown/style_random, /obj/structure/railing{ @@ -73074,6 +73017,11 @@ "uBA" = ( /turf/closed/wall, /area/station/engineering/atmos/project) +"uBJ" = ( +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) "uBP" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, @@ -73116,7 +73064,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uCk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -73149,7 +73097,14 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) +"uCC" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/departure_lounge) "uCJ" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -73569,10 +73524,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/chemistry) -"uIM" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) "uIQ" = ( /obj/structure/table, /obj/item/stack/sheet/glass, @@ -73665,6 +73616,11 @@ initial_gas_mix = "ICEMOON_ATMOS" }, /area/icemoon/underground/explored/graveyard) +"uKf" = ( +/obj/structure/chair, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/iron, +/area/station/cargo/storage) "uKj" = ( /obj/machinery/portable_atmospherics/canister/anesthetic_mix, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -73802,16 +73758,6 @@ dir = 4 }, /area/station/command/heads_quarters/rd) -"uMM" = ( -/obj/structure/cable, -/obj/machinery/camera/directional/south{ - c_tag = "Labor Camp Security Office"; - network = list("labor") - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/mine/laborcamp/security) "uMN" = ( /turf/open/openspace, /area/station/commons/storage/mining) @@ -73832,7 +73778,7 @@ /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) +/area/station/ai/satellite/hallway) "uNN" = ( /obj/effect/spawner/random/trash/bin, /obj/effect/spawner/random/maintenance, @@ -73999,7 +73945,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uPS" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -74210,7 +74156,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -74232,7 +74178,7 @@ /area/station/hallway/secondary/entry) "uTK" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -74297,15 +74243,18 @@ }, /obj/effect/mapping_helpers/airalarm/tlv_no_checks, /obj/machinery/airlock_controller/incinerator_ordmix{ - pixel_y = 27 + pixel_y = 27; + dir = 1 }, /obj/machinery/button/ignition/incinerator/ordmix{ pixel_x = -6; - pixel_y = 39 + pixel_y = 39; + dir = 1 }, /obj/machinery/button/door/incinerator_vent_ordmix{ pixel_x = 5; - pixel_y = 39 + pixel_y = 39; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/science/ordnance) @@ -74323,7 +74272,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "uVr" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74519,7 +74468,7 @@ /obj/machinery/recharge_station, /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "uZT" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -74535,15 +74484,10 @@ dir = 1 }, /area/station/hallway/secondary/entry) -"vaa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, +"uZW" = ( /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) +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "vad" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74562,14 +74506,20 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"vaj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/docking/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) "vap" = ( /obj/structure/fence{ dir = 8 @@ -74616,11 +74566,6 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/service/kitchen) -"vaM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron/dark/side, -/area/mine/eva) "vaW" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/portable_atmospherics/canister, @@ -74803,12 +74748,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/security/brig/upper) -"vdi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room) "vdr" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -74832,7 +74771,7 @@ /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) +/area/station/ai/satellite/service) "vdW" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/effect/decal/cleanable/dirt, @@ -74841,6 +74780,15 @@ }, /turf/open/floor/iron/grimy, /area/station/security/prison/work) +"veh" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) "vei" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/stripes/line{ @@ -74882,11 +74830,11 @@ /area/station/commons/storage/primary) "veU" = ( /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/trimline/yellow/filled/line{ +/obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "vfe" = ( @@ -75087,9 +75035,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/command/bridge) "viH" = ( @@ -75205,12 +75151,6 @@ /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 @@ -75252,13 +75192,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"vlE" = ( -/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/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness) "vlF" = ( /obj/structure/railing{ dir = 4 @@ -75276,10 +75209,6 @@ /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{ @@ -75311,12 +75240,6 @@ /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, @@ -75355,7 +75278,7 @@ "vmx" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -75370,16 +75293,12 @@ /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{ +"vmJ" = ( +/obj/structure/disposalpipe/segment{ 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) +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "vmK" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4 @@ -75452,18 +75371,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"vnt" = ( -/obj/machinery/computer/station_alert/station_only{ - 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" @@ -75495,16 +75402,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/white/textured_half, /area/station/service/kitchen) -"vnN" = ( +"vnE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side{ dir = 8 }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/medical/chem_storage) +/area/station/science/explab) "vnW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ @@ -75554,6 +75458,16 @@ "voK" = ( /turf/closed/wall/r_wall, /area/station/tcommsat/computer) +"voL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/mine/laborcamp/security) +"voO" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "voW" = ( /obj/structure/disposalpipe/junction{ dir = 2 @@ -75570,7 +75484,7 @@ dir = 8 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vpc" = ( /obj/structure/closet, /obj/machinery/light/small/directional/south, @@ -75706,7 +75620,7 @@ }, /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "vrc" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron, @@ -75899,6 +75813,13 @@ /obj/structure/detectiveboard/directional/west, /turf/open/floor/carpet, /area/station/security/detectives_office) +"vtT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/cryo) "vuf" = ( /obj/machinery/shower/directional/west, /obj/effect/turf_decal/stripes/red/line{ @@ -75983,7 +75904,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vvE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -76140,7 +76061,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -76267,7 +76188,7 @@ /area/station/medical/virology) "vyt" = ( /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "vyw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -76302,16 +76223,6 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"vyW" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Medbay Stasis Center North"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) "vzb" = ( /obj/structure/rack, /obj/effect/spawner/random/clothing/costume, @@ -76391,7 +76302,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vzU" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron, @@ -76412,7 +76323,7 @@ /obj/structure/table, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vAq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, @@ -76447,7 +76358,7 @@ /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) +/area/station/ai/satellite/interior) "vAH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -76485,7 +76396,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "vAY" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -76615,26 +76526,12 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"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) +/area/station/security/armory) "vDy" = ( /obj/structure/sign/poster/official/safety_report/directional/west, /obj/effect/decal/cleanable/dirt, @@ -76744,7 +76641,7 @@ /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/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -76768,7 +76665,7 @@ /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) +/area/station/ai/satellite/interior) "vGy" = ( /obj/machinery/camera/directional/east{ c_tag = "Xenobiology Pens Observation - Starboard Aft"; @@ -76788,7 +76685,7 @@ /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) +/area/station/command/vault) "vGJ" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -76809,6 +76706,21 @@ /obj/effect/landmark/start/depsec/medical, /turf/open/floor/iron/dark/smooth_large, /area/station/security/checkpoint/medical) +"vHi" = ( +/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/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/command/eva) "vHm" = ( /obj/structure/rack, /turf/open/floor/plating, @@ -76919,6 +76831,11 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance/office) +"vIl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "vIm" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -77065,6 +76982,12 @@ }, /turf/open/floor/iron/cafeteria, /area/station/hallway/secondary/entry) +"vKO" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/office) "vKR" = ( /obj/structure/railing{ dir = 4 @@ -77093,6 +77016,16 @@ }, /turf/open/floor/iron/dark/textured, /area/station/hallway/primary/central) +"vLd" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/prison/directional/north, +/turf/open/floor/iron/showroomfloor, +/area/station/security/warden) +"vLe" = ( +/turf/open/floor/circuit, +/area/station/science/robotics/mechbay) "vLj" = ( /obj/machinery/suit_storage_unit/rd, /obj/effect/turf_decal/stripes/line{ @@ -77101,6 +77034,14 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/smooth_half, /area/station/command/heads_quarters/rd) +"vLl" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Mining Storage" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured, +/area/station/commons/storage/mining) "vLY" = ( /obj/structure/railing{ dir = 8 @@ -77114,6 +77055,10 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/plating, /area/station/maintenance/department/cargo) +"vMk" = ( +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/cryo) "vMl" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -77131,7 +77076,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vMY" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -77142,17 +77087,6 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/port/lesser) -"vNe" = ( -/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 - }, -/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/hallway/secondary/entry) "vNs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77164,12 +77098,25 @@ dir = 1 }, /obj/effect/turf_decal/trimline/yellow/filled/warning, +/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/treatment_center) "vNI" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/closed/wall/r_wall, /area/station/engineering/atmos/mix) +"vNP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/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) "vNU" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -77193,7 +77140,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vOG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77203,6 +77150,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"vOL" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "vPc" = ( /obj/machinery/camera/directional/east{ c_tag = "Security Post - Engineering" @@ -77263,11 +77214,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/captain) -"vPM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/command/gateway) "vQj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77289,7 +77235,7 @@ /area/mine/production) "vQz" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; pixel_y = -24; req_access = list("minisat") @@ -77300,7 +77246,7 @@ network = list("minisat") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vQO" = ( /obj/machinery/camera/directional/east{ c_tag = "Locker Room Toilets" @@ -77319,6 +77265,19 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/cargo/lobby) +"vQW" = ( +/turf/open/floor/iron, +/area/mine/eva) +"vQY" = ( +/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) "vRn" = ( /turf/open/floor/iron/stairs/medium, /area/station/cargo/storage) @@ -77556,6 +77515,13 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/sepia, /area/station/security/prison/rec) +"vUy" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "vUI" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -77563,6 +77529,19 @@ }, /turf/open/floor/iron/grimy, /area/station/hallway/secondary/entry) +"vUS" = ( +/obj/structure/cable, +/obj/structure/chair{ + dir = 1 + }, +/obj/item/storage/fancy/cigarettes, +/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/plating, +/area/station/maintenance/aft/greater) "vUW" = ( /obj/item/stack/cable_coil{ amount = 7; @@ -77577,6 +77556,12 @@ }, /turf/open/floor/iron, /area/station/science/ordnance) +"vVf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "vVj" = ( /obj/effect/turf_decal/bot_white/left, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -77630,10 +77615,10 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "vWm" = ( @@ -77702,7 +77687,7 @@ name = "Firefighting Equipment" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) @@ -77744,12 +77729,6 @@ "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, @@ -77775,6 +77754,11 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark/textured, /area/station/commons/storage/primary) +"vYd" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/command/meeting_room) "vYg" = ( /obj/machinery/camera/directional/west{ c_tag = "Chapel West" @@ -77820,6 +77804,7 @@ "vYw" = ( /obj/machinery/light/small/directional/south, /obj/structure/sign/warning/cold_temp/directional/north, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "vYz" = ( @@ -77909,12 +77894,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/genetics) -"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) @@ -78101,22 +78080,6 @@ /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, @@ -78201,7 +78164,7 @@ "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) +/area/station/ai/upload/chamber) "wfm" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ dir = 10 @@ -78239,15 +78202,6 @@ }, /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, @@ -78426,7 +78380,7 @@ /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) +/area/station/command/eva) "whU" = ( /obj/machinery/door/window/left/directional/north{ name = "Pharmacy Desk"; @@ -78542,7 +78496,7 @@ }, /obj/effect/spawner/random/armory/shotgun, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wkl" = ( /obj/machinery/camera/directional/west{ c_tag = "Telecomms Server Room"; @@ -78558,11 +78512,17 @@ /turf/open/floor/plating, /area/station/engineering/engine_smes) "wkB" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"wkJ" = ( +/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, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/storage) "wkO" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -78646,13 +78606,6 @@ /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, @@ -78864,21 +78817,20 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ 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) +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/fireaxecabinet/jawsofrecovery/directional/south, +/obj/structure/table/glass, +/obj/item/surgicaldrill, +/obj/item/toy/figure/paramedic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "wqn" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 8 @@ -79118,6 +79070,13 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/white, /area/station/medical/surgery/fore) +"wux" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/eva) "wuA" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -79138,10 +79097,6 @@ }, /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) "wvk" = ( /obj/structure/chair/stool/directional/south, /obj/effect/decal/cleanable/blood/oil/slippery, @@ -79160,7 +79115,7 @@ /obj/machinery/door/airlock/research{ name = "Ordnance Launch Room" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -79172,6 +79127,15 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"wvx" = ( +/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, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) "wvz" = ( /obj/structure/table, /obj/item/assembly/timer{ @@ -79363,15 +79327,6 @@ /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 @@ -79558,7 +79513,7 @@ "wAZ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -79578,7 +79533,7 @@ /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) +/area/station/command/eva) "wBb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79637,6 +79592,26 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"wBD" = ( +/obj/structure/table/glass, +/obj/item/biopsy_tool{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/structure/microscope{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/iron, +/area/station/science/xenobiology) +"wBE" = ( +/obj/effect/spawner/random/trash, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison/work) "wCo" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 1 @@ -79664,13 +79639,6 @@ /obj/structure/sign/poster/official/wtf_is_co2/directional/north, /turf/open/floor/iron, /area/station/engineering/atmos/storage) -"wCV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/science/explab) "wDb" = ( /obj/machinery/requests_console/auto_name/directional/east, /obj/machinery/duct, @@ -79688,7 +79656,7 @@ /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/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -79754,6 +79722,15 @@ /obj/structure/sign/warning/directional/south, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"wEC" = ( +/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, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) "wEG" = ( /obj/structure/extinguisher_cabinet/directional/south{ pixel_x = 4 @@ -79812,7 +79789,7 @@ /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/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -79887,7 +79864,7 @@ /turf/open/floor/plating, /area/station/science/robotics/lab) "wGG" = ( -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -79947,7 +79924,7 @@ "wHe" = ( /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "wHg" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/yellow/warning{ @@ -79967,13 +79944,15 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"wHH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 +"wHT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Hallway North" + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) "wHX" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -80042,11 +80021,6 @@ /obj/effect/mapping_helpers/no_atoms_ontop, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) -"wJG" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) "wJM" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance/two, @@ -80234,15 +80208,6 @@ "wMj" = ( /turf/open/floor/plating, /area/station/maintenance/department/chapel) -"wMm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) "wMt" = ( /turf/closed/wall, /area/station/hallway/primary/central/fore) @@ -80387,13 +80352,6 @@ /obj/structure/rack, /turf/open/floor/plating, /area/station/maintenance/aft/lesser) -"wOO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "wOR" = ( /obj/item/stack/rods/ten, /turf/open/misc/asteroid/snow/icemoon, @@ -80500,6 +80458,15 @@ /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/white, /area/station/medical/storage) +"wQd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/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/dorms/laundry) "wQh" = ( /obj/structure/railing{ dir = 4 @@ -80594,13 +80561,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"wRx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) "wRG" = ( /obj/machinery/computer/operating, /obj/effect/turf_decal/tile/blue/full, @@ -80611,11 +80571,11 @@ "wRI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wRJ" = ( /obj/machinery/recharge_station, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "wRK" = ( /obj/machinery/conveyor{ dir = 8; @@ -80692,7 +80652,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "wSz" = ( /obj/structure/chair/stool/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80753,22 +80713,6 @@ "wTg" = ( /turf/closed/wall, /area/station/engineering/main) -"wTw" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 4 - }, -/area/station/ai_monitored/command/storage/eva) "wTA" = ( /obj/machinery/telecomms/bus/preset_one, /turf/open/floor/iron/dark/telecomms, @@ -80824,8 +80768,8 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/item/kirbyplants/random, /obj/structure/sign/poster/official/random/directional/north, +/obj/item/kirbyplants/random, /turf/open/floor/iron/cafeteria{ dir = 8 }, @@ -80940,16 +80884,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"wUX" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - location = "Bridge" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/central/greater) "wVd" = ( /obj/item/radio/intercom/directional/south, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -80988,13 +80922,10 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/structure/sign/departments/chemistry/directional/west, /obj/machinery/light/cold/directional/west, -/turf/open/floor/iron/dark, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, /area/station/medical/treatment_center) "wVD" = ( /obj/machinery/newscaster/directional/south, @@ -81026,6 +80957,19 @@ /obj/machinery/light/directional/west, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"wWf" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + 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) "wWo" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -81051,13 +80995,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"wWS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "wWU" = ( /obj/structure/cable, /turf/open/floor/iron/showroomfloor, @@ -81096,6 +81033,16 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/science/xenobiology) +"wYb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/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) "wYq" = ( /obj/machinery/door/airlock{ name = "Perma Overlook Closet" @@ -81108,6 +81055,11 @@ }, /turf/open/floor/vault, /area/station/security/prison/rec) +"wYt" = ( +/obj/structure/cable, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/iron, +/area/station/security/prison/work) "wYw" = ( /obj/effect/turf_decal/stripes/asteroid/line{ dir = 8 @@ -81184,7 +81136,6 @@ /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, @@ -81197,6 +81148,18 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/security/warden) +"wZT" = ( +/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) "wZV" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -81234,14 +81197,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/range) -"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) "xal" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -81323,7 +81278,7 @@ /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xaI" = ( /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) @@ -81495,7 +81450,7 @@ /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) +/area/station/ai/satellite/interior) "xdb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -81551,6 +81506,13 @@ }, /turf/open/floor/iron/dark/textured, /area/station/security/prison/rec) +"xee" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "xeg" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/misc/asteroid/snow/icemoon, @@ -81654,7 +81616,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/science/research) "xfg" = ( @@ -81670,7 +81632,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xfn" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -81700,10 +81662,6 @@ dir = 4 }, /area/station/science/explab) -"xft" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) "xfv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/yellow/filled/corner, @@ -81745,7 +81703,7 @@ "xgc" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "xgg" = ( /obj/structure/rack, /obj/item/clothing/suit/hooded/wintercoat/eva{ @@ -81760,7 +81718,7 @@ /obj/item/clothing/mask/gas, /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xgi" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -81768,22 +81726,9 @@ /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) +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "xgy" = ( /turf/open/openspace, /area/station/service/hydroponics) @@ -81833,13 +81778,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"xgI" = ( -/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) "xgK" = ( /obj/structure/table, /obj/item/transfer_valve{ @@ -81880,19 +81818,6 @@ }, /turf/open/floor/iron/smooth_large, /area/station/cargo/drone_bay) -"xgX" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/deck{ - pixel_x = -2; - pixel_y = 15 - }, -/obj/effect/spawner/random/food_or_drink/snack{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/blue, -/area/station/hallway/secondary/entry) "xhk" = ( /turf/open/floor/iron/dark, /area/station/commons/storage/primary) @@ -81938,15 +81863,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"xhD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/statue/goliath{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/mine/living_quarters) "xhK" = ( /turf/closed/wall/r_wall, /area/station/security/prison/safe) @@ -81994,6 +81910,16 @@ /obj/effect/spawner/random/food_or_drink/snack, /turf/open/floor/iron/dark, /area/station/science/breakroom) +"xiF" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/entry) "xiI" = ( /obj/docking_port/stationary/random/icemoon{ name = "lavaland"; @@ -82019,7 +81945,7 @@ "xiU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xiW" = ( /turf/open/floor/iron, /area/station/maintenance/port/fore) @@ -82028,16 +81954,14 @@ id_tag = "MedbayFoyer"; name = "Medbay" }, -/obj/effect/mapping_helpers/airlock/unres, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/full, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/large, /area/station/medical/medbay/lobby) "xjB" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) "xjC" = ( @@ -82098,6 +82022,24 @@ }, /turf/open/floor/iron/smooth, /area/station/commons/storage/mining) +"xkw" = ( +/obj/structure/sign/poster/official/twelve_gauge/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/mine/laborcamp/security) +"xkA" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "xkI" = ( /obj/machinery/door/airlock/command{ name = "Conference Room" @@ -82123,7 +82065,7 @@ /obj/machinery/teleport/station, /obj/machinery/light/small/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xlh" = ( /obj/machinery/door/window/left/directional/north{ name = "Medbay Delivery"; @@ -82337,12 +82279,6 @@ /obj/structure/sign/warning/gas_mask/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"xnM" = ( -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) "xnS" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, @@ -82369,7 +82305,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xpc" = ( /obj/effect/turf_decal/siding/yellow/corner, /obj/machinery/status_display/evac/directional/south, @@ -82383,6 +82319,13 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"xpm" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/blue, +/area/station/hallway/secondary/entry) "xpw" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -82433,7 +82376,7 @@ "xpP" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xpT" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, @@ -82533,10 +82476,6 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xqY" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) "xrb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -82706,7 +82645,7 @@ "xuA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xuB" = ( /obj/effect/turf_decal/stripes/asteroid/line, /obj/effect/turf_decal/tile/dark/half/contrasted, @@ -82892,13 +82831,7 @@ 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) +/area/station/ai/upload/chamber) "xwr" = ( /obj/structure/rack, /obj/item/clothing/suit/hooded/wintercoat/eva{ @@ -82913,7 +82846,7 @@ /obj/item/clothing/mask/gas, /obj/machinery/light/directional/west, /turf/open/floor/iron/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xws" = ( /obj/structure/table, /obj/machinery/light/small/directional/north, @@ -82927,7 +82860,7 @@ /obj/item/pen, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xwx" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -82995,11 +82928,6 @@ }, /turf/open/floor/iron/white, /area/station/maintenance/starboard/aft) -"xxz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "xxB" = ( /obj/machinery/power/solar{ id = "portsolar"; @@ -83056,6 +82984,11 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/structure/cable, +/obj/machinery/button/door/directional/east{ + id = "xenobio11"; + name = "Xenobio Pen 11 Blast DOors"; + req_access = list("xenobiology") + }, /turf/open/floor/iron, /area/station/science/xenobiology) "xyr" = ( @@ -83073,14 +83006,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 @@ -83218,14 +83143,7 @@ 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) +/area/station/ai/upload/chamber) "xAn" = ( /turf/open/floor/iron/dark, /area/station/engineering/lobby) @@ -83239,6 +83157,12 @@ }, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) +"xAO" = ( +/obj/machinery/shower/directional/east, +/obj/structure/fluff/shower_drain, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) "xAQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83350,7 +83274,7 @@ }, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xCl" = ( /turf/open/floor/iron, /area/station/science/robotics/lab) @@ -83418,6 +83342,18 @@ /obj/item/storage/pill_bottle/mannitol, /turf/open/floor/iron/white, /area/station/medical/cryo) +"xCW" = ( +/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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "xDa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/structure/sign/warning/secure_area/directional/north, @@ -83434,14 +83370,6 @@ /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 @@ -83492,6 +83420,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"xDB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/tank_holder/extinguisher, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "xDG" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ @@ -83759,6 +83696,22 @@ /obj/machinery/recharge_station, /turf/open/floor/plating, /area/mine/eva/lower) +"xHF" = ( +/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) "xHO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/plastic{ @@ -83779,7 +83732,7 @@ /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) +/area/station/command/eva) "xIk" = ( /obj/structure/chair/comfy{ dir = 4 @@ -83795,29 +83748,6 @@ /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, @@ -83945,7 +83875,8 @@ /area/station/cargo/storage) "xKk" = ( /obj/structure/sign/plaques/kiddie/gameoflife{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/command/heads_quarters/rd) @@ -84013,6 +83944,14 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark/textured_half, /area/station/security/office) +"xLa" = ( +/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) "xLq" = ( /turf/open/floor/glass/reinforced, /area/station/science/ordnance/office) @@ -84078,6 +84017,8 @@ /obj/item/mod/module/thermal_regulator, /obj/effect/turf_decal/tile/blue/full, /obj/item/mod/module/signlang_radio, +/obj/item/gun/syringe, +/obj/item/gun/syringe, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/storage) "xMh" = ( @@ -84126,7 +84067,7 @@ /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) +/area/station/command/eva) "xNh" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/line{ @@ -84180,6 +84121,11 @@ /obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/station/science/cytology) +"xNY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison/workout) "xOb" = ( /obj/effect/turf_decal/siding/white{ dir = 4 @@ -84222,13 +84168,6 @@ }, /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 @@ -84359,30 +84298,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) -"xRo" = ( -/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, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"xRv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"xQX" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Hallway South" }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/blue{ 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/corner{ + dir = 1 }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) +/area/station/hallway/secondary/entry) "xRw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84391,12 +84318,6 @@ }, /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, @@ -84432,7 +84353,7 @@ /area/station/security/brig) "xSv" = ( /obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/engineering/lobby) "xSx" = ( @@ -84471,6 +84392,11 @@ /obj/machinery/hydroponics/soil/rich, /turf/open/floor/grass, /area/station/service/hydroponics/garden) +"xTi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/mine/living_quarters) "xTp" = ( /obj/machinery/camera/directional/south{ c_tag = "Solar Maintenance - North East" @@ -84492,6 +84418,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/upper) +"xTL" = ( +/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/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) "xTN" = ( /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 4 @@ -84513,6 +84449,15 @@ /obj/structure/sign/poster/contraband/lizard/directional/south, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"xTO" = ( +/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/cryo) "xTQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84524,7 +84469,7 @@ /area/station/maintenance/aft/greater) "xTU" = ( /obj/structure/closet/wardrobe/pjs, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/machinery/light/directional/south, /turf/open/floor/iron, @@ -84638,6 +84583,11 @@ }, /turf/open/floor/wood, /area/station/maintenance/aft/greater) +"xUX" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/departure_lounge) "xVc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -84646,10 +84596,6 @@ /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{ @@ -84776,7 +84722,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "xWO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -84833,6 +84779,13 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"xXH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "xXK" = ( /obj/machinery/atmospherics/components/binary/pressure_valve/on{ name = "Waste Release" @@ -84864,6 +84817,12 @@ /obj/structure/flora/bush/leavy/style_random, /turf/open/floor/grass, /area/station/maintenance/starboard/aft) +"xYy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/stool/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) "xYA" = ( /obj/machinery/holopad, /obj/effect/decal/cleanable/dirt, @@ -84889,9 +84848,6 @@ /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 }, @@ -84958,7 +84914,7 @@ name = "Dormitories Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -85018,7 +84974,7 @@ "yaE" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "yaF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -85040,6 +84996,12 @@ "yaL" = ( /turf/closed/wall/r_wall, /area/station/engineering/engine_smes) +"yaN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "yaT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ dir = 1 @@ -85088,11 +85050,8 @@ /area/station/maintenance/port/aft) "ybv" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "yby" = ( -/obj/structure/railing{ - dir = 1 - }, /obj/structure/bed/dogbed, /obj/effect/decal/cleanable/insectguts, /turf/open/floor/plating, @@ -85119,6 +85078,16 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"ybF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/cigarette{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/iron, +/area/mine/eva) "ybI" = ( /obj/structure/bed/dogbed/ian, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -85147,24 +85116,13 @@ /area/station/maintenance/department/medical/central) "ybQ" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "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) -"yca" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/maintenance/department/cargo) "ych" = ( /obj/item/chair/wood/wings, /obj/effect/turf_decal/bot_red, @@ -85192,7 +85150,7 @@ "ycO" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -85245,15 +85203,9 @@ "ydk" = ( /obj/machinery/computer/security/mining, /obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /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, @@ -85338,11 +85290,6 @@ "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" = ( @@ -85392,7 +85339,8 @@ name = "Forbidden Knowledge" }, /obj/structure/sign/painting/library_private{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/engine/cult, /area/station/service/library) @@ -85479,7 +85427,7 @@ /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) +/area/station/ai/satellite/interior) "yhU" = ( /obj/structure/chair/stool/directional/north, /turf/open/floor/iron, @@ -85526,7 +85474,7 @@ /area/station/medical/chem_storage) "yiL" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "yiR" = ( /obj/structure/sign/warning/cold_temp/directional/west, /turf/open/floor/plating, @@ -85616,7 +85564,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_edge, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ylA" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark/textured, @@ -105620,7 +105568,7 @@ qmt pVg ubG xlA -eVa +gYM gSO uPt qmt @@ -113506,7 +113454,7 @@ nXj xRP nId myQ -sby +fQG fHg aEY oad @@ -114290,7 +114238,7 @@ xUG mpn bfg bfg -ydt +vrG sOT vkJ ots @@ -114547,7 +114495,7 @@ mXK ueP bZK gOS -iJr +fhF vSK kse dbH @@ -115051,7 +114999,7 @@ cfh wBp knq cBG -tSx +loP nAD cYv cmD @@ -115307,7 +115255,7 @@ nks cfh nLW hhr -giN +iZo ajG gSy rLX @@ -115564,7 +115512,7 @@ cPQ cfh wBp gvj -gNH +xNY xtG xtG vyw @@ -116853,7 +116801,7 @@ thA thA uPk gHF -uAE +eki jlX xad scw @@ -119912,10 +119860,10 @@ usx qUw qUw vjh -aCj +xkw cqz tmB -uMM +dlq nTO lRE tmB @@ -120172,7 +120120,7 @@ vjh fEX cqz ccx -wHH +voL fcY pdc lMC @@ -163192,7 +163140,7 @@ iDt bOz gpU oaG -hVq +ivN xuB igm scw @@ -163448,9 +163396,9 @@ scw scw bOz rja -iQx -vXH -udj +oPb +veK +xuB sJH riL riL @@ -163705,11 +163653,11 @@ gjq gjq bOz xar -chQ -veK +mAh +vXH vHS rNc -icu +qCb rOB dKk ksi @@ -163966,7 +163914,7 @@ gps veK tUC fjQ -vXC +xTi xuB jkn jkn @@ -164223,7 +164171,7 @@ gwJ tHQ bwT veK -xhD +eia xuB jKA jkn @@ -165518,8 +165466,8 @@ eJf eJf eJf eJf -oif -ebd +gFX +aZw iDt iDt thA @@ -165996,7 +165944,7 @@ thA thA thA thA -lGf +thA thA thA gjq @@ -169061,9 +169009,9 @@ thA ivF ivF xUF -uah +lLZ icU -jgx +dTh iLh bPs bPs @@ -169316,12 +169264,12 @@ iDt iDt iDt snd -kkA +yaN erw -abQ -cGS +qKa +jhL uhb -aSC +phn cQi boS ivF @@ -169573,11 +169521,11 @@ iDt iDt scw snd -ndl -lFA +hJp +eaO ivF ivF -dER +tCz fFD bYz trc @@ -170124,8 +170072,8 @@ jzy pve xjZ bGP -hqv -sYz +ybF +jld vSi kZu uOf @@ -170357,7 +170305,7 @@ wYz jIr lZe xXd -ltW +wQd nlO wEM nlO @@ -170381,8 +170329,8 @@ ilz pve hEm ksn -bgt -vaM +gXD +oPr tQW uQx uQl @@ -170900,7 +170848,7 @@ nyR pve vSi kZu -pAT +eJO lYd jCV kZu @@ -171157,7 +171105,7 @@ kUD kUD kUD nWH -dQd +aIW nWH nWH nWH @@ -171414,7 +171362,7 @@ kUD kUD kUD nWH -myR +omL cZO vMa nWH @@ -171672,8 +171620,8 @@ itf nWH nWH oha -xVf -snt +xjC +rUz rUz uTr bAX @@ -171930,7 +171878,7 @@ nWH ruD cZO nWH -yca +eEs nWH nWH nWH @@ -172187,7 +172135,7 @@ nWH nWH nWH nWH -eSA +qvS jRd sbU nWH @@ -172358,7 +172306,7 @@ iDt oqL wmP vTq -jsp +jWn wSz nFU jNf @@ -172444,7 +172392,7 @@ wpx gLF gee kVN -naq +gGN mzu gLF gLF @@ -172616,8 +172564,8 @@ oqL iFe iFe cQf -mdo -exN +wYt +wBE jNf qIo tau @@ -172873,7 +172821,7 @@ ktt tmy lvU fAV -tGs +tjn obv jNf tYE @@ -172950,9 +172898,9 @@ cUs ljz tlA kNW -ksn -mGJ -jum +hJA +vQW +dRx kDI mDq lzq @@ -173207,9 +173155,9 @@ rRn clz mml kNW -lxT -bgt -oOQ +nli +iOw +sxL vSi vSi pCM @@ -174917,8 +174865,8 @@ thA thA iDt iDt -kSw -iDt +fIt +nbB iDt iDt oqL @@ -175196,8 +175144,8 @@ eIg rIH ukN nCs -bZk -gRZ +lWb +hmA dAZ vOw eGW @@ -175452,7 +175400,7 @@ vVH ivw nKL hpF -pXZ +uHv bZk gAu sUb @@ -175710,7 +175658,7 @@ vlH lWb eDq tDY -wJG +pSE izY eND qpB @@ -175728,7 +175676,7 @@ qzV gKQ gVS bqF -bbQ +veh otw pvz oKJ @@ -175945,8 +175893,8 @@ thA thA iDt iDt -kSw -iDt +fIt +nbB iDt iDt oqL @@ -175966,8 +175914,8 @@ nXV icQ brJ ukN -pXZ -bZk +uHv +lWb kEn dAZ dKy @@ -175986,7 +175934,7 @@ gKQ awM cBT dyf -iOs +phM gKQ xAY qQN @@ -176224,7 +176172,7 @@ dSJ nKL hpF uHv -nup +toU pCp dAZ eRp @@ -178857,7 +178805,7 @@ iiX jIC twr wzY -jQy +sFY jQy nqx pls @@ -179361,7 +179309,7 @@ gjq jqT scw jqT -gjq +dky gjq gjq gjq @@ -179619,7 +179567,7 @@ jqT kBb jqT jqT -qKs +gjq gjq gjq gjq @@ -180405,7 +180353,7 @@ iDt ppY aQm iDt -tnY +iDt iDt iDt iDt @@ -183198,7 +183146,7 @@ thA thA iDt kLd -qGt +mrk scw bqq uvA @@ -186817,11 +186765,11 @@ iDt ioK jDz bja -czj -jvw -gIJ -kRH -xqY +lst +gjt +tWT +cQy +iQN nzK sLD klo @@ -187074,7 +187022,7 @@ scw btU btU btU -aoP +iPr ako hjM hjM @@ -187331,7 +187279,7 @@ btU btU vfZ btU -mSX +aTA dYr nxM dTm @@ -187588,7 +187536,7 @@ btU gCV gcU svx -tNw +wEC mdy nxM nxM @@ -193477,11 +193425,11 @@ iDt scw iDt iDt -rdg -pJm -nvB -pJm +tfX snJ +nvB +mSQ +yba thA thA thA @@ -194811,19 +194759,19 @@ xti qLY hEW jAF -fma +mGg vdr roA -fma +mGg vdr iDG -fma +mGg maO xhv -fma +mGg maO rJe -fma +mGg ffe nPI ipw @@ -195326,16 +195274,16 @@ bKI cyh wXX bKI -cyh +mGg dQZ bKI -cyh +mGg izA bKI -cyh +mGg lBZ bKI -cyh +mGg odd iER ffe @@ -195854,7 +195802,7 @@ abe lfs pjr nPI -nPI +tRd alM thA thA @@ -196110,8 +196058,8 @@ eea abe abe pjr -iTC -iWM +vaj +oxO alM thA thA @@ -196367,8 +196315,8 @@ abe abe wnB pjr -tRd -iWM +kRp +oxO alM thA thA @@ -196624,8 +196572,8 @@ ffe ffe ffe ffe -tRd -iWM +kRp +oxO alM thA thA @@ -196821,8 +196769,8 @@ qEJ qEJ kyf wBA -oTA -rpK +bWZ +epB oTA epB uFt @@ -196881,8 +196829,8 @@ oxO oxO dcd oxO -tRd -dmU +kRp +rjV alM thA thA @@ -197079,7 +197027,7 @@ mPJ puF exn hDf -qeR +fvJ bAF nJy rkz @@ -197139,7 +197087,7 @@ nPI nPI nPI nPI -geW +gfu alM thA thA @@ -197338,8 +197286,8 @@ oTA sab qYh sab -pcB -qtd +eQt +eee uJt uJt efy @@ -197595,8 +197543,8 @@ oTA oTA syh oTA -lqj -erV +vUy +rLC uJt uJt iJV @@ -197852,8 +197800,8 @@ iLt uJt uJt uJt -sHh uJt +sHh uJt uJt uJt @@ -198366,8 +198314,8 @@ iLt uJt uJt uJt -wvl uJt +wvl uJt uJt uJt @@ -198623,8 +198571,8 @@ oTA oTA epB oTA -uko -mEI +nmw +bMV uJt uJt tWJ @@ -198880,8 +198828,8 @@ oTA bAF irQ bAF -bYm -rlt +nJy +kTy uJt uJt bap @@ -225623,7 +225571,7 @@ uhx uhx uhx uhx -tMa +xgm lSu bln bln @@ -226363,8 +226311,8 @@ utC vJV fUR eYK -xAk -xaf +dxF +lfd fUR uRx jdY @@ -226620,8 +226568,8 @@ utC vJV mVE ryM -uee -dJY +cJu +kMX qlP nDJ sfr @@ -226877,8 +226825,8 @@ utC vJV fUR fUR -kVA -wWS +vNP +vVf mVE nDJ fYW @@ -227391,8 +227339,8 @@ utC vJV ydI ydI -nWM -kHl +wYb +nZw mVE nDJ wOy @@ -227648,8 +227596,8 @@ iOh kDs mVE azN -xft -lRg +iaC +slR iaU nDJ hAG @@ -227905,8 +227853,8 @@ hEI biY biY rkk -bLs -xRI +lbj +voO ydI ior wOy @@ -227936,7 +227884,7 @@ uhx uhx uhx uhx -tMa +xgm lSu lSu lSu @@ -229192,13 +229140,13 @@ lJO fjF qhO lJO -iVv +cZG qpt -fBQ -syL -vmC -syL -dwb +uBJ +oRf +wHT +oRf +jXm fsv cuc hgr @@ -229206,17 +229154,17 @@ fbF hgr xFs fsv -cmV -bXx -aui -bXx -btW -jJd -eyj -lGL -bXx -oMq -tEc +jdY +iGd +pVr +iGd +tZG +mjA +iGd +xQX +iGd +tVk +jdY iGd mKJ vKD @@ -229450,11 +229398,11 @@ hjI xmo vmx eTe -nvI -nvI -oTc -nvI -nvI +wvx +wvx +aLf +wvx +wvx fwM fsv cuc @@ -229464,15 +229412,15 @@ hgr xFs fsv dpU -swK -swK -ubx -swK -swK -swK -wfF -swK -nqD +thX +thX +kSR +thX +thX +thX +xTL +thX +ehB thX peM ddd @@ -229725,7 +229673,7 @@ fUR fUR fUR ort -ort +ksP fUR fUR fUR @@ -229982,7 +229930,7 @@ buF fUR xxI juu -juu +oUY lnp gel fUR @@ -229996,7 +229944,7 @@ tKI bCQ tKI tKI -qRv +sby tkU utC utC @@ -230496,7 +230444,7 @@ qHO fUR nyT kBU -xgX +nVM juu gNL fUR @@ -230749,11 +230697,11 @@ nAH mVE xFs jLM -fnC -vNe -piP -npy -npy +okM +xiF +dkt +xpm +xpm rFb hrh fUR @@ -230803,11 +230751,11 @@ tkU fri utC bvb -tMa +xgm bln bln bvb -qRv +sby fri tkU tkU @@ -231281,7 +231229,7 @@ tKI bCQ tKI tKI -qRv +sby vfr wNO utC @@ -231731,7 +231679,7 @@ utC fri utC bvb -tMa +xgm uei tmR uei @@ -233013,7 +232961,7 @@ txl utC tkU yfW -tMa +xgm cnx tmR tmR @@ -233110,7 +233058,7 @@ vOy utC utC bvb -tMa +xgm tmR tmR tmR @@ -233126,7 +233074,7 @@ tmR tmR bln bvb -qRv +sby utC txl txl @@ -234091,8 +234039,8 @@ qnj hul ykG gwp -hCa -pig +wpC +ffd wpc xBn jjO @@ -234301,7 +234249,7 @@ tkU tkU utC yfW -tMa +xgm uei tmR uei @@ -234348,8 +234296,8 @@ qnj aOx ykG ykG -rCj -xDh +ykG +coZ tOw tOw tOw @@ -234605,8 +234553,8 @@ qnj mxu awx koH -ubH -wml +awx +ruK bvg bJa btG @@ -234863,7 +234811,7 @@ vKq vKq vKq eTC -neq +kEa muy muy gRp @@ -236936,7 +236884,7 @@ ajw mmi wiz mmi -vmn +kXm wam wam wam @@ -236948,7 +236896,7 @@ maT qjQ eGw ewI -pPl +cqY xCL qjQ utC @@ -237187,9 +237135,9 @@ tKI tKI tKI leW -vlN -qPJ -vlN +ajw +qtx +ajw ajw wiz ajw @@ -237205,7 +237153,7 @@ bln qjQ qyT qcE -aFz +kVY hoD qjQ utC @@ -237446,7 +237394,7 @@ ikO bji ajw ajw -vlN +ajw ajw wiz ajw @@ -237701,8 +237649,8 @@ xal wLO lfG oSS -erN -xwp +wkJ +kVD baf wiz tnK @@ -237719,7 +237667,7 @@ uYc pBE pBE ojk -bVJ +jEW dSO qjQ utC @@ -237959,8 +237907,8 @@ lbg ikO ikd jhy -ppo -lxb +ajw +kzh eWV kXr xaF @@ -237976,13 +237924,13 @@ szU eVn pBE ePB -hxE +mUR xtr qjQ utC utC pRj -csE +mzZ kSD csE uwd @@ -238216,8 +238164,8 @@ ndk rbC kXr qDn -ttT -sQa +guM +tvf qDn kXr kXr @@ -238233,7 +238181,7 @@ jFJ lLE pBE qjQ -rVe +wZT qjQ qjQ utC @@ -238473,8 +238421,8 @@ tKI tKI kaw vkF -rTt -sOJ +vKO +gro cnB bvr mAN @@ -238490,7 +238438,7 @@ byn wBy pBE qdC -jBf +xLa dhY qjQ xXk @@ -238730,8 +238678,8 @@ pdf tKI iUM ssc -cXl -wRx +mrW +fqd sdW kXA kXA @@ -238739,7 +238687,7 @@ oDt kRU lMd kXr -hLY +uKf ceo pBE fNc @@ -238747,7 +238695,7 @@ gSf cYK pBE cZa -hxE +mUR xUS unP utC @@ -239004,7 +238952,7 @@ uYc pBE pBE iVA -hxE +mUR aCh unP utC @@ -239259,9 +239207,9 @@ yeh hxE hxE vQj -fvx -hxE -hxE +qct +mUR +mUR xFb unP utC @@ -239735,7 +239683,7 @@ mQh xKb djF xMW -apI +scj tOi kkO fNK @@ -239992,8 +239940,8 @@ vVj dRD jFf uOj -bgF -vPM +mHn +mwP esI cVz ons @@ -240211,8 +240159,8 @@ bln bln bln bln -nMR -mSQ +oif +umh tGr tGr lSu @@ -240250,7 +240198,7 @@ vwQ wMc ygv toW -kyi +bXa aNq jsF ons @@ -240726,8 +240674,8 @@ bln ntK bln bln -xPF -bln +jSf +xgm bln bln lSu @@ -241026,7 +240974,7 @@ biY ede iKj bPp -bXm +jvJ lnc lnc lnc @@ -241240,15 +241188,15 @@ tGr tGr tGr tGr -mSQ -bln +umh +kSw bln bln rwt lBD ntK -bln -tCj +cJi +xAs xAs xAs xAs @@ -241282,7 +241230,7 @@ vBi lJO dnq iuv -xgm +dnq dnq dnq dnq @@ -241813,7 +241761,7 @@ srw jOy ljp gHe -sni +bmv bep qrJ uLC @@ -241884,7 +241832,7 @@ utC tkU utC liV -jHb +xEn vOy utC utC @@ -242019,7 +241967,7 @@ ooL tDg tDg oFI -oEB +tCj sgW akQ lSu @@ -242070,7 +242018,7 @@ dxK gfb gfb gfb -pYB +qeK gfb gfb vtg @@ -242276,7 +242224,7 @@ feJ feJ kyy kyy -cJi +iDq abb oFI oEB @@ -242323,11 +242271,11 @@ xax oyp phf sEl -qRs -jST -wUX -odN -iZq +wzk +nhS +amD +aax +hll dpH gfb mYG @@ -242557,13 +242505,13 @@ skZ bWn nch xMX -xIz +snk bIc bIc bIc -wdI -yaE -yaE +vHi +llm +llm mvw aTH eJe @@ -242580,7 +242528,7 @@ wzk wzk wzk wzk -pgw +vQY iYb iYb msb @@ -242599,7 +242547,7 @@ cRF dnq pRj pRj -dOa +suV pRj pRj pRj @@ -242813,14 +242761,14 @@ krQ gYp bWn iUO -egL +lon ssF pSu fgQ pSu pSu -tlo -kZC +wux +eZF tgn igQ euZ @@ -242837,7 +242785,7 @@ xVq lnk pNs pNs -oyb +ktU mqD iYb dkb @@ -242912,7 +242860,7 @@ utC fri tkU liV -qRv +sby tkU utC utC @@ -243071,11 +243019,11 @@ thI bWn tsz xMX -hSl +tRW ueS ueS ueS -wTw +tQx yaE rAZ qOD @@ -243094,7 +243042,7 @@ fbw hue hBZ eYT -vdi +lLr oMP iYb txI @@ -243103,7 +243051,7 @@ iYb sbi jWP ool -jRC +iTR cgC jaq vvT @@ -243324,7 +243272,7 @@ bZx bZx gYm krQ -dky +gYp bWn ylz xMX @@ -243351,7 +243299,7 @@ cct hue xit wfK -fHK +vYd qpS iYb iYb @@ -243360,8 +243308,8 @@ iYb kFW ybI nnR -tuz -eRZ +xHF +loQ qpZ rAA cpm @@ -243608,7 +243556,7 @@ dhj kiL tOF tOF -ktU +oyb wzk wzk sKz @@ -243617,8 +243565,8 @@ jfc vYm qBt xMQ -jRC -nvs +iTR +kJd hPz shc cpm @@ -243647,7 +243595,7 @@ rHQ wFX rBV kJV -cOa +rBV omG tvW scx @@ -243941,7 +243889,7 @@ gka gka aao liV -qRv +sby utC utC txl @@ -244076,7 +244024,7 @@ feJ uGr uGr iDq -jBr +vLd lAL ejc iDq @@ -244399,9 +244347,9 @@ dnq nlv uMN uMN -msP -hPQ -cEr +cnQ +fly +cFp aQO fFv kta @@ -244656,9 +244604,9 @@ nBl kta aHR cPi -gCl +kth jpH -mkn +xXH qnw sEn kta @@ -244882,7 +244830,7 @@ ljx nxW utR tmQ -qXF +cCq dMX gER nOH @@ -244913,9 +244861,9 @@ dnq kta ihh ryh -rXY +cnQ wzY -mIH +xee bqi aQO kta @@ -244969,7 +244917,7 @@ rQf gka tkU liV -jHb +xEn utC utC txl @@ -245132,7 +245080,7 @@ wEb sIZ pfe pfe -jII +krv mxM qLt uom @@ -245167,12 +245115,12 @@ hcL isx iuv dnq +dKW kta kta -kta -kYS +vLl nlv -kmC +jJa kta kta kta @@ -245196,7 +245144,7 @@ xtQ hIH kCn mNY -hFJ +sDJ tMD ehJ fMt @@ -245423,13 +245371,13 @@ fwf hcL isx nlT -krv +dnq hyc fdy fdy -pPh cLN -xxz +cLN +eny fdy pvg nQW @@ -245622,8 +245570,8 @@ fwh ijU bqG lbk -fqH -sbN +aFy +pZM lbk oAh oAh @@ -246160,7 +246108,7 @@ skl skl skl skl -skl +lDo pDt tsk wLX @@ -246226,7 +246174,7 @@ vkz aom pcg deD -unG +bzT qnC isX eBI @@ -246901,7 +246849,7 @@ xmO ubE bUx iQj -aOS +uZW rud cAC mWM @@ -247158,7 +247106,7 @@ xmO deY bUx kdT -tHa +ruP syN cAC mWM @@ -247479,9 +247427,9 @@ fZg mhQ pzb iuv -prh -qFX -lke +mOF +aBE +sct laM lIQ cvS @@ -247539,7 +247487,7 @@ gka gka aao liV -qRv +sby utC utC txl @@ -247738,10 +247686,10 @@ dnq iuv iFm xVK -xRo -owv -qXU -uwO +rBU +byT +avw +efQ rSx kRP kRP @@ -247976,7 +247924,7 @@ lpM ejT iEV iEV -cPV +ewP hCV jeC jeC @@ -248233,7 +248181,7 @@ lpM djh sgZ sgZ -pZN +fdK kwu uKS uPB @@ -248262,7 +248210,7 @@ kRP fiT kQf hDh -vnt +gTQ keP qTa ctr @@ -248566,7 +248514,7 @@ gMp gMp yhY liV -qmN +nTX utC utC utC @@ -249527,8 +249475,8 @@ hHu tZZ mfW mfW +mfW oyY -aVw gxq aVw vBh @@ -249586,7 +249534,7 @@ tkU utC enX liV -jHb +xEn utC utC tkU @@ -249784,8 +249732,8 @@ iuv iuv iuv iuv -uJN iuv +uJN iuv iuv iuv @@ -250010,7 +249958,7 @@ lvY mmA whk uja -aJi +xAO aJi eCT uja @@ -250030,9 +249978,9 @@ oTu oTu srw kfr -dKW +bep ylU -lDo +dnq dnq iuu dnq @@ -250041,8 +249989,8 @@ dnq apb dnq bep -srw dnq +srw dnq ivo ikC @@ -250108,7 +250056,7 @@ fri utC utC liV -qRv +sby utC utC utC @@ -250286,20 +250234,20 @@ exw hmb hmb exw -tLF +qRv lFb qRE lFb -azw +tMa azw mao azw azw -vTc -vTc -vTc -vTc -vTc +qVj +oYZ +oYZ +oYZ +qVj cvS cvS cvS @@ -250310,7 +250258,7 @@ cvS cvS cvS abU -kRP +cvS uiI qzF gDp @@ -250552,24 +250500,24 @@ jqE kZb cJk azw -xxi +xDB fqW sfd -nCb -kWL +xkA +atr cvS pjF nhw -cvS +uhH aMh kNA mOo jPh ljD azf -kRP -kRP -kRP +cGA +cGA +cvS gDp boQ lgW @@ -250778,8 +250726,8 @@ xqh bdp nmH tiI -hLW -bVI +rZg +ekM uja uja uja @@ -250811,22 +250759,22 @@ blU azw bbO hhT -vnN -pQp +hZk +rMd wpZ cvS ril eHe -uhH -mnC -cvS -caZ -caZ -uIM -cGA +vTc +vTc +vTc +vTc +vTc +vTc +vTc yby vnY -kRP +cvS sqN kRP rKv @@ -251034,10 +250982,10 @@ eFG ffZ vfW vfW -mZK -lvk -gzI -gIN +eBL +vfW +mDS +jQv kKL mBr kKL @@ -251067,23 +251015,23 @@ fTC qEj azw rUQ -orE +tDi aTE hMH -yiK +hXE cvS dDC gXm +vTc +xxi +rnI +jaF +nCb +kWL +vTc +hnd +cQr cvS -cvS -cvS -ohp -ohp -ohp -ohp -gGf -pNq -kRP udL kRP bIa @@ -251293,8 +251241,8 @@ qFE cGB cGB gsI -tLL -vlE +fEi +ehn kKL kKL kKL @@ -251327,20 +251275,20 @@ azw azw azw mGs -vTc +qVj cvS kSn vEN -cvS +vTc ltE pkN +oev +pQp ohp -ohp -ohp -ohp +vTc pNq dXU -kRP +pNq gDp kRP qjb @@ -251393,7 +251341,7 @@ utC utC utC liV -jHb +xEn tkU utC utC @@ -251588,16 +251536,16 @@ pkf kRP kRP rWH -kRP +lcA pao -cGA -ohp -ohp -ohp -ohp +orE +lNO +kcQ +yiK +vTc ghz ktB -kRP +nHY gDp kRP qGC @@ -251845,13 +251793,13 @@ fKi tHr rRA soK -kRP +lcA nMN -kRP -kRP -kwX -lBS -kRP +lcA +lcA +ncf +iMv +lcA kRP kRP kRP @@ -251899,7 +251847,7 @@ nFO utC enX liV -jHb +xEn utC utC utC @@ -252105,10 +252053,10 @@ uNq dTW vND uzJ -kRP +lcA esC eUI -kRP +lcA qyR qyR kRP @@ -252362,10 +252310,10 @@ pQL nCV lGh txo -kRP -kRP -kRP -kRP +lcA +lcA +lcA +lcA wCI qyR kRP @@ -252404,7 +252352,7 @@ tkU utC utC reh -jHb +xEn tkU utC fri @@ -252875,7 +252823,7 @@ sEK eHg ahL wVw -xyy +hyg whU bYK vmZ @@ -252935,7 +252883,7 @@ uAL uAL hHG liV -qRv +sby sMy tkU utC @@ -253129,9 +253077,9 @@ sFG lwQ kmG cyo -lup -lup -aCA +juw +nji +tHv jDn nbC qZv @@ -253388,8 +253336,8 @@ efK juw nji tkf -ikz -vyW +rpM +cWn tHr pBA pBA @@ -253432,7 +253380,7 @@ utC tkU utC reh -jHb +xEn utC tkU utC @@ -253640,14 +253588,14 @@ hgh kBL xPT cxA -bij -vkD +hPx +rhg cey lux -eHZ -lux +unh +ijW fUL -qyO +rbB evp evp owr @@ -253902,7 +253850,7 @@ nMu wDe hxs uEr -nzs +jQf iuD qAf gHq @@ -253974,7 +253922,7 @@ ghY ccw cQL pbs -uvu +iYt bPc ptY ptY @@ -254478,7 +254426,7 @@ tWy dZX swF swF -qFu +lxj gzz uCg mfD @@ -254956,8 +254904,8 @@ npD npD npD npD -gGj -mue +hYH +jzI sGH bPt fij @@ -255010,7 +254958,7 @@ pza sML sML sML -pza +urS iHp lNc euc @@ -255214,7 +255162,7 @@ vng lme tiZ uuI -noR +wDg wDg rqD wDg @@ -255257,7 +255205,7 @@ frq rlS cfe mXi -mzZ +rlS mRI bLz bLz @@ -255267,7 +255215,7 @@ mEg bLz jUW bLz -mGg +bLz mCw ryf ryf @@ -255459,7 +255407,7 @@ rZm sOO lRD gbP -jxv +xdl wPX cvS cvS @@ -256217,8 +256165,8 @@ sZD lnC klc lDM -dVS -bAj +qWv +uoJ lDM klc rWR @@ -256474,8 +256422,8 @@ sZD vgx lDM dxO -omo -jdm +mWW +vtT xWT klc uiF @@ -256659,7 +256607,7 @@ txl txl txl sAd -tMa +xgm uei tmR uei @@ -256728,11 +256676,11 @@ aKa wor qxG vFW -noW -nOh -bNH -bNH -rIc +amS +xTO +oXq +mWW +vMk gpR klc ooy @@ -258821,8 +258769,8 @@ jgL sKf sKf jgL -wRr -wEV +sYm +sKf sZF tkU utC @@ -259078,8 +259026,8 @@ npD npD sZF sZF -pHR -wEV +oLn +sKf vjZ utC utC @@ -259229,7 +259177,7 @@ txl txl utC sAd -tMa +xgm uei tmR uei @@ -259287,9 +259235,9 @@ cYE hZT idi cZU -kBl -kBl -hOY +bGl +bGl +cuu dbx uvt awK @@ -259335,8 +259283,8 @@ ily lqU bln vjZ -pHR -wEV +cbf +sKf vjZ utC tkU @@ -259543,10 +259491,10 @@ hUx rNQ hZT idi -aID +iEt gky vvP -mxD +imo cgZ uvt jeB @@ -259592,8 +259540,8 @@ ily lqU tmR vjZ -pHR -wEV +oLn +sKf vjZ utC utC @@ -259800,9 +259748,9 @@ ebb cYE hZT idi -aID -ddk -ddk +iEt +vLe +vLe dry edq uvt @@ -259849,8 +259797,8 @@ tgx qLY xSE sZF -rzL -gea +jCW +fWF sZF tkU utC @@ -260070,7 +260018,7 @@ mtI uRL xmf owC -tVn +qOM tYe xIF wHc @@ -260106,8 +260054,8 @@ jCE adY tmR sZF -pHR -wEV +oLn +sKf sZF tkU fri @@ -260327,7 +260275,7 @@ mtI nqP vzo rzz -gEn +abC pBV dsl wHc @@ -260363,8 +260311,8 @@ vTJ apT sEB vjZ -laf -wEV +vUS +sKf vjZ tkU utC @@ -260597,31 +260545,31 @@ jbU jbU bkQ drr -qhL -qhL -qhL -qhL +drr +vHq +hvm +hvm tCx -wPd -wPd -wPd -wPd -wPd -fTq -wab -wOO -wPd -wPd -wPd -wPd +chZ +chZ +chZ +chZ +chZ +pNN +pJE +kBy +chZ +chZ +chZ +chZ wPd ega bcE qLY sEB vjZ -dAP -wEV +nNA +sKf vjZ utC utC @@ -260853,32 +260801,32 @@ mde gSN jbU wnX -drr -hvm -pvB -ehd -ehd -ehd -ehd -bbB -bbB -bbB -vDu -lva -lva -iXu -drr -pvB -ehd -orv +pMF +pMF +kvc +aCb +aCb +aCb +aCb +aCb +aCb +aCb +wBD +xJj +xJj +vmJ +pMF +vOL +aCb +kea aCb aCb vfq apT sEB vjZ -pHR -wEV +cbf +sKf vjZ utC fri @@ -261111,8 +261059,8 @@ vpW jbU lec fmU -qhL -wve +pMF +iNL hfc hfc hfc @@ -261134,8 +261082,8 @@ hfc adY eAw sZF -pHR -wEV +oLn +sKf sZF utC tkU @@ -261368,8 +261316,8 @@ qlO jbU hzb hdH -qhL -dkK +pMF +euO vVP vVP vVP @@ -261391,8 +261339,8 @@ vVP qLY xSE sZF -pHR -wEV +cbf +sKf sZF tkU tkU @@ -261625,8 +261573,8 @@ xGK jbU lhu hdH -urJ -ppp +lOp +gkk ily ily ily @@ -261649,7 +261597,7 @@ jBh tmR vjZ wRr -wEV +sKf vjZ utC fri @@ -261882,8 +261830,8 @@ wlW jbU kHN kra -qhL -ppp +pMF +gkk ily ily ily @@ -262139,8 +262087,8 @@ ppz jbU uQR iZQ -llw -aus +niy +xCW lKq lKq lKq @@ -262656,8 +262604,8 @@ eLr hAm via via -tPz -iRN +via +oOR odR leo qFt @@ -262903,24 +262851,24 @@ urK urK urK iRx +hot +hot +qhy +qhy +qhy +qhy pJV pJV -nMA -nMA -nMA -nMA -pJV pJV pJV pJV pJV -aYJ cTR leo wOX efk -jTr -kex +bKz +bKz aIr elk mdE @@ -263159,25 +263107,25 @@ dFj dFj dFj dFj -xnM -xnM -xnM -fLl -wMm -xnM +dFj +dFj +dFj +jwC +bkI +dFj qDQ dFj dFj dFj dFj -xgI -jmh +aGl +mpx avC leo qFt bYu -qkH -wCV +vnE +teH rqa bgx bgx @@ -263433,8 +263381,8 @@ nsZ nsZ hjE xSg -fOl -cyL +lrO +yeC jAI bgx hWI @@ -265470,8 +265418,8 @@ mEJ kCz vJS bUa -ubY -qHn +xYy +dcz nsZ awa awa @@ -265727,7 +265675,7 @@ sca xiC ciS bUa -jPx +puQ jxb dqI oEE @@ -265736,11 +265684,11 @@ mXe bEJ qbb miK -xRv -xRv -xRv -xRv -goy +bxp +hWD +hWD +hWD +wWf hWD oiI nsZ @@ -265983,8 +265931,8 @@ bsN sca gpj oQn -iBl -pLr +nWj +nmX mKO sPq xLq @@ -265997,7 +265945,7 @@ cRq qVZ ybf ybf -vaa +aQS xLq xLq nsZ @@ -266254,7 +266202,7 @@ iHc qVZ nQj auK -vaa +aQS xLq xLq nsZ @@ -266511,7 +266459,7 @@ xTV rGY nzA auK -vaa +aQS xLq xLq nsZ @@ -266768,7 +266716,7 @@ bgx bgx bgx bgx -rVA +ixK bgx bgx bgx @@ -266812,7 +266760,7 @@ tmR cnx bln sFJ -qRv +sby utC txl txl @@ -266984,11 +266932,11 @@ tpd mbn qLF vCD -wyo -myJ -myJ -gEV -gjW +hsG +qRr +qRr +uCC +xUX bAY mhT jdK @@ -267243,11 +267191,11 @@ tPY ljo tpd vXy -vXy -urx -cuP -eFn -ldV +gJa +vIl +iTb +eiR +jDf uFH hpr vXy @@ -268351,7 +268299,7 @@ tmR sUN bln sFJ -qRv +sby utC utC utC @@ -268529,7 +268477,7 @@ tsP jZM vYw dFt -qRv +utC utC utC dFt @@ -268537,7 +268485,7 @@ tsP jZM vYw dFt -qRv +utC utC utC utC @@ -274983,13 +274931,13 @@ utC utC utC utC -utC -aZw +rdg +rkW jxw erR jxw -aZw -utC +rkW +xEn utC txl txl @@ -276525,13 +276473,13 @@ txl txl txl utC -utC -aZw +rdg +rkW jxw lZt jxw -aZw -utC +rkW +xEn utC txl txl diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 6dd768409452..567b6badb806 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -5,6 +5,15 @@ "aag" = ( /turf/closed/wall, /area/station/commons/fitness) +"aah" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/camera/directional/east{ + c_tag = "Science Maintenance Corridor"; + network = list("ss13","rd") + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/white, +/area/station/science/research) "aal" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -82,7 +91,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "abX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -210,7 +219,7 @@ /area/station/engineering/atmos/pumproom) "aeq" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aer" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -293,7 +302,7 @@ /obj/effect/turf_decal/bot, /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "agi" = ( /obj/effect/spawner/random/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -450,20 +459,6 @@ /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"aiy" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/computer/records/security{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) "aja" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -583,7 +578,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "akF" = ( /obj/machinery/flasher/directional/north{ id = "AI" @@ -596,7 +591,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "akZ" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 @@ -640,6 +635,8 @@ name = "Quartermaster Junction" }, /obj/effect/mapping_helpers/mail_sorting/supply/qm_office, +/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) "alE" = ( @@ -669,7 +666,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "alX" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -755,7 +752,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "anv" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/east, /obj/machinery/skill_station, @@ -848,12 +845,12 @@ "apJ" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "apM" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "apO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue{ @@ -907,10 +904,27 @@ /area/space/nearstation) "aqu" = ( /obj/structure/closet/wardrobe/green, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/commons/locker) +"aqv" = ( +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "aqS" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 4 @@ -972,7 +986,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "asB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1073,19 +1087,19 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "avb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 1 - }, +/obj/structure/cable, /turf/open/floor/iron/white/smooth_half, /area/station/medical/cryo) "avc" = ( @@ -1271,7 +1285,7 @@ /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) +/area/station/ai/satellite/chamber) "azz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1518,12 +1532,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/security/prison) -"aCW" = ( +"aCZ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, /obj/effect/turf_decal/stripes/line{ - dir = 8 + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) "aDa" = ( /turf/open/floor/plating, /area/station/construction/mining/aux_base) @@ -1556,6 +1574,12 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"aDs" = ( +/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) "aDA" = ( /obj/machinery/light/small/directional/south, /obj/item/folder, @@ -1683,7 +1707,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -1764,7 +1788,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aHH" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /obj/effect/turf_decal/siding/purple{ @@ -1801,14 +1825,6 @@ /obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, /area/station/science/research) -"aIl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) "aIm" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner"; @@ -1934,7 +1950,7 @@ /area/station/science/xenobiology) "aJS" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aJX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -1993,7 +2009,7 @@ name = "Service Hall" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/duct, @@ -2184,11 +2200,11 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aOc" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aOf" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -2216,6 +2232,11 @@ /obj/effect/turf_decal/trimline/brown/warning, /turf/open/floor/iron/white, /area/station/science/lobby) +"aOs" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port) "aOu" = ( /obj/structure/table, /obj/item/paper/fluff/holodeck/disclaimer, @@ -2283,14 +2304,14 @@ "aPv" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aPw" = ( /obj/machinery/ai_slipper{ uses = 8 }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aPx" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/structure/closet_empty/crate, @@ -2330,7 +2351,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aQR" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -2484,7 +2505,7 @@ /area/station/construction/storage_wing) "aTV" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aUm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, @@ -2502,14 +2523,14 @@ /area/station/medical/medbay/central) "aUx" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "aUK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aUP" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction, /obj/effect/spawner/structure/window/reinforced/plasma, @@ -2533,7 +2554,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aVn" = ( /obj/structure/showcase/cyborg/old{ pixel_y = 20 @@ -2543,13 +2564,13 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aVr" = ( /obj/machinery/porta_turret/ai{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aVv" = ( /obj/machinery/suit_storage_unit/atmos, /obj/effect/turf_decal/stripes/line{ @@ -2640,13 +2661,13 @@ /area/space/nearstation) "aWN" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aWO" = ( /obj/machinery/ai_slipper{ uses = 10 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aWS" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/engineering_hacking{ @@ -2778,12 +2799,9 @@ name = "AI Core Shutters" }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aYJ" = ( /obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/south{ - pixel_x = 26 - }, /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -2909,14 +2927,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"bax" = ( -/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/office) "baE" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance/two, @@ -2939,7 +2949,8 @@ dir = 4 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -2985,10 +2996,6 @@ /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) "bcf" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -3071,7 +3078,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/broken_floor, @@ -3088,10 +3095,6 @@ /obj/machinery/air_sensor/oxygen_tank, /turf/open/floor/engine/o2, /area/station/engineering/atmos) -"beq" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/space/nearstation) "beO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/green{ @@ -3124,7 +3127,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "beZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3237,10 +3240,10 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ +/obj/machinery/disposal/bin/tagger, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 }, -/obj/machinery/disposal/bin/tagger, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "bgV" = ( @@ -3267,13 +3270,13 @@ /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) +/area/station/ai/satellite/interior) "bhf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "bhl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/maintenance/three, @@ -3329,7 +3332,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "biq" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -3345,11 +3348,6 @@ /obj/machinery/component_printer, /turf/open/floor/iron/white, /area/station/science/explab) -"biA" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "biF" = ( /obj/structure/window/spawner/directional/north, /turf/open/floor/iron/dark, @@ -3456,10 +3454,10 @@ /area/station/science/research) "bjP" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bjQ" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bkl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -3540,8 +3538,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, +/obj/machinery/flasher/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "blG" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -3597,25 +3596,25 @@ /turf/open/space/basic, /area/space/nearstation) "bnr" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/office) +/obj/structure/fireaxecabinet/jawsofrecovery/directional/east, +/obj/structure/table/glass, +/obj/item/surgicaldrill, +/obj/item/toy/figure/paramedic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "bnx" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bny" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; pixel_x = 30; - req_access = list("minisat") + req_access = list("minisat"); + dir = 4 }, /obj/machinery/ai_slipper{ uses = 10 @@ -3624,7 +3623,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bnA" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -3640,14 +3639,14 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bnD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bnE" = ( /obj/structure/closet/crate/hydroponics, /obj/item/shovel/spade, @@ -3673,7 +3672,7 @@ name = "Private Channel" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bnM" = ( /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, @@ -3770,7 +3769,7 @@ /obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bpA" = ( /obj/machinery/rnd/production/circuit_imprinter/department/science, /turf/open/floor/iron/dark, @@ -3892,17 +3891,17 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bsb" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bsd" = ( /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bse" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -3958,6 +3957,25 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/aft/greater) +"bto" = ( +/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) "btx" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -4195,7 +4213,7 @@ "bwN" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bxf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4359,22 +4377,6 @@ }, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) -"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) "bAp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4516,6 +4518,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "bCO" = ( @@ -4532,7 +4535,7 @@ "bCZ" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "bDm" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/siding{ @@ -4797,6 +4800,18 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"bHU" = ( +/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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/station/security/brig) "bIi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4937,6 +4952,12 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) +"bKl" = ( +/obj/structure/table/glass, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) "bKv" = ( /obj/item/pen, /obj/structure/table/reinforced, @@ -5017,6 +5038,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/green, /area/station/maintenance/port/aft) +"bLq" = ( +/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) "bLQ" = ( /turf/closed/wall, /area/station/medical/coldroom) @@ -5098,7 +5127,7 @@ /area/station/medical/surgery/theatre) "bMY" = ( /turf/closed/wall, -/area/station/medical/office) +/area/station/medical/paramedic) "bNa" = ( /obj/machinery/shower/directional/west, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -5282,6 +5311,14 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/engine, /area/station/science/explab) +"bRn" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/main) "bRp" = ( /obj/effect/spawner/random/decoration/microwave{ dir = 1; @@ -5406,19 +5443,11 @@ /turf/open/floor/iron, /area/station/commons/lounge) "bTm" = ( -/obj/structure/table/reinforced, -/obj/item/wheelchair{ - pixel_y = -3 - }, -/obj/item/wheelchair, -/obj/item/wheelchair{ - pixel_y = 3 +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 }, -/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) +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "bTq" = ( /obj/machinery/camera/motion/directional/south{ c_tag = "AI Upload Chamber - Port"; @@ -5428,10 +5457,10 @@ /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/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bTv" = ( /obj/structure/closet/lasertag/blue, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron/dark, @@ -5595,7 +5624,7 @@ }, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "bWV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5669,15 +5698,14 @@ /turf/open/floor/wood, /area/station/service/library) "bXX" = ( -/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/structure/disposalpipe/segment{ dir = 6 }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "bYm" = ( @@ -5722,10 +5750,47 @@ /obj/machinery/airalarm/directional/east, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "bYz" = ( /turf/open/floor/circuit, /area/station/maintenance/port/aft) +"bYQ" = ( +/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) "bZb" = ( /obj/structure/table, /obj/machinery/button/door{ @@ -5851,6 +5916,15 @@ "cbz" = ( /turf/closed/wall, /area/station/cargo/storage) +"cbV" = ( +/obj/effect/turf_decal/siding/blue/inner_corner{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/medical, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "ccc" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -5911,6 +5985,15 @@ "cdX" = ( /turf/closed/wall, /area/station/engineering/storage/tech) +"cej" = ( +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/light/floor, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, +/area/station/medical/cryo) "cem" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -6127,6 +6210,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/aft/lesser) +"cjb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Staff Entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) "cji" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -6219,7 +6312,7 @@ }, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ckW" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 @@ -6363,13 +6456,6 @@ "cnK" = ( /turf/closed/wall, /area/station/engineering/main) -"coc" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) "coe" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -6386,7 +6472,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "com" = ( /obj/structure/cable, /obj/machinery/netpod, @@ -6409,7 +6495,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "cpj" = ( /obj/machinery/button/door/directional/east{ id = "bridge blast"; @@ -6460,6 +6546,7 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, +/obj/machinery/computer/records/medical/laptop, /turf/open/floor/iron/dark, /area/station/medical/break_room) "cpU" = ( @@ -6478,28 +6565,6 @@ }, /turf/open/floor/iron/white, /area/station/science/research) -"cqd" = ( -/obj/structure/rack, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/security/holding_cell) "cqk" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -6718,23 +6783,6 @@ /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/station/maintenance/port/fore) -"cui" = ( -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "cuk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -6785,7 +6833,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/structure/cable, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/security/lockers) @@ -6948,7 +6995,7 @@ /area/station/commons/toilet/restrooms) "cwK" = ( /obj/structure/closet/wardrobe/grey, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, @@ -7052,12 +7099,12 @@ /turf/open/floor/iron, /area/station/security/brig) "cxt" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/item/kirbyplants/random, +/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/structure/cable, /turf/open/floor/iron/white, -/area/station/medical/office) +/area/station/medical/medbay/central) "cxw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/showcase/machinery/cloning_pod{ @@ -7071,11 +7118,6 @@ "cxz" = ( /turf/closed/wall, /area/station/science/ordnance/bomb) -"cxC" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/station/service/library) "cxU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -7115,11 +7157,6 @@ dir = 4 }, /area/station/science/lobby) -"cyM" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "cyS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7165,7 +7202,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "czG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7201,9 +7238,6 @@ /turf/open/floor/iron/white/smooth_large, /area/station/medical/surgery/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 @@ -7232,6 +7266,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /turf/closed/wall/r_wall, /area/station/engineering/supermatter) +"cAr" = ( +/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, +/obj/structure/sign/warning/radiation/directional/north, +/turf/open/floor/iron, +/area/station/engineering/atmos) "cAG" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -7270,18 +7314,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/locker) -"cBH" = ( -/obj/structure/table/reinforced, -/obj/item/defibrillator/loaded{ - pixel_y = 6 - }, -/obj/item/defibrillator/loaded{ - pixel_y = 3 - }, -/obj/item/defibrillator/loaded, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/storage) "cBV" = ( /obj/machinery/mech_bay_recharge_port{ dir = 8 @@ -7329,7 +7361,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cCR" = ( /obj/item/radio/intercom/directional/east, /obj/structure/kitchenspike, @@ -7473,11 +7505,7 @@ }, /obj/effect/spawner/round_default_module, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"cFu" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) +/area/station/ai/upload/chamber) "cGj" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -7499,6 +7527,7 @@ "cGv" = ( /obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/iron, /area/station/cargo/miningoffice) "cGG" = ( @@ -7536,7 +7565,7 @@ "cHf" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -7961,14 +7990,6 @@ /obj/item/pai_card, /turf/open/floor/iron, /area/station/commons/locker) -"cOP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "cOQ" = ( /turf/open/floor/iron/white, /area/station/science/research) @@ -8048,7 +8069,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cRq" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -8056,15 +8077,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"cRw" = ( -/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/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "cRU" = ( /obj/structure/bed, /obj/item/bedsheet/captain, @@ -8172,7 +8184,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/structure/rack, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cTC" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, @@ -8193,6 +8205,15 @@ }, /turf/open/floor/wood, /area/station/security/office) +"cUq" = ( +/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) "cUt" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt/dust, @@ -8222,8 +8243,9 @@ network = list("minisat") }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cUP" = ( /obj/effect/spawner/random/structure/closet_private, /obj/item/clothing/under/misc/assistantformal, @@ -8384,12 +8406,14 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "cXz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 + dir = 6 }, -/turf/open/floor/iron/white, -/area/station/medical/office) +/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/medical/paramedic) "cXH" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -8500,7 +8524,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cZm" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -8629,8 +8653,12 @@ /turf/open/floor/plating, /area/station/maintenance/aft/greater) "dca" = ( -/turf/open/floor/iron/white, -/area/station/medical/office) +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "dct" = ( /obj/machinery/computer/atmos_control/mix_tank{ dir = 1 @@ -8670,7 +8698,7 @@ "ddc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ddl" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -8742,10 +8770,10 @@ /turf/open/floor/iron/dark, /area/station/command/bridge) "deD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/burnt_floor, /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/aft) "deG" = ( @@ -8837,7 +8865,7 @@ /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) +/area/station/command/vault) "dfp" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, @@ -9009,7 +9037,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dhC" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/brown/filled/line, @@ -9105,6 +9133,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"diI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area/directional/northeast, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "diJ" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted, /obj/machinery/light/floor, @@ -9119,6 +9155,20 @@ /obj/structure/sign/warning/electric_shock/directional/south, /turf/open/space/basic, /area/space/nearstation) +"djk" = ( +/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/effect/turf_decal/delivery, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/station/engineering/main) "djn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9202,6 +9252,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/break_room) +"dlf" = ( +/obj/structure/cable, +/obj/structure/bed/dogbed/mcgriff, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/mob/living/basic/pet/dog/pug/mcgriff, +/turf/open/floor/iron, +/area/station/security/warden) "dlr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/broken_floor, @@ -9329,15 +9389,7 @@ /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) +/area/station/ai/satellite/exterior) "dpg" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -9433,7 +9485,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dqo" = ( /obj/machinery/conveyor{ dir = 1; @@ -9470,7 +9522,7 @@ /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) +/area/station/ai/satellite/interior) "dqE" = ( /obj/structure/closet/toolcloset, /obj/effect/turf_decal/bot, @@ -9652,6 +9704,14 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"dtE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "dtY" = ( /obj/machinery/meter/monitored/waste_loop, /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ @@ -9743,7 +9803,6 @@ /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, @@ -10363,7 +10422,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) @@ -10446,9 +10506,11 @@ /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) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/pods/directional/east, +/turf/open/floor/iron, +/area/station/security/brig) "dKm" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, @@ -10469,7 +10531,7 @@ }, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dKY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -10547,7 +10609,7 @@ dir = 10 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dLJ" = ( /obj/machinery/requests_console/directional/south{ department = "Mining"; @@ -10624,7 +10686,6 @@ /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 @@ -10677,13 +10738,9 @@ /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, -/obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dOs" = ( /obj/structure/sign/warning/no_smoking, /turf/closed/wall/r_wall, @@ -10707,16 +10764,21 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "dOz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 + dir = 1 }, -/obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/white, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_half, /area/station/medical/cryo) "dOA" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, @@ -10780,7 +10842,7 @@ "dPV" = ( /obj/machinery/porta_turret/ai, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dPY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -10958,7 +11020,7 @@ /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) +/area/station/security/armory) "dRY" = ( /obj/structure/chair/office, /obj/effect/landmark/start/hangover, @@ -11046,12 +11108,12 @@ /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) +/area/station/ai/satellite/interior) "dTr" = ( /obj/structure/cable, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dTv" = ( /obj/structure/closet/secure_closet/personal, /obj/item/clothing/under/misc/assistantformal, @@ -11059,7 +11121,8 @@ /obj/item/clothing/shoes/winterboots, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/commons/locker) @@ -11119,6 +11182,8 @@ /area/station/service/bar) "dVb" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "dVc" = ( @@ -11213,7 +11278,7 @@ /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) +/area/station/ai/upload/chamber) "dWg" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -11264,7 +11329,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -11301,7 +11366,7 @@ name = "armory safe A" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dXH" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, @@ -11337,7 +11402,7 @@ /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) +/area/station/command/eva) "dYg" = ( /obj/machinery/status_display/evac/directional/west, /obj/machinery/camera/directional/west{ @@ -11448,11 +11513,11 @@ /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) +/area/station/security/armory) "eax" = ( -/obj/structure/sign/poster/official/random/directional/south, /obj/machinery/light/small/directional/west, /obj/machinery/duct, +/obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/plating, /area/station/commons/toilet/auxiliary) "eaA" = ( @@ -11495,11 +11560,6 @@ /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 @@ -11642,15 +11702,6 @@ /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; @@ -11725,29 +11776,6 @@ /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) -"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, @@ -11918,12 +11946,14 @@ /turf/open/floor/plating, /area/station/security/execution/education) "ehE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ +/obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 }, /obj/machinery/photocopier/prebuilt, +/obj/machinery/camera/directional/north, +/obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white, -/area/station/medical/office) +/area/station/medical/medbay/central) "ehG" = ( /obj/effect/landmark/generic_maintenance_landmark, /obj/effect/decal/cleanable/blood/old, @@ -12211,13 +12241,13 @@ /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" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/xenobiology) "eln" = ( @@ -12601,7 +12631,7 @@ /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) +/area/station/ai/satellite/exterior) "erS" = ( /obj/structure/table/wood, /obj/item/camera_film{ @@ -12615,7 +12645,6 @@ /turf/open/floor/wood, /area/station/service/library) "erU" = ( -/obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, @@ -12623,6 +12652,7 @@ dir = 1 }, /obj/effect/landmark/start/assistant, +/obj/machinery/light/directional/west, /turf/open/floor/iron, /area/station/cargo/lobby) "esd" = ( @@ -12771,7 +12801,7 @@ /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) +/area/station/command/eva) "euo" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -12801,25 +12831,6 @@ "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, @@ -12831,16 +12842,19 @@ /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) +/obj/structure/secure_safe/hos, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hos) "euX" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/white, /area/station/security/medical) +"eve" = ( +/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) "evf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -12881,12 +12895,6 @@ }, /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 @@ -12950,7 +12958,7 @@ "ewC" = ( /obj/machinery/camera{ c_tag = "Warden's Office"; - dir = 10 + dir = 8 }, /obj/structure/table, /obj/machinery/button/door{ @@ -13091,7 +13099,7 @@ name = "Research Division Access" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, @@ -13114,7 +13122,7 @@ /area/station/service/bar) "eAq" = ( /obj/structure/closet/wardrobe/white, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark, @@ -13153,18 +13161,15 @@ /obj/item/flashlight/lamp, /turf/open/floor/iron/grimy, /area/station/tcommsat/computer) -"eBU" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"eBW" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/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) +/turf/open/floor/iron/dark, +/area/station/ai/satellite/chamber) "eBY" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/neutral{ @@ -13324,7 +13329,7 @@ /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/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, @@ -13378,7 +13383,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eGd" = ( /obj/machinery/door/window/left/directional/north{ name = "MiniSat Walkway Access" @@ -13388,7 +13393,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eGg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -13586,7 +13591,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -13688,7 +13693,7 @@ /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) +/area/station/ai/satellite/exterior) "eLv" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -13839,7 +13844,7 @@ "eNh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eNk" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" @@ -13855,7 +13860,7 @@ /area/station/medical/morgue) "eNR" = ( /turf/closed/wall, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eNV" = ( /obj/effect/turf_decal/delivery, /obj/effect/spawner/random/structure/crate, @@ -13972,9 +13977,6 @@ 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{ @@ -13982,6 +13984,9 @@ }, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "eQe" = ( @@ -13996,7 +14001,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "eQr" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -14044,11 +14049,6 @@ /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, @@ -14076,11 +14076,6 @@ /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, @@ -14104,7 +14099,7 @@ /turf/open/floor/engine, /area/station/science/xenobiology) "eSy" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 4 }, /obj/structure/cable, @@ -14265,14 +14260,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"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, @@ -14344,8 +14331,22 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"eXh" = ( +/obj/structure/rack, +/obj/machinery/firealarm/directional/west, +/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 = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/tools) "eXj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14669,23 +14670,6 @@ "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, @@ -14719,7 +14703,7 @@ /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/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, /turf/open/floor/plating, @@ -14737,7 +14721,7 @@ name = "Security Requests Console" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fdX" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -14881,10 +14865,6 @@ /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" = ( @@ -15012,6 +14992,14 @@ }, /turf/open/floor/iron/white, /area/station/medical/storage) +"fiu" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sign/warning/directional/northwest, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) "fix" = ( /obj/structure/chair{ dir = 1 @@ -15427,7 +15415,7 @@ }, /obj/effect/spawner/random/armory/e_gun, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fnT" = ( /obj/structure/table, /obj/item/crowbar/red, @@ -15486,7 +15474,7 @@ /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) +/area/station/ai/satellite/exterior) "fpi" = ( /obj/machinery/door/window/right/directional/south{ name = "First Aid Supplies"; @@ -15627,7 +15615,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "frw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -15723,10 +15711,6 @@ /obj/machinery/vending/autodrobe, /turf/open/floor/plating, /area/station/maintenance/port) -"ftM" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/commons/locker) "fuc" = ( /obj/structure/frame/machine{ anchored = 1 @@ -15869,6 +15853,12 @@ }, /turf/open/floor/plating, /area/station/cargo/storage) +"fyA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) "fyJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -15919,7 +15909,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fzl" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, @@ -16018,7 +16008,7 @@ /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) +/area/station/command/eva) "fBz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16057,6 +16047,13 @@ /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central) +"fDb" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "fDc" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -16080,9 +16077,6 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east{ - pixel_y = -26 - }, /turf/open/floor/iron, /area/station/security/brig) "fDC" = ( @@ -16114,7 +16108,7 @@ }, /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, @@ -16148,7 +16142,7 @@ "fEO" = ( /obj/structure/cable, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fEW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16177,12 +16171,18 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "fFi" = ( -/obj/machinery/computer/crew{ +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark/smooth_edge{ dir = 4 }, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron/dark, -/area/station/medical/office) +/area/station/medical/paramedic) "fFo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16202,7 +16202,7 @@ /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/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) @@ -16227,6 +16227,11 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos) +"fFV" = ( +/obj/effect/turf_decal/siding/blue/inner_corner, +/obj/structure/closet/secure_closet/paramedic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "fGp" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -16413,7 +16418,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fJy" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/engine) @@ -16595,17 +16600,6 @@ /obj/effect/landmark/start/depsec/supply, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"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, @@ -16616,7 +16610,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "fNa" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -16629,17 +16623,6 @@ /obj/item/clothing/mask/whistle, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"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, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/iron, -/area/station/security/brig) "fNz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, @@ -16715,7 +16698,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ @@ -16797,6 +16780,12 @@ }, /turf/open/floor/iron, /area/station/security/courtroom) +"fRt" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/maintenance/port) "fRu" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -16937,11 +16926,12 @@ /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 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "fVA" = ( @@ -17104,17 +17094,17 @@ /turf/open/floor/iron, /area/station/security/office) "fYc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, /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) +/turf/open/floor/iron/white, +/area/station/medical/cryo) "fYg" = ( /obj/machinery/computer/mechpad{ dir = 8 @@ -17218,7 +17208,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -17260,6 +17250,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"gaO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "gaU" = ( /obj/machinery/button/door/directional/west{ id = "hop"; @@ -17353,7 +17351,7 @@ cycle_id = "sci-maint-passthrough" }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/science/research) "gcA" = ( @@ -17396,26 +17394,14 @@ /turf/open/floor/grass, /area/station/science/research) "gda" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/effect/landmark/firealarm_sanity, +/turf/open/floor/plating, +/area/station/command/vault) "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, @@ -17457,7 +17443,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "geA" = ( /obj/item/folder/white{ pixel_x = 4; @@ -17514,7 +17500,7 @@ /area/station/command/heads_quarters/hos) "gfU" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gfZ" = ( /obj/effect/turf_decal/trimline/purple/corner{ dir = 8 @@ -17536,14 +17522,6 @@ "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, @@ -17584,11 +17562,11 @@ /turf/open/floor/plating, /area/station/maintenance/disposal) "ghc" = ( -/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, +/obj/structure/cable, /turf/open/floor/iron/white, -/area/station/medical/office) +/area/station/medical/medbay/central) "ghk" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -17786,7 +17764,7 @@ "glV" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, /turf/open/floor/plating, @@ -17811,7 +17789,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -17828,10 +17806,6 @@ /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{ @@ -17993,7 +17967,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "goF" = ( /obj/machinery/atmospherics/pipe/layer_manifold/cyan/hidden{ dir = 8 @@ -18088,7 +18062,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "gqI" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -18142,25 +18116,6 @@ /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{ @@ -18241,19 +18196,20 @@ /turf/open/floor/iron/white, /area/station/medical/pharmacy) "gtd" = ( -/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 +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 1 }, -/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, /turf/open/floor/iron/white/smooth_half, /area/station/medical/cryo) "gtm" = ( @@ -18367,7 +18323,8 @@ /obj/machinery/button/flasher{ id = "visitorflash"; pixel_x = -6; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/button/door/directional/north{ @@ -18430,7 +18387,7 @@ /area/station/security/medical) "gvG" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) @@ -18456,6 +18413,11 @@ "gwf" = ( /turf/open/floor/glass/reinforced, /area/station/science/research) +"gwG" = ( +/obj/machinery/teleport/station, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plating, +/area/station/command/teleporter) "gwK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18611,6 +18573,14 @@ "gyQ" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance) +"gyW" = ( +/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) "gzi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -18628,12 +18598,6 @@ /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 @@ -18763,7 +18727,7 @@ /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) +/area/station/ai/satellite/exterior) "gCA" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/iron/dark, @@ -18806,6 +18770,14 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/station/commons/vacant_room/office) +"gDe" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/warning/directional/northeast, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) "gDh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18813,8 +18785,9 @@ dir = 4 }, /obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 + dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "gDq" = ( @@ -18903,7 +18876,7 @@ /obj/structure/cable/multilayer/connected, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "gEx" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -18912,7 +18885,7 @@ "gEG" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19100,7 +19073,20 @@ /obj/effect/spawner/random/armory/shotgun, /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"gHD" = ( +/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) "gHE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19215,6 +19201,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/greater) +"gJh" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "gJi" = ( /obj/machinery/door/poddoor/shutters/preopen{ dir = 4; @@ -19306,17 +19300,6 @@ /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, @@ -19444,7 +19427,7 @@ /obj/machinery/camera/directional/north{ c_tag = "Engineering - Power Monitoring" }, -/obj/machinery/computer/station_alert/station_only, +/obj/machinery/computer/station_alert, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/engineering/main) @@ -19524,7 +19507,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gNR" = ( /obj/structure/girder, /obj/effect/spawner/random/structure/grille, @@ -19574,7 +19557,7 @@ /obj/machinery/holopad, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gOy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, @@ -19720,6 +19703,16 @@ /obj/machinery/wall_healer/directional/west, /turf/open/floor/iron, /area/station/command/gateway) +"gSt" = ( +/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/unres/delayed, +/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) "gSu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -19729,12 +19722,6 @@ /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, @@ -19873,11 +19860,13 @@ /turf/open/floor/iron, /area/station/science/robotics/mechbay) "gVn" = ( -/obj/effect/turf_decal/siding/white{ - dir = 6 +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/medical/office) +/area/station/medical/paramedic) "gVx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20028,7 +20017,7 @@ /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/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -20276,6 +20265,16 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/engineering/main) +"hcg" = ( +/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) "hcl" = ( /obj/item/target, /obj/effect/turf_decal/stripes/line{ @@ -20386,13 +20385,13 @@ /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, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/xenobiology) "hdI" = ( @@ -20427,7 +20426,7 @@ /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) +/area/station/ai/satellite/exterior) "heE" = ( /obj/structure/table/wood, /obj/effect/spawner/random/decoration/ornament, @@ -20473,14 +20472,6 @@ }, /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, @@ -20589,6 +20580,16 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/storage/tech) +"hhE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "hhN" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -20822,7 +20823,8 @@ /area/station/hallway/secondary/exit/departure_lounge) "hlu" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/service/library) @@ -20851,7 +20853,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hlD" = ( /turf/open/floor/carpet, /area/station/command/heads_quarters/captain/private) @@ -20891,7 +20893,7 @@ /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) +/area/station/ai/satellite/exterior) "hmo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -20990,7 +20992,8 @@ dir = 1 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -21295,10 +21298,6 @@ }, /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 @@ -21488,7 +21487,8 @@ /obj/item/clothing/shoes/winterboots, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/commons/locker) @@ -21519,15 +21519,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/structure/sign/warning/pods/directional/east, /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" @@ -21592,10 +21586,6 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/port) -"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, @@ -21615,10 +21605,6 @@ /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{ @@ -21627,7 +21613,7 @@ pixel_x = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hza" = ( /obj/vehicle/sealed/mecha/ripley/paddy/preset, /turf/open/floor/iron/recharge_floor, @@ -21647,7 +21633,7 @@ /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) +/area/station/ai/satellite/exterior) "hzw" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -21693,7 +21679,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hAL" = ( /obj/machinery/door/poddoor/shutters{ dir = 4; @@ -21715,7 +21701,7 @@ /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) +/area/station/ai/satellite/exterior) "hBo" = ( /mob/living/simple_animal/bot/mulebot, /obj/structure/cable, @@ -21747,7 +21733,7 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/greater) "hBB" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 8 }, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -21943,21 +21929,11 @@ dir = 4 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /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, @@ -22206,7 +22182,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hLB" = ( /obj/structure/rack, /obj/item/crowbar/red, @@ -22227,6 +22203,7 @@ /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/white, /area/station/science/cytology) "hLZ" = ( @@ -22257,7 +22234,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, @@ -22320,7 +22297,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/eva, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hNn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/floor, @@ -22631,7 +22608,7 @@ /area/station/command/heads_quarters/ce) "hSG" = ( /obj/structure/closet/lasertag/red, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) @@ -22700,12 +22677,6 @@ /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 @@ -22787,6 +22758,11 @@ /obj/effect/landmark/navigate_destination, /turf/open/floor/iron/white, /area/station/medical/virology) +"hVQ" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/courtroom) "hVY" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22996,6 +22972,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"hYH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_x = -38 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/main) "hZg" = ( /obj/structure/closet/crate, /obj/machinery/power/apc/auto_name/directional/west, @@ -23074,11 +23061,11 @@ /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, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/plating, /area/station/maintenance/port) "ias" = ( @@ -23241,9 +23228,9 @@ /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, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/xenobiology) "idL" = ( @@ -23640,7 +23627,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "ikO" = ( /obj/machinery/newscaster/directional/north, /obj/structure/table/glass, @@ -23729,7 +23716,7 @@ /area/station/command/teleporter) "ilx" = ( /obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) @@ -23740,6 +23727,13 @@ }, /turf/open/floor/wood, /area/station/service/library) +"ilF" = ( +/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) "ilJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -23986,7 +23980,7 @@ /obj/machinery/recharge_station, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "iqc" = ( /obj/structure/reflector/single/anchored{ dir = 9 @@ -24087,10 +24081,6 @@ /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, @@ -24138,7 +24128,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "isr" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /obj/machinery/door/poddoor/shutters/radiation/preopen{ @@ -24147,7 +24137,6 @@ /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, @@ -24289,6 +24278,18 @@ }, /turf/open/floor/iron, /area/station/command/gateway) +"ivm" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Medbay Security Post" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/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, +/area/station/security/checkpoint/medical) "ivu" = ( /obj/structure/table/reinforced, /obj/machinery/camera/directional/west{ @@ -24414,7 +24415,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ixA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24443,7 +24444,7 @@ /obj/structure/closet/crate/silvercrate, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ixY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24498,7 +24499,7 @@ /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/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/commons/fitness/recreation) @@ -24759,7 +24760,7 @@ /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) +/area/station/security/armory) "iCx" = ( /obj/machinery/atmospherics/components/tank/air/layer4{ dir = 1 @@ -24776,7 +24777,7 @@ "iCV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iDe" = ( /obj/structure/table, /obj/item/reagent_containers/cup/glass/drinkingglass, @@ -24884,6 +24885,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"iFl" = ( +/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/fore) "iFz" = ( /turf/open/floor/iron, /area/station/security/prison) @@ -24986,14 +24995,6 @@ /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, @@ -25044,10 +25045,11 @@ /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 }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/fore) "iIP" = ( @@ -25063,7 +25065,7 @@ "iIQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iIW" = ( /obj/structure/bookcase/random, /turf/open/floor/plating/airless, @@ -25367,6 +25369,11 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/wood/parquet, /area/station/medical/psychology) +"iNy" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/brig) "iNB" = ( /obj/machinery/firealarm/directional/east, /obj/structure/table/glass, @@ -25511,10 +25518,10 @@ /area/station/maintenance/disposal) "iPM" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 + dir = 9 }, /turf/open/floor/iron/white, -/area/station/medical/office) +/area/station/medical/medbay/central) "iPT" = ( /obj/machinery/light/floor, /turf/open/floor/wood, @@ -25586,14 +25593,12 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/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, +/obj/structure/sign/warning/pods/directional/east, /turf/open/floor/iron, /area/station/commons/dorms) "iQF" = ( @@ -25686,7 +25691,7 @@ /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) +/area/station/ai/satellite/foyer) "iSd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/duct, @@ -25704,7 +25709,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/port) @@ -25795,7 +25801,7 @@ /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) +/area/station/ai/upload/foyer) "iUm" = ( /turf/closed/wall, /area/station/hallway/secondary/exit/departure_lounge) @@ -25858,7 +25864,7 @@ /area/station/commons/dorms) "iVO" = ( /obj/structure/closet/masks, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) @@ -25906,12 +25912,14 @@ /turf/open/floor/engine/cult, /area/station/service/library) "iWD" = ( +/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/trimline/blue/filled/line{ - dir = 9 + dir = 10 }, -/turf/open/floor/iron/white, -/area/station/medical/office) +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "iWJ" = ( /obj/effect/turf_decal/stripes/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25992,7 +26000,7 @@ name = "Commissary" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -26020,15 +26028,6 @@ }, /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{ @@ -26112,8 +26111,9 @@ pixel_y = 4 }, /obj/item/storage/box/syringes, -/obj/item/gun/syringe, /obj/structure/window/spawner/directional/west, +/obj/item/gun/syringe, +/obj/item/gun/syringe, /turf/open/floor/iron/dark, /area/station/medical/storage) "iZC" = ( @@ -26256,8 +26256,9 @@ }, /obj/machinery/camera{ c_tag = "Xenobiology Lab - Central South"; - dir = 9; - network = list("ss13","rd","xeno") + dir = 1; + network = list("ss13","rd","xeno"); + pixel_x = 20 }, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/white, @@ -26285,7 +26286,7 @@ }, /obj/effect/spawner/random/armory/laser_gun, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jcw" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark, @@ -26318,11 +26319,6 @@ /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, @@ -26350,6 +26346,7 @@ "jdQ" = ( /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) "jdR" = ( @@ -26459,21 +26456,14 @@ 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{ +/obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, /turf/open/floor/iron/white, -/area/station/medical/office) +/area/station/medical/treatment_center) "jfB" = ( /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock" @@ -26510,13 +26500,13 @@ /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" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/xenobiology) "jfU" = ( @@ -26583,15 +26573,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/greater) -"jhc" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/table, -/obj/item/folder, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) "jhd" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -26711,7 +26692,7 @@ "jjy" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jjC" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/item/food/grown/banana, @@ -26780,7 +26761,7 @@ }, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jkT" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -26836,7 +26817,7 @@ "jln" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jlJ" = ( /obj/effect/spawner/random/entertainment/arcade, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -27087,6 +27068,17 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"jpS" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "jpU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, @@ -27325,16 +27317,6 @@ }, /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 @@ -27431,7 +27413,7 @@ /obj/structure/cable/layer3, /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jvQ" = ( /obj/machinery/door/window/left/directional/north{ name = "Petting Zoo" @@ -27680,6 +27662,14 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/carpet, /area/station/security/detectives_office) +"jyZ" = ( +/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) "jzp" = ( /turf/closed/wall, /area/station/commons/vacant_room/office) @@ -27713,7 +27703,7 @@ "jAd" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/broken_floor, @@ -27955,10 +27945,6 @@ /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"; @@ -27966,7 +27952,15 @@ pixel_x = -4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"jED" = ( +/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/port) "jEI" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -28030,7 +28024,7 @@ /area/station/security/prison) "jFO" = ( /obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) "jFZ" = ( @@ -28042,15 +28036,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /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, @@ -28122,8 +28107,34 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/port) +"jGH" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/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/granted{ + pixel_x = -9; + pixel_y = -1 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/cargo/storage) "jGN" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/machinery/light/directional/south, @@ -28131,7 +28142,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "jGO" = ( /obj/machinery/hydroponics/soil, /obj/item/cultivator, @@ -28139,6 +28150,12 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/grass, /area/station/security/prison/garden) +"jGZ" = ( +/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) "jHg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28158,6 +28175,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel, /area/station/service/chapel) +"jHy" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/sign/warning/directional/southwest, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) "jHA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28171,7 +28198,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jHM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28207,7 +28234,7 @@ /obj/item/radio/off, /obj/item/multitool, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jIk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28278,7 +28305,8 @@ /obj/machinery/button/flasher{ id = "IsolationFlash"; pixel_x = -23; - pixel_y = 8 + pixel_y = 8; + dir = 8 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28438,6 +28466,11 @@ }, /turf/open/floor/iron/diagonal, /area/station/cargo/storage) +"jMg" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/construction/storage_wing) "jMo" = ( /obj/structure/chair/stool/directional/north, /turf/open/floor/iron, @@ -28601,10 +28634,6 @@ /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 }, @@ -28636,7 +28665,8 @@ dir = 1 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/port) @@ -28678,10 +28708,10 @@ "jQr" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "jQz" = ( @@ -28810,6 +28840,29 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/grass, /area/station/security/prison/garden) +"jTk" = ( +/obj/structure/rack, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/security/holding_cell) "jTl" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -28939,21 +28992,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /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, @@ -28998,7 +29036,7 @@ /obj/machinery/button/door/directional/north{ id = "rdordnance"; name = "Ordnance Containment Control"; - req_access = list("rd") + req_access = list("science") }, /turf/open/floor/iron/dark, /area/station/science/ordnance/storage) @@ -29071,7 +29109,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -29132,6 +29170,18 @@ /obj/effect/mapping_helpers/airalarm/surgery, /turf/open/floor/iron/white, /area/station/medical/surgery/aft) +"jYa" = ( +/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) "jYr" = ( /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -29212,6 +29262,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"jZU" = ( +/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/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "jZW" = ( /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, @@ -29236,17 +29295,13 @@ }, /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) +/area/station/security/armory) "kaF" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -29449,13 +29504,13 @@ /area/station/commons/toilet/restrooms) "ken" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ 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, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "keK" = ( @@ -29643,6 +29698,18 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/checkpoint/engineering) +"khC" = ( +/obj/structure/cable, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Vault"; + network = list("vault") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/departments/vault/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/vault) "khD" = ( /obj/machinery/door/airlock/maintenance{ name = "Crematorium Maintenance" @@ -29955,6 +30022,12 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) +"klN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "klS" = ( /obj/machinery/griddle, /turf/open/floor/iron/cafeteria, @@ -29975,10 +30048,6 @@ "kmN" = ( /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) -"kmZ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/gateway) "kna" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -30448,7 +30517,7 @@ /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) +/area/station/command/eva) "kwQ" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral{ @@ -30617,6 +30686,7 @@ }, /obj/structure/sign/departments/aisat/directional/south, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/structure/sign/warning/pods/directional/east, /turf/open/floor/iron, /area/station/engineering/break_room) "kzg" = ( @@ -30670,7 +30740,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/eva, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kzQ" = ( /obj/effect/turf_decal/siding/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30706,6 +30776,20 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"kAw" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals - Station Entrance" + }, +/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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "kAF" = ( /obj/machinery/duct, /turf/open/floor/iron/freezer, @@ -30808,14 +30892,6 @@ /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"; @@ -31009,10 +31085,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/structure/sign/warning/pods/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "kGc" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 }, @@ -31034,7 +31111,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -31054,6 +31131,13 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/white, /area/station/science/lab) +"kGP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "kGR" = ( /obj/machinery/button/ignition{ id = "Xenobio"; @@ -31106,8 +31190,9 @@ "kHt" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #2"; - dir = 9; - network = list("ss13","rd","xeno") + dir = 1; + network = list("ss13","rd","xeno"); + pixel_x = 16 }, /turf/open/floor/engine, /area/station/science/xenobiology) @@ -31139,6 +31224,9 @@ /obj/structure/disposalpipe/junction{ 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/fore) "kIY" = ( @@ -31149,6 +31237,16 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/ordnance/storage) +"kJf" = ( +/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/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "kJi" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, @@ -31185,15 +31283,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"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, @@ -31313,7 +31402,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kLh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31491,18 +31580,6 @@ /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) "kOu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31609,7 +31686,6 @@ "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" = ( @@ -31692,8 +31768,8 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "kRA" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, /obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/station/maintenance/port) "kRV" = ( @@ -31820,7 +31896,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kUo" = ( /obj/structure/closet/crate/engineering/electrical, /obj/item/solar_assembly, @@ -31840,14 +31916,24 @@ /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/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"kUA" = ( +/obj/machinery/firealarm/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/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "kUG" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/loading_area{ @@ -31895,7 +31981,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kVZ" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -31934,7 +32020,7 @@ /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) +/area/station/ai/satellite/foyer) "kWE" = ( /obj/machinery/smartfridge/organ, /obj/effect/turf_decal/tile/dark_blue/full, @@ -32009,7 +32095,7 @@ /area/station/commons/toilet/auxiliary) "kXp" = ( /obj/machinery/camera/autoname{ - dir = 5 + pixel_x = 20 }, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -32161,6 +32247,14 @@ /obj/structure/chair/stool/directional/north, /turf/open/floor/wood, /area/station/commons/lounge) +"kZo" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/vending/cytopro, +/turf/open/floor/iron/white, +/area/station/science/cytology) "kZq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -32212,7 +32306,6 @@ /area/station/service/chapel) "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) @@ -32251,6 +32344,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 1 }, +/obj/structure/sign/departments/cargo/directional/west, /turf/open/floor/iron, /area/station/construction/storage_wing) "laE" = ( @@ -32318,6 +32412,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, /turf/open/floor/plating/airless, /area/station/engineering/atmos) +"lch" = ( +/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) "lct" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -32369,7 +32474,8 @@ dir = 1 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -32388,7 +32494,7 @@ /area/station/maintenance/starboard/fore) "ldP" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ldQ" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -32544,6 +32650,12 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/security/prison) +"lhI" = ( +/obj/machinery/computer/teleporter, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai/satellite/foyer) "lhT" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -32701,6 +32813,24 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"lkE" = ( +/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/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, +/obj/structure/sign/warning/secure_area/directional/northeast, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "lkW" = ( /obj/machinery/light/small/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -32816,7 +32946,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lmL" = ( /obj/structure/cable, /obj/effect/mapping_helpers/airlock/abandoned, @@ -32867,7 +32997,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "loh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32906,7 +33036,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -32919,7 +33049,17 @@ /obj/machinery/light/small/directional/west, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"lpk" = ( +/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/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/medbay/central) "lpo" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 4 @@ -32939,6 +33079,21 @@ /obj/machinery/biogenerator, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"lpL" = ( +/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/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/sign/warning/secure_area/directional/southwest, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "lpR" = ( /obj/structure/table, /obj/effect/turf_decal/siding{ @@ -32970,7 +33125,7 @@ /obj/effect/turf_decal/siding{ dir = 1 }, -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/iron/dark, /area/station/science/lab) "lqQ" = ( @@ -33011,8 +33166,9 @@ pixel_y = 2 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lrp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33197,17 +33353,13 @@ /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) +/area/station/ai/satellite/chamber) "lus" = ( /obj/structure/closet/athletic_mixed, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -33251,8 +33403,9 @@ /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, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) "lvu" = ( @@ -33265,6 +33418,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/security/medical) +"lvU" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) "lvZ" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -33320,6 +33477,18 @@ /obj/item/pillow/random, /turf/open/floor/wood, /area/station/commons/dorms) +"lxj" = ( +/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/medical/cryo) "lxm" = ( /obj/machinery/atmospherics/components/trinary/mixer/airmix{ dir = 4 @@ -33349,8 +33518,8 @@ /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, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) "lyf" = ( @@ -33358,6 +33527,16 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/security/holding_cell) +"lyh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "lyu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -33506,7 +33685,7 @@ /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) +/area/station/command/vault) "lBm" = ( /obj/machinery/conveyor{ dir = 4; @@ -33562,7 +33741,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lDo" = ( /obj/item/radio/off, /obj/effect/turf_decal/stripes/line{ @@ -33578,7 +33757,7 @@ /area/station/maintenance/aft/lesser) "lDA" = ( /obj/structure/closet/wardrobe/black, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/commons/locker) @@ -33988,7 +34167,7 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -34172,7 +34351,7 @@ /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) +/area/station/command/eva) "lPy" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -34319,7 +34498,7 @@ /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) +/area/station/ai/upload/chamber) "lSz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34393,7 +34572,7 @@ /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) +/area/station/command/eva) "lTR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34605,11 +34784,21 @@ /obj/structure/sign/warning/vacuum/directional/east, /turf/open/floor/plating, /area/station/maintenance/aft/lesser) -"lXm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) +"lWX" = ( +/obj/structure/table/reinforced, +/obj/item/defibrillator/loaded{ + pixel_y = 6 + }, +/obj/item/defibrillator/loaded{ + pixel_y = 3 + }, +/obj/item/defibrillator/loaded, +/obj/item/defibrillator/loaded{ + pixel_y = -4 + }, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/storage) "lXr" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -34878,7 +35067,7 @@ "mbS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mbV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -34976,17 +35165,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) -"mdu" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/obj/machinery/pdapainter/research, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) "mdy" = ( /obj/effect/landmark/blobstart, /obj/structure/cable, @@ -35030,9 +35208,9 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "mez" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/sign/warning/electric_shock, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/cytology) "meJ" = ( @@ -35086,7 +35264,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mgh" = ( /obj/machinery/camera/directional/east{ c_tag = "Atmospherics Tank - O2" @@ -35096,13 +35274,9 @@ "mgj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/flasher/directional/north{ - id = "AI"; - pixel_x = -22 - }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mgo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35208,7 +35382,7 @@ name = "Research Division Access" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, @@ -35234,6 +35408,12 @@ }, /turf/open/floor/iron/white, /area/station/science/xenobiology) +"mio" = ( +/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) "mix" = ( /obj/structure/frame/machine, /obj/item/circuitboard/machine/chem_master, @@ -35304,7 +35484,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mkr" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -35452,14 +35632,13 @@ /turf/open/floor/iron/dark, /area/station/security/courtroom) "mna" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/medical/office) +/area/station/medical/paramedic) "mnj" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/effect/turf_decal/trimline/brown/warning{ @@ -35538,6 +35717,26 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/security/brig) +"mop" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/right/directional/east{ + name = "Outer Window" + }, +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Brig Control Desk"; + req_access = list("armory") + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/poster/random_official, +/obj/structure/cable, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/showroomfloor, +/area/station/security/warden) "moF" = ( /obj/effect/turf_decal/siding/purple{ dir = 5 @@ -35577,7 +35776,7 @@ "mph" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mpk" = ( /obj/structure/table/glass, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -35833,10 +36032,12 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "mtj" = ( -/obj/machinery/medical_kiosk, /obj/effect/turf_decal/siding/white, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/computer/crew{ + dir = 1 + }, /turf/open/floor/iron/white/side{ dir = 1 }, @@ -35860,9 +36061,14 @@ /turf/open/floor/iron, /area/station/security/brig) "mtL" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/hallway/secondary/entry) +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Test Chamber Blast Door" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/station/science/xenobiology) "mtO" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, @@ -35901,7 +36107,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -35985,12 +36191,11 @@ /turf/closed/wall/r_wall, /area/station/science/lab) "mvY" = ( -/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/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, /turf/open/floor/iron/white, -/area/station/medical/office) +/area/station/medical/medbay/central) "mvZ" = ( /obj/machinery/light/directional/south, /obj/structure/rack, @@ -36341,8 +36546,8 @@ "mCj" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #7"; - dir = 5; - network = list("ss13","rd","xeno") + network = list("ss13","rd","xeno"); + pixel_x = 16 }, /turf/open/floor/engine, /area/station/science/xenobiology) @@ -36380,7 +36585,7 @@ "mCL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mCM" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36635,6 +36840,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/command/gateway) +"mGl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/command/eva) "mGy" = ( /obj/structure/sign/warning/vacuum/directional/west, /obj/effect/turf_decal/delivery, @@ -36804,7 +37016,11 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/commons/dorms) -"mJN" = ( +"mJO" = ( +/obj/machinery/light/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/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -36865,6 +37081,20 @@ }, /turf/open/floor/iron/white, /area/station/science/cytology) +"mKQ" = ( +/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) "mKR" = ( /obj/structure/sign/warning/test_chamber, /turf/closed/wall, @@ -36979,9 +37209,7 @@ pixel_x = -4; pixel_y = 4 }, -/obj/structure/cable, /obj/machinery/light_switch/directional/west, -/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/station/security/lockers) "mMl" = ( @@ -37010,6 +37238,22 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"mMH" = ( +/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, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/station/engineering/main) "mMK" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -37018,25 +37262,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"mMM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/east{ - name = "Outer Window" - }, -/obj/machinery/door/window/brigdoor/left/directional/west{ - name = "Brig Control Desk"; - req_access = list("armory") - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/poster/random_official, -/obj/structure/cable, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) "mMX" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance/office) @@ -37048,7 +37273,8 @@ /obj/machinery/button/door{ id = "ordnancebridge"; pixel_x = -24; - req_one_access = list("maint_tunnels","science") + req_one_access = list("maint_tunnels","science"); + dir = 8 }, /obj/effect/turf_decal/caution/stand_clear{ dir = 1 @@ -37077,7 +37303,7 @@ /area/station/maintenance/port/aft) "mOl" = ( /obj/structure/closet/boxinggloves, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark, @@ -37158,13 +37384,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/station/command/heads_quarters/ce) -"mPH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) "mPK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37377,8 +37596,7 @@ /area/station/maintenance/starboard/fore) "mSI" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; pixel_y = 28 }, @@ -37398,7 +37616,7 @@ /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) +/area/station/ai/upload/foyer) "mSM" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -37610,9 +37828,9 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mXj" = ( -/obj/machinery/computer/station_alert/station_only, +/obj/machinery/computer/station_alert, /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 }, @@ -37766,7 +37984,7 @@ /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) +/area/station/command/eva) "mZB" = ( /obj/structure/urinal/directional/north, /obj/effect/landmark/start/hangover, @@ -37808,7 +38026,7 @@ /obj/effect/turf_decal/tile/blue, /mob/living/basic/bot/cleanbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nad" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 @@ -37825,16 +38043,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden, /turf/open/floor/iron/white, /area/station/science/cytology) -"naf" = ( -/obj/machinery/firealarm/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/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "nao" = ( /obj/structure/easel, /obj/machinery/light/small/dim/directional/west, @@ -37994,7 +38202,8 @@ /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/delivery, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) @@ -38077,7 +38286,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "neL" = ( /obj/machinery/door/airlock/maintenance{ name = "Storage Room" @@ -38085,7 +38294,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -38195,7 +38404,7 @@ /area/station/command/heads_quarters/rd) "nhP" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nhS" = ( /obj/machinery/vending/cigarette, /obj/structure/sign/poster/official/random/directional/east, @@ -38207,7 +38416,7 @@ /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) +/area/station/ai/satellite/interior) "nie" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -38348,6 +38557,11 @@ /obj/effect/turf_decal/loading_area, /turf/open/floor/plating/reinforced, /area/station/cargo/storage) +"nku" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/maintenance/port) "nkG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/machinery/meter, @@ -38653,7 +38867,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/dark, @@ -38757,12 +38971,10 @@ /area/station/maintenance/starboard/fore) "nqV" = ( /obj/structure/closet/emcloset, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/pods/directional/north, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) "nra" = ( @@ -38840,7 +39052,8 @@ /obj/effect/landmark/start/depsec/medical, /obj/machinery/button/door/directional/east{ id = "medsecprivacy"; - name = "Privacy Shutters Control" + name = "Privacy Shutters Control"; + pixel_x = 22 }, /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -38982,12 +39195,12 @@ /obj/machinery/door/airlock/maintenance{ name = "Disposal Access" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ 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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -39091,14 +39304,6 @@ }, /turf/open/floor/plating, /area/station/cargo/sorting) -"nur" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/office) "nuB" = ( /obj/structure/secure_safe/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -39163,7 +39368,7 @@ /area/station/hallway/primary/central) "nwa" = ( /obj/structure/closet/wardrobe/pjs, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/sign/poster/official/random/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -39210,7 +39415,7 @@ /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) +/area/station/ai/upload/chamber) "nwT" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8 @@ -39645,15 +39850,6 @@ }, /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{ @@ -39744,7 +39940,7 @@ /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) +/area/station/ai/satellite/chamber) "nFn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -39756,7 +39952,7 @@ }, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nGo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/directional/east, @@ -39767,18 +39963,6 @@ /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{ @@ -39955,11 +40139,13 @@ }, /obj/machinery/button/ignition/incinerator/ordmix{ pixel_x = 24; - pixel_y = -6 + pixel_y = -6; + dir = 4 }, /obj/machinery/button/door/incinerator_vent_ordmix{ pixel_x = 24; - pixel_y = 8 + pixel_y = 8; + dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/science/ordnance, /turf/open/floor/engine, @@ -40223,6 +40409,17 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"nOA" = ( +/obj/machinery/firealarm/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, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "nOC" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -40379,11 +40576,6 @@ "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 @@ -40398,7 +40590,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nSB" = ( /obj/item/toy/figure/roboticist, /obj/structure/disposalpipe/segment, @@ -40432,6 +40624,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"nTD" = ( +/obj/machinery/airalarm/directional/west{ + pixel_y = -5 + }, +/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 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/medical/medbay/lobby) "nTH" = ( /obj/structure/cable, /obj/machinery/computer/crew{ @@ -40599,7 +40807,7 @@ /obj/machinery/ore_silo, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "nYy" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet/secure_closet/freezer/kitchen/maintenance, @@ -40699,6 +40907,9 @@ /obj/effect/turf_decal/tile/brown/opposingcorners, /turf/open/floor/iron, /area/station/cargo/sorting) +"nZX" = ( +/turf/closed/wall, +/area/station/medical/cryo) "oac" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -40948,15 +41159,12 @@ /turf/open/floor/iron/white, /area/station/security/prison) "odu" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Cryogenics Bay" - }, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/office) +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "odI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -41191,7 +41399,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -41207,17 +41415,6 @@ /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, @@ -41321,7 +41518,7 @@ /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) +/area/station/command/eva) "omm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41342,7 +41539,7 @@ /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) +/area/station/ai/satellite/foyer) "omK" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -41402,7 +41599,8 @@ dir = 4 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, @@ -41420,11 +41618,11 @@ /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 }, +/obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "oor" = ( @@ -41534,14 +41732,7 @@ }, /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) +/area/station/ai/satellite/exterior) "oqk" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41611,7 +41802,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "osc" = ( /obj/structure/cable, /obj/effect/spawner/random/decoration/showcase, @@ -41644,16 +41835,8 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"osw" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/security/brig) +/area/station/ai/upload/foyer) "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, @@ -41719,6 +41902,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"ott" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/computer/records/security{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) "otu" = ( /turf/closed/wall, /area/station/service/chapel) @@ -41818,9 +42015,10 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/starboard/greater) "ouX" = ( @@ -41868,15 +42066,6 @@ /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, @@ -42142,6 +42331,30 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, /area/station/maintenance/aft/greater) +"oBE" = ( +/obj/effect/decal/cleanable/garbage, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/white, +/area/station/science/research) +"oBK" = ( +/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 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/cafeteria, +/area/station/service/kitchen) "oBM" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -42206,15 +42419,18 @@ pixel_y = 2 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/east{ + pixel_y = -5 + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "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, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/greater) "oDs" = ( @@ -42250,10 +42466,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, @@ -42419,7 +42631,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "north-maint-viewingdeck" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -42464,7 +42676,7 @@ name = "Fuel Closet" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -42857,9 +43069,17 @@ /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) +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/camera/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "oNR" = ( /obj/effect/turf_decal/bot_white, /obj/effect/spawner/random/maintenance, @@ -42871,7 +43091,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oOy" = ( /obj/effect/landmark/start/botanist, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43218,6 +43438,13 @@ /obj/machinery/digital_clock/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"oUJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "oUK" = ( /obj/structure/table, /obj/item/electronics/apc, @@ -43264,10 +43491,6 @@ }, /turf/open/floor/iron, /area/station/security/courtroom) -"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) @@ -43282,7 +43505,7 @@ "oWF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oWH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -43347,7 +43570,7 @@ /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) +/area/station/command/vault) "oXL" = ( /obj/machinery/disposal/bin, /obj/structure/cable, @@ -43377,15 +43600,14 @@ /turf/open/floor/plating, /area/station/maintenance/fore) "oYp" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, /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) +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "oYr" = ( /obj/structure/railing{ dir = 1 @@ -43444,7 +43666,8 @@ dir = 4 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -43491,7 +43714,7 @@ "pan" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pav" = ( /obj/structure/chair/stool/directional/west, /obj/machinery/camera/directional/north{ @@ -43522,7 +43745,7 @@ /area/station/cargo/bitrunning/den) "paU" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -43765,7 +43988,7 @@ /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) +/area/station/ai/satellite/foyer) "pfs" = ( /obj/structure/closet/secure_closet{ name = "contraband locker"; @@ -43777,7 +44000,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pfP" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light_switch/directional/south, @@ -43795,7 +44018,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -43812,7 +44035,7 @@ name = "Chapel Maintenance" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -43851,6 +44074,16 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/command/gateway) +"phi" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) "phn" = ( /obj/structure/reflector/single/anchored{ dir = 10 @@ -43890,7 +44123,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "phR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43946,7 +44179,7 @@ /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) +/area/station/ai/satellite/interior) "piz" = ( /obj/structure/cable, /obj/effect/landmark/start/hangover, @@ -43958,14 +44191,6 @@ /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, @@ -44038,6 +44263,14 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron, /area/station/security/checkpoint/science) +"pkn" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/camera/directional/south{ + c_tag = "Central Primary Hallway - Aft-Port Corner" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "pkx" = ( /obj/machinery/modular_computer/preset/research{ dir = 8 @@ -44321,7 +44554,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "service-passthrough" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -44433,7 +44666,7 @@ "pqH" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pqI" = ( /obj/structure/lattice/catwalk, /obj/item/reagent_containers/cup/fish_feed, @@ -44526,7 +44759,8 @@ dir = 1 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -44564,7 +44798,7 @@ /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) +/area/station/command/eva) "psw" = ( /obj/machinery/computer/security/hos{ dir = 4 @@ -44627,6 +44861,8 @@ "pti" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/lockers) "pts" = ( @@ -44901,7 +45137,7 @@ "pyP" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pyR" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/light_switch/directional/south, @@ -44999,7 +45235,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pAV" = ( /obj/structure/table/reinforced, /obj/machinery/microwave/engineering/cell_included, @@ -45059,16 +45295,12 @@ /turf/open/floor/iron, /area/station/security/office) "pBN" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/chair/sofa/corp/left{ +/obj/machinery/computer/records/medical{ dir = 1 }, -/obj/machinery/airalarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/office) +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "pCh" = ( /obj/machinery/camera/directional/east{ c_tag = "Prison Laundry"; @@ -45176,6 +45408,12 @@ /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central) +"pEl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/vault) "pEs" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -45359,7 +45597,8 @@ /obj/effect/turf_decal/bot, /obj/machinery/camera{ c_tag = "Engineering - Foyer - Starboard"; - dir = 9 + dir = 1; + pixel_x = 25 }, /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -45446,7 +45685,7 @@ }, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pIF" = ( /obj/effect/turf_decal/stripes/white/line, /obj/machinery/research/anomaly_refinery, @@ -45526,6 +45765,13 @@ "pJR" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/hop) +"pJU" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/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) "pJV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -45625,17 +45871,8 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/engine/n2, /area/station/engineering/atmos) -"pMy" = ( -/obj/machinery/computer/prisoner/management{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) "pMH" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 4 }, /obj/structure/plaque/static_plaque/atmos{ @@ -45675,7 +45912,7 @@ /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) +/area/station/ai/satellite/exterior) "pNb" = ( /obj/effect/spawner/random/maintenance, /obj/structure/cable, @@ -45898,7 +46135,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pQy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -45922,7 +46159,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pQK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46012,6 +46249,13 @@ /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) +"pSR" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/south, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/hallway) "pSS" = ( /obj/structure/lattice/catwalk, /obj/structure/transit_tube/junction/flipped{ @@ -46151,15 +46395,14 @@ /turf/open/floor/iron/white, /area/station/science/xenobiology/hallway) "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, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + name = "Paramedic Dispatch Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, /turf/open/floor/iron/dark, -/area/station/medical/office) +/area/station/medical/paramedic) "pUS" = ( /obj/item/paper_bin{ pixel_x = -3; @@ -46282,7 +46525,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "pWT" = ( /obj/machinery/atmospherics/components/tank/air{ dir = 8 @@ -46353,11 +46596,12 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "pYw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#52B4E9" }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/office) +/turf/open/floor/plating, +/area/station/medical/paramedic) "pYE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -46412,13 +46656,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, /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, @@ -46522,10 +46759,10 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "qcd" = ( @@ -46590,22 +46827,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) -"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 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) "qdT" = ( /obj/effect/turf_decal/siding/red, /obj/effect/landmark/start/depsec/science, @@ -46651,7 +46872,6 @@ /area/station/hallway/primary/central) "qeQ" = ( /obj/machinery/turretid{ - icon_state = "control_stun"; name = "AI Chamber turret control"; pixel_x = 3; pixel_y = -23 @@ -46664,7 +46884,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qfp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -46687,6 +46907,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/courtroom) +"qfK" = ( +/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) "qfL" = ( /obj/machinery/power/port_gen/pacman/pre_loaded, /turf/open/floor/plating, @@ -46694,8 +46922,9 @@ "qfM" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #4"; - dir = 6; - network = list("ss13","rd","xeno") + dir = 4; + network = list("ss13","rd","xeno"); + pixel_y = -16 }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/engine, @@ -46947,7 +47176,7 @@ }, /mob/living/basic/bot/repairbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qiY" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -46966,7 +47195,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qjl" = ( /obj/machinery/vending/tool, /obj/effect/turf_decal/delivery, @@ -46989,7 +47218,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "viro-passthrough" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -47009,7 +47238,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qjH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47110,7 +47339,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qlL" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/turf_decal/stripes/line, @@ -47180,8 +47409,9 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qnj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47278,16 +47508,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"qoR" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "qoY" = ( /obj/effect/spawner/random/maintenance, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -47313,10 +47533,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) -"qpD" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) "qpM" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/wood, @@ -47372,7 +47588,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qri" = ( /turf/open/floor/iron/chapel{ dir = 1 @@ -47509,7 +47725,7 @@ name = "Private Channel" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qsW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47930,13 +48146,6 @@ /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, @@ -48008,7 +48217,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -48025,7 +48234,7 @@ "qDi" = ( /obj/machinery/status_display/ai/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qDy" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -48100,6 +48309,14 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/general, /turf/open/floor/plating, /area/station/maintenance/aft/greater) +"qEP" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "qFo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -48157,6 +48374,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/dorms) +"qGw" = ( +/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) "qGK" = ( /obj/machinery/door/poddoor/preopen{ id = "Engineering"; @@ -48235,7 +48462,7 @@ }, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qIl" = ( /turf/closed/wall, /area/station/hallway/secondary/command) @@ -48295,7 +48522,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qIR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48330,7 +48557,7 @@ /area/station/security/detectives_office) "qJd" = ( /obj/machinery/status_display/ai/directional/north, -/obj/machinery/computer/station_alert/station_only, +/obj/machinery/computer/station_alert, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) @@ -48356,7 +48583,8 @@ dir = 1 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -48577,13 +48805,16 @@ /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, +/obj/machinery/light_switch/directional/east{ + pixel_x = 21 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, /turf/open/floor/iron/dark, /area/station/medical/cryo) "qNk" = ( @@ -48969,10 +49200,6 @@ "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, @@ -49102,7 +49329,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Cargo Bay Bridge Access" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -49122,7 +49349,7 @@ "qTS" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qTU" = ( /obj/item/retractor, /obj/item/hemostat{ @@ -49381,7 +49608,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qZa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49403,7 +49630,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -49451,7 +49678,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rac" = ( /turf/closed/wall, /area/station/commons/lounge) @@ -49605,10 +49832,6 @@ }, /turf/open/floor/wood, /area/station/service/library) -"rcR" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/station/cargo/lobby) "rcW" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -49784,6 +50007,17 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) +"rgH" = ( +/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) "rgS" = ( /obj/machinery/modular_computer/preset/civilian{ dir = 1 @@ -49874,7 +50108,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "viro-passthrough" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, @@ -49908,6 +50142,7 @@ /obj/machinery/atmospherics/components/unary/airlock_pump{ dir = 4 }, +/obj/structure/sign/warning/vacuum/external/directional/south, /turf/open/floor/plating, /area/station/cargo/storage) "riW" = ( @@ -49926,7 +50161,7 @@ req_access = list("armory") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "riZ" = ( /obj/effect/landmark/start/assistant, /turf/open/floor/wood, @@ -50081,17 +50316,17 @@ /turf/open/floor/iron, /area/station/engineering/main) "rlw" = ( -/obj/effect/turf_decal/trimline/blue/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, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, /turf/open/floor/iron/white, -/area/station/medical/office) +/area/station/medical/medbay/central) "rlU" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rmj" = ( /obj/structure/table, /turf/open/floor/iron/cafeteria, @@ -50157,17 +50392,13 @@ /turf/open/floor/iron/dark, /area/station/security/lockers) "rne" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Paramedic Dispatch Room" +/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/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/airalarm/directional/west, +/obj/machinery/door/firedoor, /turf/open/floor/iron/white, -/area/station/medical/office) +/area/station/medical/medbay/central) "rnf" = ( /obj/effect/landmark/generic_maintenance_landmark, /obj/effect/turf_decal/stripes/line{ @@ -50217,7 +50448,7 @@ /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rod" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/trimline/brown/arrow_cw{ @@ -50480,7 +50711,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rtj" = ( /obj/machinery/igniter/incinerator_ordmix, /turf/open/floor/engine/vacuum, @@ -50633,17 +50864,6 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, /area/station/engineering/break_room) -"rux" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) "ruz" = ( /obj/structure/chair/stool/directional/north, /turf/open/floor/wood, @@ -50657,7 +50877,7 @@ name = "Cleaning Closet" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) "rvb" = ( @@ -50672,12 +50892,13 @@ /turf/open/floor/plating, /area/station/maintenance/port) "rvq" = ( -/obj/machinery/computer/records/medical{ - dir = 4 +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 }, -/obj/machinery/newscaster/directional/west, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, /turf/open/floor/iron/dark, -/area/station/medical/office) +/area/station/medical/paramedic) "rvx" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/engine/n2o, @@ -50844,7 +51065,7 @@ "rxx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rxA" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -50908,7 +51129,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ryL" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -51194,13 +51415,22 @@ /turf/open/floor/iron, /area/station/commons/storage/tools) "rEt" = ( -/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/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"rEu" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "rEz" = ( /obj/machinery/light/directional/east, /obj/machinery/firealarm/directional/east, @@ -51300,7 +51530,7 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rGB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -51342,26 +51572,6 @@ "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) "rHz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51417,7 +51627,7 @@ pixel_y = 2 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rIP" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -51546,11 +51756,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"rKJ" = ( -/obj/machinery/teleport/station, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plating, -/area/station/command/teleporter) "rKN" = ( /obj/effect/turf_decal/siding/white{ dir = 10 @@ -51721,7 +51926,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rNv" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -51741,7 +51946,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/duct, @@ -52040,8 +52245,9 @@ "rTi" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #3"; - dir = 6; - network = list("ss13","rd","xeno") + dir = 4; + network = list("ss13","rd","xeno"); + pixel_y = -16 }, /turf/open/floor/engine, /area/station/science/xenobiology) @@ -52111,7 +52317,6 @@ /area/station/security/execution/transfer) "rUL" = ( /obj/structure/sign/poster/official/soft_cap_pop_art/directional/north, -/obj/effect/landmark/start/paramedic, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, @@ -52297,6 +52502,7 @@ "rYy" = ( /obj/machinery/power/smes, /obj/structure/cable, +/obj/structure/sign/warning/electric_shock/directional/north, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/aft) "rYA" = ( @@ -52306,7 +52512,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rYH" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, @@ -52361,7 +52567,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rZz" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -52370,7 +52576,8 @@ /area/station/service/hydroponics/garden) "rZA" = ( /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) @@ -52563,7 +52770,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "sbK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -52759,10 +52966,15 @@ /turf/open/floor/carpet, /area/station/medical/psychology) "sfF" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/blue/filled/end, -/obj/structure/cable, /obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/duct, /turf/open/floor/iron/white, /area/station/medical/cryo) "sfK" = ( @@ -53192,7 +53404,7 @@ "soi" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) @@ -53250,7 +53462,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "sph" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53288,6 +53500,15 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"sqB" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/table, +/obj/item/folder, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/locker) "sqE" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/ce) @@ -53474,7 +53695,6 @@ /turf/open/floor/plating, /area/station/maintenance/department/engine) "svp" = ( -/obj/effect/landmark/start/paramedic, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white/smooth_large, /area/station/medical/medbay/central) @@ -53499,9 +53719,6 @@ /area/station/maintenance/disposal/incinerator) "svQ" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/structure/cable, /obj/machinery/door/airlock/medical/glass{ id_tag = "MedbayFoyer"; @@ -53509,6 +53726,9 @@ }, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "svS" = ( @@ -53604,11 +53824,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/wood/large, /area/station/service/theater) -"syc" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/brig) "syh" = ( /obj/machinery/door/poddoor/shutters{ id = "maintwarehouse" @@ -53852,10 +54067,6 @@ /obj/item/storage/crayons, /turf/open/space/basic, /area/space/nearstation) -"sCp" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/atmospherics_engine) "sCs" = ( /obj/structure/flora/bush/flowers_pp/style_3, /turf/open/floor/grass, @@ -54105,7 +54316,8 @@ "sFo" = ( /obj/machinery/button/crematorium{ id = "crematoriumChapel"; - pixel_x = -26 + pixel_x = -26; + dir = 8 }, /turf/open/floor/iron/dark, /area/station/service/chapel/office) @@ -54162,10 +54374,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "sGC" = ( @@ -54209,6 +54421,10 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/department/science/xenobiology) +"sHd" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall, +/area/station/medical/cryo) "sHg" = ( /obj/item/radio/intercom/directional/south, /obj/machinery/camera/directional/south{ @@ -54332,7 +54548,7 @@ name = "Storage Room" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -54393,7 +54609,7 @@ pixel_x = 8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sLU" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 @@ -54542,13 +54758,13 @@ name = "Primary Treatment Centre" }, /obj/machinery/door/firedoor, -/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/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "sOi" = ( @@ -54607,7 +54823,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sOZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -54638,7 +54854,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -54666,12 +54882,10 @@ /turf/open/floor/iron/white, /area/station/science/explab) "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 }, +/obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) "sPV" = ( @@ -54723,7 +54937,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port) "sQy" = ( @@ -54760,6 +54974,17 @@ }, /turf/open/floor/iron, /area/station/engineering/gravity_generator) +"sQQ" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/machinery/pdapainter/research, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/rd) "sQY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -54850,16 +55075,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) -"sSn" = ( -/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/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/aft) "sSo" = ( /obj/effect/landmark/start/station_engineer, /turf/open/floor/iron, @@ -54867,17 +55082,6 @@ "sSp" = ( /turf/closed/wall, /area/station/medical/treatment_center) -"sSs" = ( -/obj/machinery/firealarm/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, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "sSx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -54899,7 +55103,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -55062,7 +55266,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "sVz" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/modular_computer/preset/command, @@ -55179,12 +55383,10 @@ "sXe" = ( /obj/effect/landmark/start/station_engineer, /obj/machinery/light/directional/west, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -31 - }, /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/structure/sign/warning/electric_shock/directional/west, /turf/open/floor/iron, /area/station/engineering/main) "sXm" = ( @@ -55356,7 +55558,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -55416,10 +55618,6 @@ /obj/structure/plasticflaps/kitchen, /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, @@ -55587,7 +55785,7 @@ "tfz" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tfD" = ( /obj/structure/table/wood/poker, /obj/effect/decal/cleanable/dirt, @@ -55599,7 +55797,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -55921,9 +56119,6 @@ "tml" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, -/obj/machinery/newscaster/directional/south{ - pixel_x = -28 - }, /obj/machinery/atmospherics/components/binary/pump{ dir = 4 }, @@ -55971,10 +56166,10 @@ /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/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "tmQ" = ( @@ -56119,7 +56314,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tpn" = ( /obj/machinery/light/small/directional/west, /obj/machinery/camera/directional/west{ @@ -56128,7 +56323,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tpA" = ( /obj/machinery/cell_charger{ pixel_y = 4 @@ -56247,14 +56442,14 @@ /obj/machinery/teleport/hub, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "trx" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "try" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -56276,17 +56471,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"trG" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/machinery/firealarm/directional/west, -/obj/item/stack/cable_coil{ - pixel_x = -1; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) +/area/station/ai/satellite/exterior) "tsb" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -56348,13 +56533,6 @@ /obj/item/knife/kitchen, /turf/open/floor/iron/white, /area/station/science/cytology) -"tsT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "tsZ" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /obj/structure/lattice/catwalk, @@ -56419,6 +56597,16 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"ttV" = ( +/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/trimline/blue/filled/line, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "ttW" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, @@ -56587,7 +56775,7 @@ /obj/structure/cable/layer3, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "txk" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.5-Recreation"; @@ -56686,17 +56874,13 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "tzI" = ( -/obj/structure/table/reinforced, -/obj/item/emergency_bed, -/obj/item/emergency_bed{ - pixel_y = 3 - }, -/obj/item/emergency_bed{ - pixel_y = 6 +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 }, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/office) +/obj/structure/table/glass, +/obj/machinery/fax, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "tzJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -56855,6 +57039,18 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos) +"tBO" = ( +/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) "tBV" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -57009,6 +57205,12 @@ }, /turf/open/floor/plating, /area/station/cargo/sorting) +"tGy" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "tGA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -57085,7 +57287,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tHZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -57098,7 +57300,7 @@ "tIa" = ( /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tIb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank, @@ -57114,14 +57316,6 @@ /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) "tIe" = ( /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/white, @@ -57200,7 +57394,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -57245,7 +57439,7 @@ "tJE" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tJF" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -57313,16 +57507,6 @@ /obj/machinery/wall_healer/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/command) -"tKu" = ( -/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/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "tKE" = ( /turf/closed/wall, /area/station/security/checkpoint/engineering) @@ -57549,7 +57733,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -57587,7 +57771,7 @@ /area/station/science/xenobiology/hallway) "tOh" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tOm" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -57634,13 +57818,6 @@ }, /turf/open/floor/circuit/green/off, /area/station/science/research) -"tPb" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/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/office) "tPd" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -57786,7 +57963,7 @@ /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) +/area/station/ai/satellite/interior) "tSY" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -57801,7 +57978,7 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/plating/airless, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tTF" = ( /obj/effect/spawner/random/engineering/vending_restock, /turf/open/floor/plating, @@ -57822,17 +57999,15 @@ }, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tTT" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/machinery/camera/directional/north{ c_tag = "Locker Room Starboard" }, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, /obj/effect/turf_decal/delivery, +/obj/structure/sign/warning/pods/directional/north, /turf/open/floor/iron, /area/station/commons/locker) "tUc" = ( @@ -57933,8 +58108,11 @@ }, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tUH" = ( /obj/item/clothing/mask/gas, /turf/open/floor/plating, @@ -58004,7 +58182,7 @@ }, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tVG" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/firealarm/directional/north, @@ -58094,7 +58272,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "tXD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -58151,19 +58329,6 @@ /obj/effect/turf_decal/tile/purple/fourcorners, /turf/open/floor/iron, /area/station/command/heads_quarters/rd) -"tYQ" = ( -/obj/structure/cable, -/obj/structure/bed/dogbed/mcgriff, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/firealarm/directional/west{ - pixel_y = 26 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 9 - }, -/mob/living/basic/pet/dog/pug/mcgriff, -/turf/open/floor/iron, -/area/station/security/warden) "tYS" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Two"; @@ -58250,7 +58415,7 @@ }, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uag" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58312,12 +58477,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"uaN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) "uaR" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, @@ -58356,7 +58515,7 @@ }, /obj/structure/sign/directions/evac, /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ubj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58396,19 +58555,7 @@ /obj/machinery/light/small/directional/east, /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"ubD" = ( -/obj/structure/rack, -/obj/machinery/firealarm/directional/west, -/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 = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) +/area/station/ai/satellite/chamber) "ubF" = ( /obj/structure/table, /obj/item/reagent_containers/cup/beaker{ @@ -58610,7 +58757,7 @@ /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/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, @@ -58743,7 +58890,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) @@ -58825,7 +58972,7 @@ "ukk" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ukm" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -59061,7 +59208,7 @@ }, /obj/effect/turf_decal/tile/blue/anticorner/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uoM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/brig{ @@ -59136,7 +59283,7 @@ name = "Research Division Access" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -59312,6 +59459,7 @@ /obj/machinery/atmospherics/components/unary/airlock_pump{ dir = 4 }, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/plating, /area/station/hallway/secondary/entry) "usC" = ( @@ -59455,7 +59603,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uuO" = ( /obj/machinery/mech_bay_recharge_port{ dir = 8 @@ -59567,7 +59715,7 @@ /obj/structure/cable, /obj/machinery/duct, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -59749,32 +59897,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"uzK" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/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) "uAg" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, @@ -60013,7 +60135,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uEz" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -60050,15 +60172,15 @@ /turf/open/floor/iron, /area/station/cargo/storage) "uET" = ( -/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, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "uEW" = ( @@ -60108,7 +60230,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "uFy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -60408,7 +60530,7 @@ "uKj" = ( /obj/structure/chair, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uKx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -60490,7 +60612,7 @@ name = "AI Chamber Requests Console" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uLz" = ( /obj/machinery/light/small/directional/east, /obj/machinery/camera/directional/east{ @@ -60499,7 +60621,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uLE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -60682,16 +60804,14 @@ /turf/open/floor/iron, /area/station/hallway/primary/starboard) "uPi" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/light/floor, -/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/duct, /turf/open/floor/iron/white, /area/station/medical/cryo) "uPp" = ( @@ -60966,7 +61086,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uVd" = ( /obj/structure/chair{ dir = 8 @@ -61051,15 +61171,11 @@ }, /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) +/area/station/command/vault) "uWo" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /turf/open/floor/iron, @@ -61082,7 +61198,8 @@ }, /obj/machinery/light/directional/east, /obj/structure/sign/painting/library_secure{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/spawner/random/decoration/statue{ spawn_loot_chance = 50 @@ -61098,7 +61215,7 @@ name = "Theater Backstage" }, /obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/station/service/theater) @@ -61187,10 +61304,7 @@ /turf/closed/wall, /area/station/medical/break_room) "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) "uYE" = ( @@ -61347,19 +61461,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /turf/open/floor/iron/white, /area/station/security/medical) -"vaI" = ( -/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/effect/turf_decal/delivery, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) "vaY" = ( /obj/item/storage/bag/trash, /obj/machinery/airalarm/directional/west, @@ -61418,7 +61519,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vbL" = ( /obj/machinery/door/airlock/research{ name = "Ordnance Lab" @@ -61620,7 +61721,7 @@ /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) +/area/station/ai/satellite/exterior) "vgZ" = ( /obj/structure/table/glass, /obj/structure/cable, @@ -61712,7 +61813,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/item/poster/traitor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "viF" = ( /obj/machinery/computer/upload/borg, /obj/machinery/door/window/left/directional/south{ @@ -61723,7 +61824,7 @@ /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) +/area/station/ai/upload/chamber) "viH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/structure/window/reinforced, @@ -61901,7 +62002,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -61959,7 +62060,7 @@ "vly" = ( /obj/item/target/alien/anchored, /obj/machinery/camera/preset/ordnance{ - dir = 5 + pixel_x = 10 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating/airless{ @@ -62009,7 +62110,7 @@ "vmk" = ( /obj/machinery/status_display/ai/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vmp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62031,17 +62132,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) -"vmX" = ( -/obj/machinery/light/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/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "vnk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -62067,7 +62157,7 @@ network = list("aicore") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vnp" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -62310,7 +62400,7 @@ dir = 8 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vrP" = ( /obj/structure/cable, /obj/structure/table/reinforced, @@ -62633,11 +62723,11 @@ "vwN" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "vwP" = ( @@ -62725,17 +62815,6 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron, /area/station/science/research) -"vxW" = ( -/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, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) "vye" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -62745,10 +62824,6 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/iron/white, /area/station/medical/abandoned) -"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, @@ -62761,7 +62836,7 @@ }, /obj/item/ai_module/supplied/freeform, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vyy" = ( /obj/machinery/washing_machine, /obj/effect/decal/cleanable/dirt, @@ -62776,7 +62851,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vyZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -63017,11 +63092,13 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) "vDz" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 +/obj/structure/chair/office/light, +/obj/effect/turf_decal/siding/blue{ + dir = 1 }, -/turf/open/floor/iron/white, -/area/station/medical/office) +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "vDV" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -63278,6 +63355,15 @@ }, /turf/open/floor/iron/dark/corner, /area/station/engineering/atmos/storage/gas) +"vGI" = ( +/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/warning{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "vGN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -63327,13 +63413,17 @@ /turf/open/floor/iron/checker, /area/station/maintenance/aft/lesser) "vIn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + name = "Paramedic Dispatch Room" }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/medical/office) +/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/all/medical/paramedic, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "vIz" = ( /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ dir = 8 @@ -63462,7 +63552,8 @@ "vKt" = ( /obj/structure/table/wood/fancy/royalblue, /obj/structure/sign/painting/library_secure{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/spawner/random/decoration/statue{ spawn_loot_chance = 50 @@ -63496,7 +63587,6 @@ /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 4 }, -/obj/effect/landmark/start/paramedic, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "vLi" = ( @@ -63565,6 +63655,21 @@ /obj/machinery/portable_atmospherics/canister/water_vapor, /turf/open/floor/iron, /area/station/service/janitor) +"vMj" = ( +/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) "vMw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63648,7 +63753,7 @@ /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/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, @@ -63787,9 +63892,14 @@ /turf/open/floor/wood, /area/station/service/theater) "vQI" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/station/security/brig) +/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/structure/sign/warning/pods/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "vQO" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -63986,7 +64096,7 @@ /obj/item/clothing/under/misc/assistantformal, /obj/item/clothing/suit/hooded/wintercoat, /obj/item/clothing/shoes/winterboots, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, @@ -64113,19 +64223,13 @@ /obj/item/multitool, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"vVI" = ( -/obj/structure/table/glass, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) +/area/station/ai/satellite/maintenance/storage) "vVM" = ( /obj/effect/turf_decal/bot_white/right, /obj/structure/closet/crate/goldcrate, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vVV" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -64305,21 +64409,6 @@ /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) "vYI" = ( /obj/structure/sign/warning/secure_area/directional/north, /obj/structure/closet/radiation, @@ -64347,6 +64436,18 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) +"vYP" = ( +/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) "vZb" = ( /obj/machinery/disposal/bin{ desc = "A pneumatic waste disposal unit. This one leads to the morgue."; @@ -64471,6 +64572,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/service/hydroponics) +"wau" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/machinery/firealarm/directional/west, +/obj/item/stack/cable_coil{ + pixel_x = -1; + pixel_y = -3 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmospherics_engine) "waB" = ( /obj/machinery/door/airlock/external/glass{ name = "Supply Door Airlock" @@ -64492,20 +64603,16 @@ /turf/open/floor/plating, /area/station/maintenance/aft/greater) "waF" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Central Primary Hallway - Aft-Port Corner" - }, /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/corner, /obj/structure/disposalpipe/segment{ dir = 5 }, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron, /area/station/hallway/primary/central) "waH" = ( @@ -64688,13 +64795,6 @@ /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, @@ -64715,7 +64815,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) @@ -64853,12 +64953,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/commons/dorms) -"wgw" = ( -/obj/structure/sign/warning/secure_area{ - name = "\improper STAY CLEAR HEAVY MACHINERY" - }, -/turf/closed/wall, -/area/station/maintenance/port/fore) "wgP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64982,7 +65076,7 @@ "wiF" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "wiS" = ( @@ -65022,7 +65116,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wjT" = ( /obj/structure/cable, /obj/machinery/power/terminal{ @@ -65033,13 +65127,6 @@ }, /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, @@ -65118,6 +65205,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/storage/tools) +"wlQ" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmospherics_engine) "wlZ" = ( /obj/machinery/status_display/evac/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, @@ -65215,7 +65307,7 @@ }, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "wnW" = ( /obj/structure/bodycontainer/morgue{ dir = 1 @@ -65261,6 +65353,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/main) +"woU" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "woV" = ( /obj/machinery/door/window/left/directional/north, /turf/open/floor/iron/grimy, @@ -65322,7 +65420,7 @@ /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) +/area/station/ai/upload/chamber) "wpK" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -65429,7 +65527,7 @@ /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) +/area/station/security/armory) "wss" = ( /obj/machinery/status_display/evac/directional/north, /obj/item/folder/yellow{ @@ -65461,12 +65559,12 @@ /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, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "wsx" = ( @@ -65554,7 +65652,7 @@ /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/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, @@ -65606,7 +65704,7 @@ "wtB" = ( /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wtD" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/wall_healer/directional/east, @@ -65647,7 +65745,7 @@ "wuM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wvd" = ( /obj/machinery/door/airlock{ id_tag = "Cabin5"; @@ -65953,7 +66051,7 @@ "wzH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wzK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -65996,6 +66094,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"wAI" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/carpet, +/area/station/command/bridge) "wBe" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -66142,6 +66244,18 @@ }, /turf/open/floor/iron, /area/station/security/courtroom) +"wCR" = ( +/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 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "wCS" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -66297,6 +66411,14 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron, /area/station/service/hydroponics) +"wFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/landmark/firealarm_sanity, +/turf/open/floor/iron, +/area/station/security/brig) "wGa" = ( /obj/machinery/camera/directional/west{ c_tag = "Central Primary Hallway - Starboard - Art Storage" @@ -66380,6 +66502,13 @@ }, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) +"wHr" = ( +/obj/machinery/flasher/directional/east{ + id = "hopflash"; + pixel_x = 0 + }, +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/command) "wHu" = ( /turf/closed/wall, /area/station/science/lobby) @@ -66394,20 +66523,6 @@ }, /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) -"wHK" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals - Station Entrance" - }, -/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, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "wHL" = ( /obj/machinery/vending/wardrobe/bar_wardrobe, /obj/item/radio/intercom/directional/east, @@ -66426,7 +66541,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wIa" = ( /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, @@ -66532,7 +66647,7 @@ /area/station/maintenance/department/engine) "wLx" = ( /obj/structure/closet/wardrobe/mixed, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/commons/locker) @@ -66593,7 +66708,7 @@ /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) +/area/station/ai/satellite/interior) "wNp" = ( /obj/structure/bed, /obj/effect/decal/cleanable/cobweb, @@ -66655,12 +66770,6 @@ /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, @@ -66740,7 +66849,7 @@ req_access = list("ai_upload") }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wPB" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine/air, @@ -66833,6 +66942,16 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"wQE" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/warning/directional/southeast, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) "wQI" = ( /obj/machinery/door/poddoor/shutters/preopen{ dir = 8; @@ -66874,18 +66993,6 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics/garden) -"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, @@ -66974,7 +67081,7 @@ /obj/item/pen, /obj/item/papercutter, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wTs" = ( /obj/item/radio/intercom/directional/south, /obj/machinery/camera/directional/south{ @@ -66983,6 +67090,15 @@ /obj/structure/reagent_dispensers/fueltank/large, /turf/open/floor/iron, /area/station/engineering/atmos) +"wTM" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/computer/records/medical{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/storage) "wTO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -67021,13 +67137,6 @@ /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"; @@ -67182,7 +67291,7 @@ /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, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -67211,6 +67320,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron, /area/station/hallway/primary/central) "wYl" = ( @@ -67443,7 +67553,7 @@ }, /obj/machinery/light/cold/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xdF" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -67477,7 +67587,7 @@ /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) +/area/station/ai/satellite/exterior) "xeN" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -67593,43 +67703,6 @@ /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{ @@ -67677,7 +67750,7 @@ /obj/structure/cable/multilayer/connected, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "xgG" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/rack, @@ -67711,7 +67784,7 @@ /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) +/area/station/ai/satellite/exterior) "xhb" = ( /obj/machinery/meter, /obj/effect/decal/cleanable/dirt, @@ -67818,7 +67891,7 @@ pixel_x = -8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xje" = ( /obj/machinery/duct, /turf/open/floor/plating, @@ -67921,7 +67994,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "xkE" = ( /obj/machinery/recharge_station, /obj/effect/landmark/start/hangover, @@ -67993,7 +68066,7 @@ /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) +/area/station/ai/upload/chamber) "xlW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -68419,7 +68492,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "north-maint-viewingdeck" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -68517,7 +68590,7 @@ "xvd" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "xvf" = ( @@ -68617,6 +68690,11 @@ "xww" = ( /turf/closed/wall/r_wall, /area/station/engineering/storage/tech) +"xwC" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/station/service/library) "xwD" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron/white, @@ -68664,6 +68742,7 @@ "xxk" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "xxF" = ( @@ -68714,7 +68793,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xyq" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -68922,7 +69001,7 @@ dir = 6 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xCf" = ( /obj/item/clothing/suit/jacket/straight_jacket, /obj/item/electropack, @@ -68960,7 +69039,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xCx" = ( /obj/item/stack/package_wrap, /obj/item/stack/package_wrap, @@ -69119,7 +69198,8 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/delivery, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) @@ -69185,7 +69265,8 @@ /area/station/medical/medbay/lobby) "xFx" = ( /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) @@ -69227,7 +69308,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xGT" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, @@ -69384,11 +69465,11 @@ /turf/open/floor/iron/white, /area/station/science/ordnance/testlab) "xKd" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 +/obj/structure/sign/directions/engineering{ + dir = 4 }, -/turf/open/space/basic, -/area/space/nearstation) +/turf/closed/wall/r_wall, +/area/station/engineering/storage/tcomms) "xKh" = ( /obj/structure/railing{ dir = 10 @@ -69565,7 +69646,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "service-passthrough" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/greater) @@ -69593,6 +69674,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"xOB" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "xOF" = ( /obj/docking_port/stationary/laborcamp_home{ dir = 8 @@ -69715,7 +69805,7 @@ /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) +/area/station/ai/satellite/chamber) "xQO" = ( /obj/structure/table/glass, /obj/item/reagent_containers/cup/bottle/morphine{ @@ -69842,6 +69932,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/item/radio/intercom/directional/west, /obj/machinery/light/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "xTg" = ( @@ -69868,19 +69961,9 @@ }, /turf/open/floor/iron/dark, /area/station/medical/break_room) -"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/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/commons/dorms) @@ -70122,7 +70205,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xXM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/chair, @@ -70130,7 +70213,8 @@ dir = 1 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) @@ -70657,7 +70741,7 @@ /area/station/engineering/atmos) "yfL" = ( /turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "yfT" = ( /obj/structure/table/wood, /obj/item/pen/red, @@ -70731,19 +70815,6 @@ /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{ @@ -70801,21 +70872,23 @@ }, /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") +"yiB" = ( +/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) +"yiH" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 }, -/obj/machinery/fax{ - fax_name = "Medical"; - name = "Medical Fax Machine" +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 4 }, -/obj/structure/noticeboard/directional/north, -/obj/structure/sign/clock/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/office) +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/security/warden) "yiJ" = ( /obj/structure/chair/sofa/right/brown, /obj/item/toy/plush/moth{ @@ -70911,23 +70984,16 @@ /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/effect/turf_decal/trimline/red/filled/line{ + dir = 4 }, +/obj/structure/table/glass, +/obj/item/clothing/glasses/blindfold, /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) +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "ylt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -70972,10 +71038,6 @@ }, /turf/open/floor/iron, /area/station/security/brig) -"yme" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/security/checkpoint/customs) (1,1,1) = {" aaa @@ -80338,7 +80400,7 @@ aaa aaa wdr vvW -mtL +wdr kFT nDP qEt @@ -83185,7 +83247,7 @@ eIa vNM wdr lMJ -lXm +qEt jrY qEt lMJ @@ -83456,7 +83518,7 @@ pOa aox aox aox -euT +aox aox aaa aaa @@ -83970,7 +84032,7 @@ iCx pOa dlL qgf -gDZ +aOs jUb jUb nBy @@ -84462,7 +84524,7 @@ lCD fSJ lCD lCD -wHK +kAw wwI lCD vAe @@ -84973,7 +85035,7 @@ fcq xjh qhW xjh -yme +xjh fxI tep dHc @@ -85275,7 +85337,7 @@ aaa aaa lMJ aox -pZW +lMJ aaa aaa xjH @@ -85789,7 +85851,7 @@ jUb jUb jUb oDs -aCW +oUJ nBy aaa xjH @@ -87519,7 +87581,7 @@ com hKg hKg xXR -kat +hKg hKg pnI hKg @@ -87529,7 +87591,7 @@ aaa hxo bnA riU -oDJ +cbz lAa fyz hxo @@ -88281,7 +88343,7 @@ dwI iPE vfv wXv -qCm +diI tXO jXu iGB @@ -88537,7 +88599,7 @@ ggZ isO gYE uEC -wgw +jXu twr fpn jXu @@ -88634,7 +88696,7 @@ gAf tSw tSw aaa -gda +lAu aaa aaa sGL @@ -89147,7 +89209,7 @@ tSw aBQ qEf qEf -aIl +xOB gXF atk bhS @@ -89823,7 +89885,7 @@ dwH fUr fUr fUr -fUr +ilF bkJ iIE cAf @@ -89847,7 +89909,7 @@ dfk rQD nsh vWD -uzK +jGH liU nrB smB @@ -89881,7 +89943,7 @@ pOa pOa pOa aDl -pOa +ayH kRA jUb xYq @@ -90128,7 +90190,7 @@ wki jIY mjr bXQ -cxC +xwC saN tPe sVY @@ -90141,8 +90203,8 @@ uOH ubp tTF jUb -dqN -qKs +iBf +mWW jUb jUb mqz @@ -90396,10 +90458,10 @@ bCr pOa bAA pOa -vZE +pOa +jUb +jUb jUb -iBf -mWW jUb kpB dIK @@ -90596,8 +90658,8 @@ ieD gnR ggW jXu -fpn -knQ +siY +sHu bPM sHu mkz @@ -90651,14 +90713,14 @@ kJx lIa xjC pOa -uOH -pOa -pOa -jUb -jUb -jUb -jUb -hfi +jED +fyA +gSt +jGZ +lYG +uiM +nVq +dIK jUb jUb sSp @@ -90692,7 +90754,7 @@ oxj sbs tSw lah -mPH +vUM fje jgW tSw @@ -90910,13 +90972,13 @@ nZq pOa iar uYD -sSn -nDT -lYG -uiM -nVq -dIK -jUb +nZX +nZX +nZX +lxj +nZX +nZX +sSp kpi stZ tuC @@ -90924,7 +90986,7 @@ rDJ guC fTE hBY -vVI +bKl gmN vun iRy @@ -91166,14 +91228,14 @@ utt wLu pOa uAM -vZE -pOa -jUb -jUb +nku +nZX +mpV +izs fYc -jUb -jUb -jUb +gvd +aCZ +sSp ina drE vfa @@ -91423,13 +91485,13 @@ pEH pEH pOa shl -cIW -pOa -mpV -izs +fRt +nZX +xYM +jFF dOz -gvd -grm +aSe +jeL sSp wvP wUQ @@ -91681,12 +91743,12 @@ knK sQx kir vXH -pOa -xYM -jFF +sHd +pBs +lgC gtd -aSe -jeL +cej +phi jxc tuC iMv @@ -91888,9 +91950,9 @@ rlU qrg cpi cpi -nSn -qpD -qYC +pEl +rlU +gda pNC uqX loR @@ -91938,9 +92000,9 @@ sVY pOa sQY nPt -qSk -pBs -lgC +nZX +hCy +jkT avb uPi sfF @@ -91979,7 +92041,7 @@ tSw wZA vpP tSw -wRB +tBO iix cvy xvf @@ -92170,7 +92232,7 @@ rBB kJk xJj gZq -aiy +ott oor mnP tEr @@ -92195,11 +92257,11 @@ sVY vXH sQY tWq -pOa -hCy -jkT -gdp -eRc +nZX +ubP +jqQ +mbV +hEA qNi jxc gNT @@ -92402,7 +92464,7 @@ rlU vbF wHW wHW -okj +khC rlU qYC pNC @@ -92416,7 +92478,7 @@ kQP kQP kQP kQP -rcR +lVp sZP pxK tAV @@ -92452,12 +92514,12 @@ sVY clp etn ayH -pOa -ubP -jqQ -mbV -hEA -vxW +bMY +bMY +pYw +lyh +pYw +bMY sSp jFB bHE @@ -92473,7 +92535,7 @@ wIF wWs fOu fBJ -piJ +wTM rvb nsD tFr @@ -92669,7 +92731,7 @@ hTM aHt aHt aHt -eaQ +jMg aHt qlW jfg @@ -92709,12 +92771,12 @@ sVY pOa qZn pOa -pOa bMY -oNP +cbV +fFV odu -oNP -bMY +rEu +qEP sSp sAv pSl @@ -92734,7 +92796,7 @@ opD vun gQG tFr -oqi +nMf sDJ uYp pCl @@ -92965,8 +93027,8 @@ sVY sVY xxk ahr +lvU bMY -yim rvq fFi iWD @@ -92984,7 +93046,7 @@ mpk pyU vun eFG -cBH +lWX hwe iZn rar @@ -93206,7 +93268,7 @@ guR lsf usA vLi -vmX +mJO usA keR xuS @@ -93218,11 +93280,11 @@ usA vLi usA jWg -tKu +kJf bBA txz wYe -bMY +dYa pUM mna gVn @@ -93479,22 +93541,22 @@ gUt dvZ qQm waF +pkn bMY bMY -nur -jfr +pYw vIn pYw -irL -oNP +bMY +fEK rEt xST -pLz +dpI dpI ttE ttE sZH -wUG +yiB eGJ rpw gQG @@ -93506,7 +93568,7 @@ pLz lgT hDp sOn -xUb +qGw ePg eMI jfN @@ -93737,11 +93799,11 @@ vVV htd tAG gDv -oNP +cjb iPM -eRX +mvY oYp -wOz +mvY mvY rne bXX @@ -93992,12 +94054,12 @@ tOh tOh nNY hPM -xAb -dYa -owf -iPM -tPb -bax +ttV +pJU +duu +vGI +xxU +lpk ghc cxt oNP @@ -94251,13 +94313,13 @@ iun htd xAb nvI -oNP +fEK ehE rlw bTm ylf tzI -bMY +fEK uET iZF qyr @@ -94510,7 +94572,7 @@ aum qPJ qPJ qPJ -kOh +ivm qPJ qPJ qPJ @@ -94752,8 +94814,8 @@ lxp qRI urA nIR -hyN -uaN +tOh +mGl jIg dTr rIL @@ -94948,7 +95010,7 @@ cFc tdW xQO tnb -cui +aqv aBL rUG cWI @@ -95531,8 +95593,8 @@ yfL yfL yfL yfL -hyN -qoR +tOh +jpS kON eLv qPJ @@ -95784,7 +95846,7 @@ gBD twl bcx rhK -rKJ +gwG wFe rjz fHd @@ -95794,7 +95856,7 @@ htd ebM uRA mTk -yhm +nTD rbs jHA lln @@ -96034,7 +96096,7 @@ htG bIq pJR mQq -ndS +wHr urA pFG gBD @@ -96239,7 +96301,7 @@ kNY btR btR swe -fNh +bHU wUc mtG uyd @@ -96252,7 +96314,7 @@ jyJ jyJ jyJ jyJ -cJj +dKl klp pHb wsX @@ -96496,7 +96558,7 @@ ndj cWI gCE lAM -osw +lAM lAM rJB ggj @@ -96509,7 +96571,7 @@ xqI gWc oAN iKj -vQI +lAM mCJ lsP ekP @@ -96550,8 +96612,8 @@ bOk tNg vpg ebx -aks -hux +gaO +gBD bbT ilq kAp @@ -97330,8 +97392,8 @@ sYh dVw nBs eLa -vyi -nNY +jzN +hhE htd tHR sTz @@ -97384,9 +97446,9 @@ bxX iUm aAS kJB -biA +woU iUm -xKd +lAu lMJ aaa aaa @@ -97576,8 +97638,8 @@ duI lwt ddm vKL -gmH -lSz +dho +wCR aks qzz qRV @@ -97795,7 +97857,7 @@ aeq dFW fYJ ycM -tYQ +dlf dsk ewC iAN @@ -98123,7 +98185,7 @@ iEK jyt vWn joq -naf +kUA hvs wWk aCE @@ -98134,11 +98196,11 @@ qQY njX njX njX -gSW +mio oAu bxf njX -cRw +jZU uGE njX vNv @@ -98567,7 +98629,7 @@ vDh ewj bkl wZU -pMy +yiH oGH orx eeq @@ -98823,8 +98885,8 @@ aeq jpj ewj ycM -mMM -bkl +mop +ycM ycM bkl bkl @@ -99082,7 +99144,7 @@ ayV gFR khm uok -bzV +vMj ezg uVv pdI @@ -99093,7 +99155,7 @@ olw pxT xEt wXT -jcR +hVQ fky vWI txH @@ -99117,8 +99179,8 @@ duI duI wtX ppB -nEC -gmH +wAI +dho ebx vQe kHn @@ -99140,7 +99202,7 @@ rgZ suW hJF cZK -euw +bto cXg nyy gVl @@ -99150,7 +99212,7 @@ ebV dZb ebV fma -xgi +bYQ sck iwA puP @@ -99339,8 +99401,8 @@ nZk sVi tjv pHb -syc -wkh +iNy +wFP dGW hhp bJq @@ -99386,8 +99448,8 @@ aAI gzi krL cqm -vyi -wpx +jzN +kGP htd tHR udN @@ -99596,7 +99658,7 @@ duF cJj erx lsP -vYF +mKQ eaP fDm bAV @@ -100113,7 +100175,7 @@ pHb qwh mrL fnN -cqd +jTk ieV qhz juj @@ -100148,8 +100210,8 @@ eoD eoD bcT xPN -vQe -kmZ +klN +tvE buL pha sdp @@ -100659,7 +100721,7 @@ syo sYp wBs apw -eVX +qfK syo nue vQe @@ -100704,7 +100766,7 @@ pJl rYI gHw nDw -eBU +jYa aYX vzx gyQ @@ -101653,7 +101715,7 @@ pBG sOZ uWo jMy -eey +gHD aHr mhA xNo @@ -102213,8 +102275,8 @@ tvE tvE aan tvE -kmZ -tsT +tvE +gJh htd dhU dkW @@ -102698,8 +102760,8 @@ iIf pJE uUl cBf -ftM -wEG +cBf +vQI htd vET syo @@ -102963,7 +103025,7 @@ sqM kwQ jZR sqM -cOP +dtE nOj wGa kwQ @@ -102971,7 +103033,7 @@ mmS vLb jmT jZR -mJN +fDb cwP sqM hBr @@ -102982,7 +103044,7 @@ diE dYg hwF diE -ggq +gyW nnR wah wpx @@ -103206,7 +103268,7 @@ rUO gmk qCP mPw -jhc +sqB iPp eVz pJE @@ -103247,8 +103309,8 @@ cfe ddO sLE cEv -cyM -eeT +tGy +hcg tUn hKV fWK @@ -103766,7 +103828,7 @@ qOM tUn ftj wXF -doM +bLq tZo bXg oFT @@ -103987,7 +104049,7 @@ xNv mqK qXB eFR -ubD +eXh usK dZm vFB @@ -104029,7 +104091,7 @@ rCx nBj gYe vQb -mdu +sQQ xPm ohZ sac @@ -104204,7 +104266,7 @@ aaa aaa aaa aaa -mxn +euT yeV hUB qmf @@ -104227,7 +104289,7 @@ fRW qnS uxb hAk -gzO +eve eqn jSb kAF @@ -105643,13 +105705,13 @@ lMJ dxK lMJ lMJ -weq +cxz kJi pgU qRS pnk kJi -weq +cxz aaa aaa aaa @@ -105804,7 +105866,7 @@ sFB mal wIf pmZ -qdI +oBK ttF sRY wDh @@ -105901,11 +105963,11 @@ aaa lMJ kJi kJi -hxV +fiu xhh xhh cmH -grw +jHy kJi kJi aaa @@ -106007,7 +106069,7 @@ cfy oAa peF peF -sSs +nOA gkM plL uKL @@ -106415,11 +106477,11 @@ aaa lMJ kJi kJi -coc +gDe bQk xhh xhh -iYD +wQE kJi kJi aaa @@ -106671,13 +106733,13 @@ lMJ dxK lMJ lMJ -weq +cxz kJi vpl cDb xOI kJi -weq +cxz aaa aaa aaa @@ -107046,7 +107108,7 @@ ewk dtg wcr mMx -edq +cUq wcr mMx qTz @@ -107066,9 +107128,9 @@ dEr ckW aly qXB -edC -psZ -wzK +eYj +wrn +iFl tCS xww hht @@ -107323,7 +107385,7 @@ dkh vcb bjD qXB -kbo +gnk tbd fVt tCS @@ -107377,9 +107439,9 @@ wXF mOD fAI tUn -tId +aah okQ -hEV +oBE bLd uGX xuD @@ -107634,9 +107696,9 @@ wXF wXF wXF wXF -bcb +gFQ gMQ -bcb +gFQ oWk clj xuD @@ -108413,7 +108475,7 @@ nPJ gLi xuD xuD -xuD +aDs jdQ uSM bLd @@ -108670,7 +108732,7 @@ mEL sCM clj uGX -tbI +fPD deD xuD xuD @@ -108678,7 +108740,7 @@ xuD xuD imU mEL -oWc +oWk rYy rUT uIi @@ -109881,7 +109943,7 @@ tCS aeu kSB gon -rux +hYH yaD uXd sVc @@ -109889,7 +109951,7 @@ tfg ssI ssI uXd -kCq +jyZ sXe gLo ofk @@ -109898,7 +109960,7 @@ fDL hSt qhw naN -fMN +lch icR sqE nGA @@ -110418,7 +110480,7 @@ sqE mEO gnS jPf -esk +xKd esk esk vgd @@ -110680,7 +110742,7 @@ mbJ ncd gYO flE -fcA +lpL cVj uKz fnT @@ -111186,7 +111248,7 @@ oWm cuc adz tUw -rHq +lkE peX kRi klw @@ -111425,7 +111487,7 @@ loA tlh loA erh -iHu +bRn xAW lia aXK @@ -112196,13 +112258,13 @@ wbF qaA bMA rao -vaI +djk yaF qaA fTL qaA wgf -jUT +mMH rao qaA haR @@ -112268,8 +112330,8 @@ aaa wmL cvO fjO -hUd -uWk +pSR +wmL aaa aaa aaa @@ -112453,13 +112515,13 @@ kYG sGC vuJ sGC -cFu +kYG kYG sGC wBM sGC dOs -cFu +kYG sGC pqb sNt @@ -113039,7 +113101,7 @@ eYu agN bXs bvg -juH +kZo pJA hLJ oMA @@ -114785,7 +114847,7 @@ fJy fJy fJy pnJ -dKl +fJy fJy byR iFh @@ -115830,7 +115892,7 @@ vRS gyJ qLU fFA -nGq +vYP kRf uQe pul @@ -117148,7 +117210,7 @@ nEb jCO caf tgm -gKD +rgH fdZ fdZ fdZ @@ -117367,7 +117429,7 @@ aaa vhv vhv vhv -sCp +vhv mUL isr eDc @@ -117623,8 +117685,8 @@ aaa aaa vhv sZI -trG -hEX +wau +wlQ vTX vTX gSu @@ -119173,8 +119235,8 @@ nqR oog vTX jTS -sCp -kJO +vhv +cAr cyW jvj pul @@ -119204,7 +119266,7 @@ rDf eUe eSb nnc -nnc +mtL nnc rvK nnc @@ -122748,10 +122810,10 @@ aaa aaa aaa lMJ -beq +ghL qmR cUI -beq +ghL blx qZX hml @@ -124294,7 +124356,7 @@ gfU gfU gfU gfU -evI +lhI abR pfe cok @@ -125062,7 +125124,7 @@ jEr lro aWN aVl -jGa +eBW uLv bjQ bjQ diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm index 8789106bd6ad..276d55ba7dba 100644 --- a/_maps/map_files/Mining/Lavaland.dmm +++ b/_maps/map_files/Mining/Lavaland.dmm @@ -20,7 +20,6 @@ /turf/closed/mineral/random/high_chance/volcanic, /area/lavaland/surface/outdoors) "ae" = ( -/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/blue/filled/line{ @@ -82,12 +81,6 @@ /obj/item/clothing/glasses/meson, /turf/open/floor/iron/dark, /area/mine/storage/public) -"as" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "av" = ( /obj/machinery/computer/arcade/orion_trail{ dir = 4 @@ -100,15 +93,10 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "aF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) -"aH" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/obj/structure/lattice/catwalk/mining, +/obj/structure/railing, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) "aM" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "lavaland_living_east_maint" @@ -118,7 +106,7 @@ /obj/machinery/door/airlock/external{ name = "Mining External Airlock" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/decal/cleanable/dirt, @@ -153,20 +141,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/mine/maintenance/service) -"aX" = ( -/obj/effect/turf_decal/sand/plating/volcanic, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plating/lavaland_atmos, -/area/lavaland/surface/outdoors) -"ba" = ( -/obj/structure/chair/sofa/middle{ - dir = 1; - color = "#AA4A44" - }, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "bb" = ( /obj/structure/closet/crate/internals, /obj/item/tank/internals/emergency_oxygen, @@ -185,12 +159,19 @@ }, /area/mine/laborcamp/production) "be" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Raptor Ranch External Airlock" +/obj/structure/railing{ + dir = 6 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) +/obj/structure/table/wood, +/obj/item/raptor_dex, +/obj/item/raptor_dex{ + pixel_y = 7 + }, +/obj/item/raptor_dex{ + pixel_y = 13 + }, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "bf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large, @@ -234,10 +215,6 @@ }, /turf/open/floor/plating, /area/mine/maintenance/production) -"bE" = ( -/obj/structure/table/wood, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "bH" = ( /obj/structure/table, /obj/item/book/manual/chef_recipes{ @@ -398,8 +375,6 @@ /area/mine/maintenance/production) "cy" = ( /obj/structure/bed/medical/emergency, -/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, /turf/open/floor/iron/white/smooth_corner{ dir = 8 @@ -630,18 +605,22 @@ /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) "dF" = ( -/obj/structure/table/wood, -/obj/item/food/meat/slab, -/obj/item/food/meat/slab{ - pixel_x = 6; - pixel_y = 5 +/obj/item/reagent_containers/cup/bucket/wooden{ + pixel_y = 12; + pixel_x = 10 + }, +/obj/structure/chair/plastic{ + dir = 4 }, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "dI" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ash/fireblossom, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "dJ" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -699,10 +678,17 @@ /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_edge{ dir = 8 }, /area/mine/laborcamp/production) +"ep" = ( +/obj/structure/sign/directions/evac/directional/south{ + pixel_y = 0 + }, +/turf/closed/wall, +/area/mine/production) "et" = ( /obj/structure/stone_tile/block/cracked{ dir = 4 @@ -782,11 +768,12 @@ }, /area/mine/cafeteria) "eL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/sand/plating/volcanic, +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "eN" = ( /obj/structure/chair/wood{ dir = 1 @@ -834,9 +821,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/mine/laborcamp/security/maintenance) -"fa" = ( -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "fb" = ( /obj/structure/railing/corner{ dir = 4 @@ -847,6 +831,7 @@ "fe" = ( /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/mine/laborcamp/production) "ff" = ( @@ -875,6 +860,7 @@ /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, /area/mine/laborcamp) "fo" = ( @@ -1239,7 +1225,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/structure/cable, /obj/machinery/light/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, /obj/item/radio/intercom/directional/south, @@ -1289,8 +1274,10 @@ /turf/open/floor/iron/freezer, /area/mine/living_quarters) "hl" = ( -/obj/structure/tank_holder/extinguisher, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "hn" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -1410,13 +1397,6 @@ /obj/structure/stone_tile, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"hM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "hR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1456,6 +1436,7 @@ name = "Infirmary" }, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/side{ dir = 1 }, @@ -1516,10 +1497,6 @@ /obj/item/clothing/glasses/meson, /turf/open/floor/iron/dark, /area/mine/storage/public) -"il" = ( -/obj/item/flashlight/lantern/on, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "io" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1676,6 +1653,13 @@ }, /turf/open/floor/iron/freezer, /area/mine/laborcamp) +"jn" = ( +/obj/structure/ore_vent/starter_resources{ + icon_state = "ore_vent_active" + }, +/obj/effect/landmark/mining_center, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "jq" = ( /obj/structure/table, /obj/item/paper_bin, @@ -1707,9 +1691,22 @@ /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) "jt" = ( -/obj/structure/fireplace, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/effect/turf_decal/trimline/yellow/filled/arrow_cw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/arrow_cw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/mine/production) "jw" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -1754,11 +1751,6 @@ }, /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) -"jJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "jL" = ( /obj/structure/stone_tile/surrounding_tile, /obj/structure/stone_tile/surrounding_tile{ @@ -1809,12 +1801,23 @@ }, /area/mine/production) "jX" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/effect/turf_decal/trimline/yellow/filled/arrow_cw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/arrow_cw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 4 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) +/area/mine/production) "ka" = ( /obj/structure/table, /obj/machinery/newscaster/directional/north, @@ -1826,18 +1829,16 @@ /turf/open/floor/iron/checker, /area/mine/cafeteria) "kf" = ( -/obj/structure/railing{ - dir = 9 +/obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/marker_beacon/purple, +/obj/structure/railing/corner/end/flip{ + dir = 8 }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "kg" = ( /turf/closed/wall/r_wall, /area/mine/laborcamp) -"ki" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) "kk" = ( /obj/structure/stone_tile/block{ dir = 8 @@ -2186,12 +2187,15 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/airlock/external/glass{ name = "Mining Shuttle Airlock" }, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark/textured_large, /area/mine/production) "lN" = ( @@ -2321,17 +2325,6 @@ }, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"mk" = ( -/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/lavaland, -/area/mine/lobby/raptor) "ml" = ( /obj/structure/stone_tile/block/cracked{ dir = 8 @@ -2412,7 +2405,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -2745,12 +2738,6 @@ /obj/effect/spawner/random/trash/food_packaging, /turf/open/floor/iron/checker, /area/mine/laborcamp) -"nO" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) "nP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/scrubber, @@ -2851,7 +2838,6 @@ /turf/open/floor/iron/dark, /area/mine/production) "oq" = ( -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) @@ -2929,14 +2915,9 @@ /turf/open/floor/iron/dark, /area/mine/laborcamp) "oO" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Mining External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) +/obj/structure/railing, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "oS" = ( /obj/machinery/door/airlock/external/glass{ name = "Mining External Airlock" @@ -3008,7 +2989,6 @@ "pp" = ( /obj/effect/spawner/random/trash/graffiti, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "pq" = ( @@ -3083,12 +3063,6 @@ }, /turf/open/floor/plating, /area/mine/laborcamp) -"pF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "pH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3115,9 +3089,20 @@ /turf/open/floor/iron/freezer, /area/mine/laborcamp/quarters) "pM" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/mine/lobby/raptor) +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/arrow_ccw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/mine/production) "pO" = ( /obj/machinery/shower/directional/south, /obj/machinery/door/window/left/directional/south, @@ -3127,7 +3112,6 @@ "pP" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "pQ" = ( @@ -3277,11 +3261,6 @@ }, /turf/open/floor/iron/dark, /area/mine/laborcamp/security) -"qB" = ( -/obj/machinery/smartfridge/drying/rack, -/obj/item/food/cheese/firm_cheese, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "qH" = ( /obj/machinery/door/airlock{ id_tag = "miningbathroomprivate"; @@ -3341,35 +3320,12 @@ }, /turf/open/floor/plating/lavaland_atmos, /area/lavaland/surface/outdoors) -"rf" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "rj" = ( -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = -1; - pixel_x = 5 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 9; - pixel_x = 8 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 9; - pixel_x = 2 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?" - }, +/obj/structure/railing, +/obj/structure/table/wood, +/obj/item/flashlight/lantern/on, /turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/area/lavaland/surface/outdoors) "rm" = ( /obj/structure/sign/warning/gas_mask/directional/west, /obj/effect/decal/cleanable/dirt, @@ -3412,12 +3368,13 @@ /turf/open/floor/plating, /area/mine/maintenance/service) "rB" = ( -/obj/structure/chair/sofa/corner{ - dir = 1; - color = "#AA4A44" +/obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/railing/corner/end/flip{ + dir = 4 }, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/obj/structure/marker_beacon/purple, +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "rF" = ( /turf/closed/wall/r_wall, /area/mine/maintenance/labor) @@ -3488,11 +3445,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/mine/maintenance/service) -"sa" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern/on, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "se" = ( /turf/open/floor/iron/dark/textured_large, /area/mine/eva) @@ -3589,10 +3541,6 @@ "sO" = ( /turf/open/floor/plating, /area/mine/maintenance/service) -"sQ" = ( -/obj/structure/ore_container/food_trough/raptor_trough, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "sR" = ( /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, @@ -3666,12 +3614,11 @@ }, /area/mine/cafeteria) "tf" = ( -/obj/structure/chair/sofa/corner{ - dir = 8; - color = "#AA4A44" +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "tg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance{ @@ -3735,8 +3682,6 @@ "tB" = ( /obj/structure/bed, /obj/item/bedsheet, -/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 }, @@ -3861,10 +3806,6 @@ }, /turf/open/floor/iron/white/smooth_edge, /area/mine/cafeteria) -"uw" = ( -/obj/effect/spawner/random/lavaland_mob/raptor, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "ux" = ( /obj/machinery/door/airlock{ id_tag = "miningdorm1"; @@ -3880,6 +3821,7 @@ /obj/effect/turf_decal/siding/wideplating_new{ dir = 9 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/checker, /area/mine/laborcamp) "uD" = ( @@ -3937,8 +3879,8 @@ /turf/open/floor/iron/dark/smooth_edge, /area/mine/laborcamp/security) "vb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_corner, /area/mine/medical) "vc" = ( @@ -4028,14 +3970,24 @@ /turf/open/floor/plating, /area/mine/hydroponics) "vr" = ( -/obj/structure/railing{ - dir = 1 +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw{ + dir = 8 }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/obj/effect/turf_decal/trimline/red/filled/arrow_ccw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/mine/production) "vu" = ( /obj/structure/bed/medical/emergency, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, /area/mine/medical) @@ -4094,6 +4046,7 @@ /area/mine/living_quarters) "vJ" = ( /obj/item/cigbutt, +/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "vL" = ( @@ -4101,14 +4054,6 @@ /obj/item/cigbutt, /turf/open/floor/iron/smooth, /area/mine/laborcamp) -"vM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "vN" = ( /obj/machinery/computer/records/security, /obj/structure/cable, @@ -4161,11 +4106,12 @@ /turf/open/floor/iron/checker, /area/mine/laborcamp) "wa" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("mine") +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/structure/ore_container/food_trough/raptor_trough, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "wb" = ( /obj/structure/chair{ dir = 8 @@ -4648,7 +4594,11 @@ /turf/open/floor/plating, /area/mine/maintenance/service) "ze" = ( -/turf/open/misc/ashplanet/rocky, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/ore_container/food_trough/raptor_trough, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "zf" = ( /obj/machinery/door/airlock{ @@ -4804,12 +4754,9 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "zX" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/structure/railing/corner, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "Ae" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4826,12 +4773,12 @@ /turf/open/floor/plating, /area/mine/laborcamp/production) "Ah" = ( -/obj/machinery/microwave{ - pixel_y = 6 +/obj/structure/lattice/catwalk/mining, +/obj/structure/railing{ + dir = 1 }, -/obj/structure/table/wood, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) "Ai" = ( /obj/structure/stone_tile/cracked{ dir = 1 @@ -4868,10 +4815,10 @@ /turf/open/floor/iron/dark/textured_large, /area/mine/production) "Av" = ( -/obj/structure/railing{ - dir = 9 +/obj/structure/railing/corner{ + dir = 8 }, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Ax" = ( /obj/item/pickaxe, @@ -4896,11 +4843,10 @@ /turf/open/floor/iron/smooth, /area/mine/laborcamp) "AF" = ( -/obj/structure/lattice/catwalk/mining, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/lava/smooth/lava_land_surface, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "AI" = ( /obj/structure/cable, @@ -4979,7 +4925,6 @@ /turf/open/floor/iron/smooth, /area/mine/laborcamp) "BA" = ( -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_edge{ dir = 8 @@ -5034,7 +4979,7 @@ /obj/machinery/door/airlock/external{ name = "Mining External Airlock" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, @@ -5079,30 +5024,9 @@ }, /turf/open/floor/iron/checker, /area/mine/cafeteria) -"Cn" = ( -/obj/structure/table/wood, -/obj/item/plate{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/plate{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/reagent_containers/cup/glass/mug/tea{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/effect/turf_decal/siding/wood/end{ - dir = 8 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "Cv" = ( -/obj/effect/turf_decal/sand/plating/volcanic, -/obj/structure/marker_beacon/purple, -/obj/effect/turf_decal/sand/plating/volcanic, -/turf/open/floor/plating/lavaland_atmos, +/obj/effect/spawner/random/lavaland_mob/raptor/young, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Cz" = ( /obj/machinery/door/airlock/medical/glass{ @@ -5156,21 +5080,27 @@ /turf/open/floor/iron/dark, /area/mine/mechbay) "CI" = ( -/obj/structure/sign/directions/supply/directional/east{ - pixel_x = null; - pixel_y = -24 +/obj/structure/railing{ + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) +"CM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw{ + dir = 8 }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/edge{ - dir = 1 +/obj/effect/turf_decal/trimline/red/filled/arrow_ccw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 }, -/area/mine/living_quarters) -"CM" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/textured_large, /area/mine/production) "CO" = ( /turf/open/floor/iron/textured_large, @@ -5187,7 +5117,6 @@ /obj/machinery/door/airlock/maintenance{ name = "Mining Station Maintenance" }, -/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/any/engineering/maintenance, @@ -5202,9 +5131,6 @@ /obj/structure/curtain, /turf/open/floor/iron/freezer, /area/mine/living_quarters) -"CV" = ( -/turf/closed/wall/mineral/iron, -/area/mine/lobby/raptor) "CX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5409,6 +5335,7 @@ "Ez" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "EB" = ( @@ -5469,12 +5396,6 @@ dir = 1 }, /area/mine/production) -"EP" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "EQ" = ( /turf/open/floor/iron/smooth_edge{ dir = 8 @@ -5529,12 +5450,6 @@ }, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"Fo" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "Fp" = ( /obj/structure/table, /obj/machinery/recharger, @@ -5544,11 +5459,17 @@ /turf/open/floor/iron/dark, /area/mine/laborcamp/security) "Fr" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Mining Shuttle Airlock" +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/turf/open/floor/iron/dark/textured_large, /area/mine/production) "Fs" = ( /obj/effect/turf_decal/sand/plating/volcanic, @@ -5593,10 +5514,6 @@ "FH" = ( /turf/closed/wall, /area/lavaland/surface/outdoors) -"FI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "FL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small/directional/west, @@ -5682,6 +5599,10 @@ /obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron/dark, /area/mine/laborcamp) +"Gw" = ( +/obj/structure/sign/directions/supply/directional/east, +/turf/closed/wall, +/area/mine/living_quarters) "Gx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5724,9 +5645,6 @@ dir = 8 }, /area/mine/production) -"GG" = ( -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "GH" = ( /obj/machinery/door/airlock/glass{ name = "Arrival Lounge" @@ -5736,12 +5654,6 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron, /area/mine/lounge) -"GI" = ( -/obj/structure/rack, -/obj/item/stack/sheet/mineral/wood/fifty, -/obj/item/lighter, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "GL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5790,7 +5702,6 @@ /turf/open/floor/plating, /area/mine/maintenance/labor) "Hd" = ( -/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, @@ -6137,9 +6048,10 @@ /area/mine/laborcamp) "Jg" = ( /obj/effect/turf_decal/sand/plating/volcanic, -/obj/structure/railing{ - dir = 10 +/obj/structure/railing/corner/end{ + dir = 4 }, +/obj/structure/marker_beacon/purple, /turf/open/floor/plating/lavaland_atmos, /area/lavaland/surface/outdoors) "Jh" = ( @@ -6194,7 +6106,6 @@ /turf/open/floor/iron, /area/mine/lounge) "Ju" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/mine/mechbay) @@ -6215,10 +6126,6 @@ /area/lavaland/surface/outdoors) "JA" = ( /obj/machinery/computer/shuttle/mining/common, -/obj/structure/sign/directions/evac/directional/east{ - pixel_x = 0; - pixel_y = 24 - }, /obj/machinery/camera/autoname/directional/north{ network = list("mine") }, @@ -6400,40 +6307,11 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "Km" = ( -/obj/structure/rack, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?" - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 9 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 9; - pixel_x = 2 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 6 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 6; - pixel_x = 9 - }, -/obj/item/crowbar/large, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/structure/railing/corner/end{ + dir = 8 }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "Kn" = ( /obj/machinery/telecomms/relay/preset/mining, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6453,11 +6331,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/mine/storage/public) -"Kp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_edge, -/area/mine/laborcamp) "Kq" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -6527,12 +6400,6 @@ }, /turf/open/floor/iron/checker, /area/mine/cafeteria) -"KO" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "KV" = ( /obj/structure/table, /obj/machinery/light/directional/east, @@ -6573,6 +6440,7 @@ dir = 1 }, /obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/checker, /area/mine/laborcamp) "Lg" = ( @@ -6654,15 +6522,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/mine/storage) -"Lv" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "Lw" = ( /obj/effect/turf_decal/sand/plating/volcanic, /obj/effect/turf_decal/stripes/line{ @@ -6681,7 +6540,7 @@ /area/mine/storage) "LE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 8 }, /obj/effect/turf_decal/siding/yellow{ dir = 1 @@ -6754,7 +6613,6 @@ /area/mine/laborcamp/production) "LR" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/iron/smooth_edge{ dir = 4 @@ -6779,7 +6637,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_edge, /area/mine/laborcamp) @@ -6820,10 +6677,6 @@ dir = 8 }, /area/mine/lounge) -"Mf" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "Mr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -6902,28 +6755,19 @@ /turf/open/floor/iron/checker, /area/mine/cafeteria) "MQ" = ( -/obj/structure/railing/corner{ - dir = 4 - }, /obj/structure/sign/directions/security/directional/west{ - pixel_x = 32; - pixel_y = -8 + pixel_y = -7; + pixel_x = 0 }, -/obj/structure/sign/directions/lavaland/directional/north{ - pixel_x = 32; - pixel_y = 8 - }, -/obj/effect/turf_decal/sand/plating/volcanic, -/turf/open/floor/plating/lavaland_atmos, +/turf/closed/wall, /area/lavaland/surface/outdoors) "MS" = ( /turf/open/floor/carpet/executive, /area/mine/lounge) "MW" = ( -/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/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/smooth_edge{ dir = 4 }, @@ -6932,6 +6776,7 @@ /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/mine/laborcamp/production) "Nc" = ( @@ -7004,6 +6849,7 @@ /obj/structure/ore_box, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "Ns" = ( @@ -7039,7 +6885,6 @@ "Nz" = ( /obj/effect/turf_decal/bot, /obj/structure/ore_box, -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) @@ -7066,9 +6911,6 @@ /obj/machinery/computer/order_console/mining, /turf/open/floor/iron/dark, /area/mine/production) -"NK" = ( -/turf/open/misc/ashplanet/ash, -/area/lavaland/surface/outdoors) "NL" = ( /obj/structure/railing, /obj/structure/lattice/catwalk/mining, @@ -7079,12 +6921,12 @@ /turf/open/floor/plating, /area/mine/laborcamp/security/maintenance) "NP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random/lavaland_mob/raptor/baby, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "NR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -7094,9 +6936,6 @@ dir = 1 }, /area/mine/laborcamp/production) -"NS" = ( -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "NT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7191,13 +7030,6 @@ }, /turf/open/floor/iron, /area/mine/lounge) -"Oo" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/item/reagent_containers/cup/bucket/wooden, -/turf/open/misc/hay/lavaland, -/area/lavaland/surface/outdoors) "Op" = ( /obj/structure/stone_tile/slab, /turf/open/misc/asteroid/basalt/lava_land_surface, @@ -7219,16 +7051,6 @@ dir = 4 }, /area/mine/laborcamp/security) -"OE" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "OH" = ( /obj/item/storage/fancy/cigarettes/cigpack_robust{ pixel_x = -8; @@ -7275,17 +7097,6 @@ /obj/structure/cable, /turf/open/floor/iron/white/textured_large, /area/mine/cafeteria) -"OW" = ( -/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/lavaland, -/area/mine/lobby/raptor) "OZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7309,13 +7120,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating/lavaland_atmos, /area/lavaland/surface/outdoors) -"Pe" = ( -/obj/structure/lattice/catwalk/mining, -/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/lavaland_atmos, -/area/lavaland/surface/outdoors) "Pi" = ( /obj/machinery/light/small/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, @@ -7355,10 +7159,10 @@ /turf/open/floor/plating, /area/mine/cafeteria) "Pn" = ( -/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/lavaland_atmos, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Po" = ( /obj/structure/table, @@ -7520,12 +7324,6 @@ }, /turf/open/floor/iron/dark, /area/mine/mechbay) -"Qq" = ( -/obj/structure/ore_vent/starter_resources{ - icon_state = "ore_vent_active" - }, -/turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) "Qw" = ( /obj/structure/stone_tile/cracked, /obj/structure/stone_tile{ @@ -7672,23 +7470,6 @@ /obj/structure/easel, /turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) -"Rj" = ( -/obj/machinery/suit_storage_unit/mining, -/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, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 8 - }, -/area/mine/eva) -"Rm" = ( -/obj/structure/bed, -/obj/effect/spawner/random/bedsheet, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "Ro" = ( /obj/effect/turf_decal/loading_area, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -7745,26 +7526,16 @@ /turf/closed/wall, /area/mine/maintenance/labor) "RF" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/sign/directions/security/directional/west{ - pixel_x = 0; - pixel_y = 24 - }, /obj/structure/sign/directions/lavaland/directional/west{ - pixel_x = 0; - pixel_y = 32 + pixel_x = 0 }, -/obj/effect/turf_decal/sand/plating/volcanic, -/turf/open/floor/plating/lavaland_atmos, -/area/lavaland/surface/outdoors) +/turf/closed/wall, +/area/mine/cafeteria) "RG" = ( /obj/machinery/door/airlock/public/glass{ id_tag = "cellblock1"; name = "Labor Camp Operations" }, -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/mine/laborcamp) @@ -7774,12 +7545,12 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "RO" = ( -/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/mine/eva) +/obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "RV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -7790,7 +7561,7 @@ /area/mine/laborcamp/quarters) "RW" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, @@ -7841,11 +7612,6 @@ }, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"Sj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "Sm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/siding/yellow, @@ -7860,15 +7626,16 @@ /turf/open/floor/iron/dark, /area/mine/hydroponics) "Sp" = ( -/obj/structure/easel, -/obj/item/canvas/fortyfive_twentyseven, -/obj/item/canvas/thirtysix_twentyfour, -/obj/item/canvas/twentythree_nineteen, -/obj/item/paint_palette, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "Sq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /obj/structure/cable, /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -8048,23 +7815,24 @@ dir = 4 }, /area/mine/production) -"Tt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/wood/end{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "Tu" = ( /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/smooth, /area/mine/laborcamp) -"Tw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +"Tv" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "lavaland_living_west" + }, +/obj/structure/sign/directions/security/directional/west{ + pixel_y = -8 + }, +/turf/open/floor/iron/textured_large, +/area/mine/cafeteria) "Tx" = ( /obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, @@ -8078,7 +7846,6 @@ /turf/open/floor/iron/dark/smooth_edge, /area/mine/production) "TF" = ( -/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/purple/filled/corner{ @@ -8224,9 +7991,7 @@ /turf/open/floor/iron/dark/textured_large, /area/mine/production) "Ut" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/smooth_edge, /area/mine/laborcamp) "Uu" = ( @@ -8245,9 +8010,12 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "Uz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 1 + }, +/obj/item/flashlight/lantern/on, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "UD" = ( /obj/structure/toilet{ dir = 8 @@ -8336,9 +8104,9 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "Vd" = ( -/obj/structure/railing, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/obj/structure/flora/ash/tall_shroom, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "Ve" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured_large, @@ -8461,14 +8229,18 @@ /turf/open/floor/iron/checker, /area/mine/laborcamp) "VI" = ( -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/effect/spawner/random/food_or_drink/donkpockets{ - pixel_x = 6; - pixel_y = 5 +/obj/machinery/door/airlock/external/glass{ + name = "Mining Shuttle Airlock" }, -/obj/structure/table/wood, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/mine/production) "VJ" = ( /obj/structure/closet/crate, /obj/item/food/mint, @@ -8491,12 +8263,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/mine/maintenance/labor) -"VP" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 8 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "VS" = ( /obj/machinery/hydroponics/constructable, /obj/effect/decal/cleanable/dirt, @@ -8507,10 +8273,8 @@ /turf/open/floor/iron/dark, /area/mine/laborcamp) "VU" = ( -/obj/structure/railing/corner/end{ - dir = 8 - }, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/obj/structure/railing, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "VX" = ( /obj/effect/decal/cleanable/dirt, @@ -8545,15 +8309,22 @@ /area/mine/lounge) "Wh" = ( /obj/structure/railing{ - dir = 8 + dir = 10 }, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/obj/structure/table/wood, +/obj/item/soap/deluxe, +/obj/item/soap/deluxe{ + pixel_y = 6 + }, +/obj/item/soap/deluxe{ + pixel_y = 11 + }, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Wk" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/obj/structure/railing, +/obj/effect/spawner/random/lavaland_mob/raptor/young, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Wl" = ( /obj/machinery/door/airlock/external/glass{ @@ -8575,11 +8346,9 @@ }, /area/mine/laborcamp/security) "Wq" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/obj/structure/flora/ash/leaf_shroom, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "Wt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/disposalpipe/segment, @@ -8745,10 +8514,6 @@ dir = 4 }, /area/mine/production) -"Xk" = ( -/obj/effect/spawner/random/lavaland_mob/raptor, -/turf/open/misc/hay/lavaland, -/area/lavaland/surface/outdoors) "Xp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8789,6 +8554,7 @@ /obj/effect/turf_decal/siding/wideplating_new{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/checker, /area/mine/laborcamp) "XA" = ( @@ -8838,13 +8604,6 @@ /obj/item/seeds/apple, /turf/open/floor/iron/dark, /area/mine/laborcamp) -"XM" = ( -/obj/structure/sign/directions/evac/directional/south{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/iron/dark/textured_large, -/area/mine/production) "XP" = ( /obj/structure/stone_tile/cracked, /obj/structure/stone_tile/block{ @@ -8935,8 +8694,6 @@ /area/mine/lounge) "Yg" = ( /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/mine/eva) "Yk" = ( @@ -9023,13 +8780,13 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "YP" = ( -/obj/structure/bookcase/random/reference, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/railing/corner/end{ + dir = 8 }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) +/obj/structure/marker_beacon/purple, +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "YR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9065,6 +8822,11 @@ }, /turf/open/floor/iron, /area/mine/lounge) +"Zg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/evac/directional/east, +/turf/open/floor/plating, +/area/mine/lounge) "Zh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9113,10 +8875,6 @@ }, /turf/open/floor/iron/smooth, /area/mine/laborcamp/production) -"Zs" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "Zt" = ( /turf/closed/wall, /area/mine/laborcamp) @@ -9136,12 +8894,10 @@ /area/mine/living_quarters) "Zx" = ( /obj/structure/sign/directions/dorms/directional/west{ - pixel_x = 0; - pixel_y = 24 + pixel_x = 0 }, -/obj/effect/turf_decal/sand/plating/volcanic, -/turf/open/floor/plating/lavaland_atmos, -/area/lavaland/surface/outdoors) +/turf/closed/wall, +/area/mine/maintenance/production) "Zz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9156,18 +8912,25 @@ dir = 8 }, /area/mine/lounge) -"ZB" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 +"ZC" = ( +/obj/structure/railing/corner{ + dir = 4 }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) -"ZF" = ( -/obj/effect/turf_decal/sand/plating/volcanic, /obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/sign/directions/lavaland/directional/north{ + pixel_y = 40 + }, /turf/open/floor/plating/lavaland_atmos, /area/lavaland/surface/outdoors) +"ZF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "ZH" = ( /obj/structure/closet/secure_closet/labor_camp_security, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -9177,12 +8940,11 @@ /turf/open/floor/iron/dark, /area/mine/laborcamp/security) "ZL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/wood, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "ZM" = ( /obj/structure/railing{ dir = 8 @@ -9215,16 +8977,9 @@ /turf/open/floor/plating, /area/mine/maintenance/public/north) "ZU" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) -"ZX" = ( -/obj/structure/table/wood, -/obj/item/knife, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/effect/spawner/random/lavaland_mob/raptor/young, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "ZY" = ( /turf/closed/mineral/random/volcanic, /area/lavaland/surface/outdoors/unexplored) @@ -26416,7 +26171,7 @@ Zt rX Zt Ub -Tu +fg MW HS Dn @@ -26930,7 +26685,7 @@ Zt rX Zt rS -Kp +zQ Xy hW PY @@ -35416,7 +35171,7 @@ VK VK VK Nf -MQ +rG BP ol pU @@ -35673,8 +35428,8 @@ aj aj aj aj -FH -rG +MQ +ZC ol aj aj @@ -37472,8 +37227,8 @@ zH kY kY Tc -kY RF +vd NL aj aj @@ -37729,7 +37484,7 @@ te dz px DI -oS +Tv BP ol aj @@ -42352,7 +42107,7 @@ iu iu iN ix -iu +Gw Zw UD iu @@ -42608,7 +42363,7 @@ Nt pI zf Up -CI +ix iu iu iu @@ -42623,7 +42378,7 @@ mn QP MS MS -QP +PR LE os JQ @@ -42632,8 +42387,8 @@ Hj pU BP pU -NK -ze +ai +ai pU pU aj @@ -42888,9 +42643,9 @@ EL EL pU pU -ze +ai BP -ze +ai pU pU aj @@ -43145,8 +42900,8 @@ pU pU pU pU -ze -ze +ai +ai pU pU aj @@ -43388,7 +43143,7 @@ pU tF tF pU -SP +Zg ti DZ FD @@ -44945,8 +44700,8 @@ aj aj aj aj -NK -NK +ad +ad pU aj aj @@ -45176,8 +44931,8 @@ FX FX nm iY -nm Zx +BP Yq aj aj @@ -45203,7 +44958,7 @@ aj aj pU pU -ze +ad pU aj aj @@ -45460,7 +45215,7 @@ aj aj pU BP -ze +ai pU pU aj @@ -45716,7 +45471,7 @@ aj aj aj pU -NK +ai pU pU pU @@ -46962,7 +46717,7 @@ aj aj aj Ep -Qq +jn fx aj oA @@ -47493,11 +47248,11 @@ WB wt jw fA -Le -Le NU Le +ep Le +NU BP BP BP @@ -47515,9 +47270,9 @@ aj aj pU pU -NK +ai BP -ze +ad pU pU aj @@ -47751,8 +47506,8 @@ Jl rv TJ RW -cc -XM +pM +vr CM lM Ec @@ -47771,10 +47526,10 @@ aj aj aj pU -ze -ze -ze -ze +ai +ad +ad +ai aj aj aj @@ -48008,9 +47763,9 @@ GF lb Yl Le -Le +jX Fr -Le +jt Le BP BP @@ -48029,8 +47784,8 @@ aj aj pU BP -ze -NK +ad +ad pU aj aj @@ -48265,10 +48020,10 @@ Ra oh pK NU -BP -BP -BP -JD +Le +VI +Le +NU BP BP BP @@ -48285,8 +48040,8 @@ pU aj aj pU -NK -NK +ai +ai pU pU aj @@ -48523,7 +48278,7 @@ mT pK pU BP -ZF +BP BP JD BP @@ -48779,9 +48534,9 @@ Yg li dK pU -Cv BP -Cv +rB +BP zk mc mc @@ -49036,8 +48791,8 @@ Yg TQ dK pU -aX -BP +pU +RO Jg pU pU @@ -49289,14 +49044,14 @@ YD pK Ob IL -Rj +IL KV pK aj +aj yV -BP fK -pU +aj pU pU pU @@ -49546,12 +49301,12 @@ NU pK pK dK -RO +dK pK pK aj +aj yV -tF NL aj aj @@ -49803,12 +49558,12 @@ NU ai pU pU -Pn pU +pU +aj aj aj yV -tF NL aj aj @@ -50060,12 +49815,12 @@ pU pU pU pU -AF +aj aj aj pU +aj yV -tF NL aj aj @@ -50317,12 +50072,12 @@ pU aj aj aj -AF +aj aj pU aj +aj yV -tF NL aj pU @@ -50339,9 +50094,9 @@ pU pU pU pU -ze -ze -ze +ai +ad +ad pU pU pU @@ -50574,13 +50329,13 @@ aj aj aj aj -AF aj aj aj -zs -tF -de +aj +aj +Ah +aF aj aj aj @@ -50595,9 +50350,9 @@ aj pU pU pU -ze -NK -ze +ai +ad +ad BP pU pU @@ -50831,13 +50586,13 @@ aj aj aj aj -AF aj aj aj -ct -BP -ct +aj +aj +RO +kf pU aj aj @@ -50851,10 +50606,10 @@ aj pU pU pU -ze +ai BP -NK -ze +ai +ai pU pU pU @@ -51088,12 +50843,12 @@ ai ai pU pU -AF -aj +pU +pU aj aj -BP -BP +pU +YP BP pU pU @@ -51107,10 +50862,10 @@ aj pU pU pU -ze -ze -NK -ze +ai +ad +ai +ai lP pU pU @@ -51345,11 +51100,11 @@ ai ai ai ai -Pn -AF -AF -AF -Pe +pU +pU +pU +pU +pU BP BP BP @@ -51365,10 +51120,10 @@ lt Ri eN pU -ze -ze -ze -ze +ai +ai +ai +ai pU pU aj @@ -51606,10 +51361,8 @@ ai pU pU pU -AF -BP -BP -BP +pU +pU BP ct pU @@ -51617,6 +51370,8 @@ pU pU pU pU +pU +BP lt Ns lt @@ -51624,7 +51379,7 @@ pU pU pU pU -ze +ai pU pU aj @@ -51860,21 +51615,21 @@ aj aj ai ai -CV -CV -ki -NP -ki -CV -CV -CV -lt pU pU pU pU pU pU +pU +pU +pU +pU +pU +pU +pU +BP +BP lt pU lP @@ -52116,19 +51871,11 @@ aj aj aj aj -CV -CV -Km -qB -eL -Ah -VI -ZX -ki -Ns +aj +pU +pU lt pU -BP pU pU pU @@ -52137,6 +51884,14 @@ pU pU pU pU +Wq +pU +pU +pU +pU +pU +pU +pU pU pU aj @@ -52373,25 +52128,25 @@ aj aj aj aj -CV -GG -jX -Tw -eL -aF -pF -dF -ki -lt -lt +aj +aj +pU +Ns lt pU +BP +pU +pU pU pU BP -NK -NK -ze +pU +lt +Ns +lt +UI +pU +pU pU pU pU @@ -52627,28 +52382,28 @@ pU ai ai ai -pU +ai aj aj -CV -Sp -OE -as -ZL -Cn -zX -CV -CV +aj +aj +pU pU lt +lt pU pU pU pU +BP +eL ze -NK +AF +tf ze -BP +Sp +FH +pU pU pU pU @@ -52886,27 +52641,24 @@ ai ai ai ai +ai +aj +aj pU -CV -GG -Tt -fa -eL -ZB -GG -CV pU +lt pU pU -lP pU -BP pU -ze -NK pU -UI +BP +NP pU +oO +lP +lt +VU pU pU pU @@ -52918,6 +52670,9 @@ aj aj aj aj +aj +aj +aj "} (171,1,1) = {" aa @@ -53144,34 +52899,34 @@ aj ai ai ai -CV -wa -rB -fa -eL -Lv -CV -CV -CV -ct -pU +ai pU pU pU pU -ze +lP pU +BP pU -lt -lt -lt UI +ct +dI +Az +oO pU -aj +pU +VU pU pU aj +aj +aj +aj +aj +aj +aj pU +aj pU aj aj @@ -53399,29 +53154,25 @@ aj aj aj aj -pU ai -CV -jt -ba -fa -jJ -ZB -be -dI -oO -BP +ai +ai +pU +UI +ct +pU pU -BP pU pU pU -ct -BP lt lt -Ns +up +UI +oO +ZU lt +VU lt pU pU @@ -53429,7 +53180,11 @@ pU pU pU pU -pU +aj +aj +aj +aj +aj aj aj "} @@ -53658,37 +53413,37 @@ aj aj aj aj -CV -GG -tf -fa -Sj -ZB -CV -CV -CV -ct pU pU pU +BP +pU pU pU -BP +pU +lt +lt +lt +Km +pU +ZL +lt +lt Av Wh -Wh -CV -ki -ki -CV -CV -ki -ki -CV -CV +lt +pU +pU +pU +pU +pU +aj +aj pU pU aj +aj +aj "} (174,1,1) = {" aa @@ -53915,36 +53670,36 @@ aj aj aj aj -CV -rf -VP -fa -Sj -ZB -Mf -CV -hl +aj +aj +pU +pU +pU +BP +pU pU lt +Ns +lt lt pU pU lt lt -up +lt +rj lt pU -vr -sQ -NS -Vd -NS -NS -sQ -NS -CV pU +aj +aj pU +pU +aj +aj +aj +aj +aj aj "} (175,1,1) = {" @@ -54172,37 +53927,37 @@ aj aj aj aj -CV -GI -vM -FI -jJ -Fo -hM -CV -CV -Ns -lt +aj +aj +pU +pU +pU +pU +pU +pU pU pU lt +hl lt +xW +pU lt -up +zX +be pU pU -vr -il -NS -Vd -NS -NS -il -NS -ki pU aj aj +aj +aj +aj +aj +aj +aj +aj +aj "} (176,1,1) = {" aa @@ -54429,37 +54184,37 @@ aj aj aj aj -CV -pM -YP -GG -Uz -Uz -Uz -Zs -ki -lt -lt +aj +pU +pU +pU +pU +pU pU pU pU -lt pU +lt +Uz +lt +VU +lt +lt Wk -UI -ct -vr -NS -NS -Vd -NS -NS -NS -NS -ki +lt +pU +pU pU pU aj +aj +aj +aj +aj +aj +aj +aj +aj "} (177,1,1) = {" aa @@ -54684,39 +54439,39 @@ pU pU pU pU -aj -aj -CV -CV -YP -GG -fa -fa -Rm -bE -ki -lt pU pU pU pU pU pU -Wk pU +pU +pU +pU +ct lt -Wq -EP -NS -ZU -NS -NS -EP -EP -CV -CV +dF +up +Cv +VU +lt +lt +VU +lt +pU +pU +pU +pU +aj +aj +aj +aj +aj pU aj +aj +aj "} (178,1,1) = {" aa @@ -54942,36 +54697,36 @@ pU pU pU pU -aj -aj -CV -CV -ki -ki -ki -CV -CV -CV -lt pU pU -lt pU pU pU -VU -Xk +pU +pU +pU +pU +pU lt -NS -NS -NS -NS -NS -uw -NS -NS -NS -ki +Pb +up +lt +VU +Ns +Az +VU +pU +pU +pU +pU +pU +aj +aj +aj +aj +aj +aj +aj pU aj "} @@ -55200,9 +54955,6 @@ pU pU pU pU -aj -aj -aj pU pU pU @@ -55213,24 +54965,27 @@ pU pU pU Ns -Az +lt +CI +wa +Pn +ej +wa +ZF +FH +pU +pU +pU +pU +aj +aj +pU pU pU -lt -lt -lt -NS -mk -sa -NS -NS -NS -OW -sa -NS -ki aj aj +pU +aj "} (180,1,1) = {" aa @@ -55467,26 +55222,26 @@ pU pU pU pU -pU -pU -lt lt pU -xW lt lt lt -NS -NS -uw -NS -NS -NS -NS -NS -NS -ki +Vd +pU +pU +pU +pU +pU +aj +aj +pU +pU pU +pU +pU +aj +aj aj "} (181,1,1) = {" @@ -55727,22 +55482,22 @@ pU pU pU pU -lt pU pU -Wk -lt -lt -kf -KO -NS -aH -NS -NS -KO -KO -CV -CV +pU +pU +pU +pU +pU +pU +aj +aj +aj +pU +pU +pU +aj +aj pU aj "} @@ -55979,6 +55734,9 @@ pU pU pU pU +UI +pU +pU pU pU pU @@ -55987,21 +55745,18 @@ pU pU pU pU -Wk pU -ct -vr -NS -rj -Vd -NS -NS -NS -NS -ki pU aj aj +pU +pU +pU +pU +pU +aj +aj +aj "} (183,1,1) = {" aa @@ -56242,23 +55997,23 @@ pU pU pU pU -lt -lt -Wk pU pU -vr -il -NS -Vd -NS -NS -il -NS -ki pU pU pU +pU +pU +pU +pU +pU +pU +aj +aj +aj +aj +aj +pU "} (184,1,1) = {" aa @@ -56498,23 +56253,23 @@ pU pU pU pU -lt -Ns -lt -up -Pb pU -vr -sQ -NS -Vd -NS -NS -sQ -NS -CV pU pU +pU +pU +pU +pU +pU +pU +pU +pU +pU +aj +aj +pU +pU +aj aj "} (185,1,1) = {" @@ -56755,24 +56510,24 @@ pU pU pU pU -lt -lt -BP -Oo -ej -nO -CV -ki -ki -CV -CV -ki -ki -CV -CV +pU +pU +pU +pU +pU +pU +pU +pU +pU +pU +pU +pU +aj pU aj aj +aj +aj "} (186,1,1) = {" aa @@ -57014,12 +56769,6 @@ pU pU pU pU -ct -BP -pU -pU -pU -lt pU pU pU @@ -57030,6 +56779,12 @@ pU pU pU aj +aj +aj +aj +aj +aj +aj "} (187,1,1) = {" aa @@ -57272,13 +57027,8 @@ pU pU pU pU -lt pU pU -lt -Ns -lt -lt pU pU pU @@ -57287,6 +57037,11 @@ pU pU aj aj +aj +aj +aj +aj +aj "} (188,1,1) = {" aa @@ -57528,17 +57283,17 @@ pU pU pU pU -lt -lt -lt pU -lt -lt -lt -lt -lt pU pU +pU +pU +pU +pU +pU +pU +aj +aj aj aj aj @@ -57786,15 +57541,15 @@ pU pU pU pU -Ns pU pU -UI -lt -lt -Ns -lt pU +pU +pU +pU +pU +pU +aj aj aj aj @@ -58048,8 +57803,8 @@ pU pU pU pU -lt -lt +pU +pU pU aj aj diff --git a/_maps/map_files/NebulaStation/NebulaStation.dmm b/_maps/map_files/NebulaStation/NebulaStation.dmm index b8c71b869f76..7ac250c073f8 100644 --- a/_maps/map_files/NebulaStation/NebulaStation.dmm +++ b/_maps/map_files/NebulaStation/NebulaStation.dmm @@ -335,7 +335,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/security/glass{ @@ -403,7 +403,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "adj" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/light/small/directional/north, @@ -604,6 +604,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "aeG" = ( @@ -700,7 +701,6 @@ pixel_x = 7; pixel_y = 18 }, -/obj/machinery/firealarm/directional/west, /turf/open/floor/wood/parquet, /area/station/medical/psychology) "aft" = ( @@ -981,7 +981,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "agX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -1746,7 +1746,7 @@ "amU" = ( /obj/machinery/porta_turret/ai, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "anh" = ( /obj/effect/turf_decal/siding, /obj/structure/chair/sofa/bench/right{ @@ -1973,7 +1973,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "aoQ" = ( /obj/structure/table/glass, /obj/effect/spawner/random/entertainment/cigarette_pack, @@ -2060,7 +2060,7 @@ network = list("minisat") }, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "apz" = ( /obj/machinery/holopad/secure, /obj/effect/turf_decal/box/white{ @@ -2131,7 +2131,7 @@ }, /obj/structure/closet/emcloset, /obj/machinery/camera/autoname/directional/west, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) "apU" = ( @@ -2289,17 +2289,6 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/structure/sign/directions/medical/directional/east{ - pixel_y = 8; - dir = 1 - }, -/obj/structure/sign/directions/science/directional/east{ - dir = 1 - }, -/obj/structure/sign/directions/supply/directional/east{ - pixel_y = -8; - dir = 1 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2563,7 +2552,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "atR" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -2808,7 +2797,7 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "auK" = ( /turf/open/floor/glass/reinforced, /area/station/security/prison) @@ -3427,7 +3416,7 @@ /obj/machinery/vending/coffee, /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "aAC" = ( /obj/machinery/shower/directional/north, /obj/effect/turf_decal/trimline/blue/end{ @@ -3582,7 +3571,7 @@ "aBG" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/sign/warning/vacuum/directional/west, /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, @@ -3733,7 +3722,7 @@ /obj/effect/turf_decal/trimline/dark/corner, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aCJ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, @@ -3976,9 +3965,7 @@ /turf/open/floor/plating, /area/station/maintenance/aft/greater) "aEz" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/glass/reinforced/airless, /area/space/nearstation) "aEC" = ( @@ -4072,6 +4059,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"aFi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "aFm" = ( /obj/structure/table/reinforced, /obj/item/folder/red, @@ -4459,7 +4451,7 @@ }, /obj/item/gun/grenadelauncher, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aID" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/carpet, @@ -4660,7 +4652,7 @@ dir = 1 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aKm" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -4678,7 +4670,7 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aKr" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 1 @@ -5289,7 +5281,7 @@ }, /obj/effect/decal/cleanable/rubble, /turf/open/floor/holofloor/wood, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aOZ" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -5886,7 +5878,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aUf" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/effect/landmark/event_spawn, @@ -6381,7 +6373,7 @@ /obj/item/pen, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "aXu" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -6581,7 +6573,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aYC" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -6724,7 +6716,7 @@ "aZM" = ( /obj/effect/turf_decal/trimline/dark_blue, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aZQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6791,11 +6783,9 @@ /area/station/maintenance/aft/lesser) "bat" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "baD" = ( /obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ dir = 1 @@ -7018,7 +7008,7 @@ "bcd" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/small, /area/station/hallway/primary/port) "bcf" = ( @@ -7353,7 +7343,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "beF" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -7405,10 +7395,11 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "bfk" = ( @@ -8139,7 +8130,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bmn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/machinery/meter, @@ -8335,7 +8326,7 @@ /obj/item/kirbyplants/random, /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bnD" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, /turf/open/floor/iron/dark/airless, @@ -8537,7 +8528,7 @@ /obj/item/clothing/shoes/magboots, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bpj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8763,7 +8754,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "brl" = ( /obj/structure/broken_flooring/singular/always_floorplane/directional/north, /obj/structure/chair/stool/bar/directional/west, @@ -8781,7 +8772,7 @@ dir = 9 }, /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "brC" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -9006,7 +8997,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "btQ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -9045,7 +9036,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "bum" = ( /obj/effect/turf_decal/siding/yellow, /obj/effect/turf_decal/trimline/yellow/filled/line, @@ -9086,7 +9077,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "buC" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ @@ -9416,16 +9407,20 @@ /turf/open/floor/iron/white, /area/station/medical/treatment_center) "bxv" = ( -/obj/structure/hedge, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/structure/sign/directions/upload/directional/south{ + pixel_y = -10; + dir = 9 }, -/obj/structure/sign/plaques/kiddie/library{ - pixel_y = 32 +/obj/structure/sign/directions/command/directional/south{ + dir = 9; + pixel_y = 0 }, -/obj/structure/railing, -/turf/open/floor/wood/large, -/area/station/service/library/upper) +/obj/structure/sign/directions/vault/directional/south{ + pixel_y = 10; + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/command) "bxw" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 8 @@ -9456,7 +9451,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bxA" = ( /obj/machinery/digital_clock/directional/north, /obj/structure/railing/corner{ @@ -9543,10 +9538,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "bxV" = ( @@ -9705,6 +9700,7 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "byI" = ( @@ -10004,7 +10000,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bAz" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 @@ -10035,20 +10031,20 @@ /turf/open/floor/grass, /area/station/command/heads_quarters/hos) "bAD" = ( -/obj/structure/bed/pod{ - desc = "An old medical bed, just waiting for replacement with something up to date."; - name = "medical bed" - }, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/siding{ - dir = 6 - }, /obj/machinery/camera/directional/east{ c_tag = "Padded Cell"; network = list("ss13","medbay") }, -/turf/open/floor/iron/white/small, -/area/station/medical/patients_rooms) +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/landmark/start/paramedic, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "bAI" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -10136,7 +10132,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bBh" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -10147,6 +10143,9 @@ dir = 2 }, /obj/effect/landmark/start/psychologist, +/obj/machinery/door/airlock/medical{ + name = "Psychology Lobby" + }, /turf/open/floor/wood/parquet, /area/station/medical/psychology) "bBl" = ( @@ -10476,7 +10475,7 @@ }, /obj/effect/turf_decal/stripes/line, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -10838,7 +10837,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -11370,12 +11369,10 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 10 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/railing{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "bJR" = ( @@ -11460,6 +11457,15 @@ "bKj" = ( /turf/closed/wall, /area/station/commons/fitness/recreation) +"bKl" = ( +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/structure/bed/medical, +/obj/machinery/iv_drip, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white/textured, +/area/station/medical/medbay/central) "bKq" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/spawner/random/trash/janitor_supplies, @@ -11751,7 +11757,8 @@ pixel_x = 24; pixel_y = 6; id = "radioroom"; - name = "Curtains" + name = "Curtains"; + dir = 4 }, /obj/machinery/button/door/directional/east{ pixel_y = -6; @@ -11922,10 +11929,10 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bNG" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "bNI" = ( /obj/structure/chair/office/light{ dir = 1 @@ -12293,19 +12300,8 @@ /area/space/nearstation) "bQa" = ( /obj/structure/table/glass, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 3 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -2 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 13 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/defibrillator/loaded, /turf/open/floor/iron/dark, /area/station/medical/storage) "bQd" = ( @@ -12318,6 +12314,23 @@ }, /turf/open/space/openspace, /area/station/solars/port/aft) +"bQm" = ( +/obj/structure/sign/directions/medical/directional/west{ + pixel_y = 8; + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/science/directional/west{ + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/west{ + pixel_y = -8; + dir = 1; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/security/checkpoint/customs) "bQp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12345,6 +12358,21 @@ }, /turf/open/floor/iron/dark, /area/station/command) +"bQy" = ( +/obj/structure/sign/directions/dorms/directional/west{ + pixel_y = 8; + pixel_x = 0 + }, +/obj/structure/sign/directions/evac/directional/west{ + pixel_x = 0 + }, +/obj/structure/sign/directions/engineering/directional/west{ + pixel_y = -8; + dir = 2; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/commons/vacant_room/office) "bQT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12519,7 +12547,7 @@ /obj/item/stack/spacecash/c1000, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bRZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -13050,6 +13078,7 @@ /obj/effect/turf_decal/trimline/dark/corner{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark/side{ dir = 6 }, @@ -13126,6 +13155,21 @@ /obj/effect/turf_decal/delivery/white, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) +"bXc" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/flashlight/lamp{ + pixel_y = -1; + pixel_x = -9 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "bXe" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -13144,7 +13188,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "bXi" = ( /obj/effect/turf_decal/tile/purple/fourcorners, /obj/structure/cable, @@ -13203,12 +13247,14 @@ /turf/open/floor/iron/dark/small, /area/station/engineering/main) "bXP" = ( -/obj/machinery/door/airlock/medical{ - name = "Padded Cell"; - id_tag = "padded" +/obj/effect/turf_decal/siding/blue{ + dir = 8 }, -/turf/open/floor/iron/white/herringbone, -/area/station/medical/patients_rooms) +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/paramedic) "bXQ" = ( /obj/effect/mapping_helpers/broken_floor, /obj/item/clothing/suit/caution{ @@ -13339,14 +13385,12 @@ /area/station/commons/fitness/recreation/lasertag) "bYK" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bYO" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -13684,7 +13728,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "caT" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth{ @@ -13844,7 +13888,7 @@ /obj/item/toy/figure/borg, /obj/item/radio/intercom/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ccj" = ( /obj/structure/flora/grass/brown/style_random, /obj/structure/flora/bush/snow/style_2, @@ -13881,7 +13925,7 @@ /area/station/science/xenobiology) "ccC" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "ccE" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 @@ -14352,7 +14396,7 @@ /obj/machinery/digital_clock/directional/west, /obj/machinery/light/small/directional/west, /turf/open/floor/plating, -/area/station/medical/patients_rooms) +/area/station/maintenance/department/cargo) "chn" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/tile/neutral, @@ -14790,7 +14834,7 @@ /obj/machinery/status_display/ai/directional/north, /obj/machinery/firealarm/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ckK" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -14906,7 +14950,7 @@ pixel_y = -2 }, /turf/open/floor/grass, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "cmj" = ( /obj/structure/table/reinforced/rglass, /obj/item/storage/box/donkpockets/donkpocketpizza{ @@ -15242,7 +15286,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "coT" = ( /obj/machinery/door/airlock/medical/glass{ name = "Infirmary" @@ -15474,12 +15518,12 @@ /obj/structure/bookcase{ name = "Forbidden Knowledge" }, -/obj/structure/sign/painting/large/library_private{ - dir = 1 - }, /obj/item/poster/random_contraband{ pixel_y = 18 }, +/obj/structure/sign/painting/large/library_private{ + dir = 1 + }, /turf/open/floor/wood/large, /area/station/service/library/printer) "cqG" = ( @@ -15855,7 +15899,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cti" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15980,7 +16024,6 @@ /obj/structure/railing/corner{ dir = 1 }, -/obj/structure/sign/nanotrasen, /turf/closed/wall/r_wall/rust, /area/space/nearstation) "cuf" = ( @@ -16236,7 +16279,8 @@ id = "SecElevator" }, /obj/structure/noticeboard/hos{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/lift_indicator/directional/west{ pixel_x = -33; @@ -16814,25 +16858,20 @@ /turf/open/floor/wood/large, /area/station/service/chapel/office) "czJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/directions/medical/directional/west{ - pixel_y = 8; - dir = 1 +/obj/structure/sign/directions/upload/directional/south{ + pixel_y = -10; + dir = 4 }, -/obj/structure/sign/directions/science/directional/west{ - dir = 1 +/obj/structure/sign/directions/command/directional/south{ + dir = 4; + pixel_y = 10 }, -/obj/structure/sign/directions/supply/directional/west{ - pixel_y = -8; - dir = 1 +/obj/structure/sign/directions/security/directional/south{ + pixel_y = 0; + 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/hallway/primary/central) +/turf/closed/wall, +/area/station/service/barber) "czK" = ( /obj/machinery/atmospherics/components/binary/crystallizer{ dir = 4 @@ -16867,7 +16906,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "czS" = ( /obj/structure/closet/secure_closet/freezer/empty, /obj/item/reagent_containers/condiment/soymilk, @@ -16955,10 +16994,6 @@ /obj/structure/chair/sofa/corp/left{ dir = 1 }, -/obj/structure/sign/painting/large/library{ - pixel_y = -64; - dir = 1 - }, /turf/open/floor/stone, /area/station/commons/dorms) "cAp" = ( @@ -16976,9 +17011,7 @@ "cAu" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/radiation, -/obj/machinery/camera/autoname/directional/north{ - dir = 9 - }, +/obj/machinery/camera/autoname/directional/north, /obj/machinery/duct, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos/project) @@ -17107,7 +17140,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cBK" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -17451,7 +17484,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cEV" = ( /obj/effect/turf_decal/trimline/dark/corner, /obj/structure/chair/office{ @@ -17559,6 +17592,7 @@ "cFQ" = ( /obj/structure/sign/warning/biohazard, /obj/effect/spawner/random/structure/grille, +/obj/effect/spawner/structure/window/reinforced, /turf/open/space/openspace, /area/space/nearstation) "cFT" = ( @@ -17651,7 +17685,7 @@ }, /obj/item/radio/intercom/directional/south, /obj/machinery/camera/autoname/directional/south, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/white/textured_large, /area/station/commons/fitness) "cGz" = ( @@ -18471,15 +18505,13 @@ /turf/open/floor/iron, /area/station/cargo/storage) "cMm" = ( -/obj/structure/noticeboard/directional/east{ - dir = 8 - }, /obj/structure/cable, /obj/effect/turf_decal/siding/wood{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/noticeboard/directional/east, /turf/open/floor/wood/tile, /area/station/service/minibar) "cMz" = ( @@ -18899,7 +18931,7 @@ /obj/structure/marker_beacon/lime, /obj/structure/flora/bush/lavendergrass/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cPZ" = ( /turf/closed/wall/r_wall, /area/station/medical/morgue) @@ -19057,11 +19089,12 @@ /obj/machinery/door/airlock/maintenance{ name = "UndergroundCasino" }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/central) "cRu" = ( @@ -19242,14 +19275,6 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/structure/sign/directions/evac/directional/west, -/obj/structure/sign/directions/dorms/directional/west{ - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering/directional/west{ - pixel_y = -8; - dir = 2 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19274,7 +19299,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "cSL" = ( /obj/structure/marker_beacon/bronze, /obj/structure/lattice/catwalk, @@ -19332,7 +19357,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cTe" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 @@ -19435,15 +19460,6 @@ dir = 4 }, /area/station/security/brig/lower) -"cTV" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) "cTY" = ( /obj/effect/turf_decal/siding/white/corner{ dir = 1 @@ -19826,7 +19842,7 @@ }, /obj/item/toy/seashell, /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cXw" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -20305,6 +20321,7 @@ /obj/effect/turf_decal/trimline/dark/corner{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/dark, /area/station/command) "dbh" = ( @@ -20424,18 +20441,16 @@ name = "AI Chamber Entrance Shutters Control"; req_access = list("ai_upload") }, -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = -29; - pixel_y = -6 - }, /obj/effect/landmark/start/ai, /obj/machinery/camera/autoname/directional/north{ network = list("minisat") }, +/obj/machinery/flasher/directional/east{ + pixel_y = -5; + id = "AI" + }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dbO" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -20759,7 +20774,7 @@ dir = 5 }, /obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) @@ -20796,9 +20811,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, +/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/medical/psychology) "deI" = ( @@ -20916,7 +20930,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dfe" = ( /obj/item/kirbyplants/random, /obj/structure/plaque/static_plaque/golden{ @@ -21332,7 +21346,20 @@ id = "AIgarden2" }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) +"div" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "diw" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/ce) @@ -21705,7 +21732,7 @@ /obj/structure/flora/bush/flowers_br/style_random, /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "dkY" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -21794,7 +21821,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/computer/security/telescreen/minisat/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dlT" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -21808,7 +21835,7 @@ name = "Library Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -21993,7 +22020,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -22169,6 +22196,21 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) +"dov" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay"; + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/lobby) "doy" = ( /turf/closed/wall, /area/station/security/prison/workout) @@ -22227,7 +22269,7 @@ "doN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "doQ" = ( /obj/structure/water_source/puddle, /turf/open/floor/grass, @@ -22247,11 +22289,9 @@ dir = 8 }, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/box/red, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/security/execution/education) "dpj" = ( @@ -22711,7 +22751,7 @@ /turf/open/floor/iron/stairs{ color = "#3d3e42" }, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "dsE" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/siding/dark{ @@ -22802,7 +22842,7 @@ /turf/open/floor/iron/white, /area/station/science/lower) "dsQ" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/effect/turf_decal/bot, @@ -22897,7 +22937,8 @@ /obj/effect/turf_decal/siding/wood/corner, /obj/item/kirbyplants/random, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/airalarm/directional/west, /obj/machinery/light/small/directional/north, @@ -23989,9 +24030,7 @@ name = "Teleporter Shutters"; req_access = list("teleporter") }, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) "dBT" = ( @@ -24097,7 +24136,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "dCz" = ( /obj/structure/flora/rock/pile/jungle/style_random, /obj/effect/decal/cleanable/dirt, @@ -24260,7 +24299,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dEt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, @@ -24292,9 +24331,6 @@ /area/station/engineering/atmos/project) "dEG" = ( /obj/effect/turf_decal/siding/dark, -/obj/structure/noticeboard/directional/north{ - dir = 2 - }, /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, /obj/machinery/disposal/bin, @@ -24304,6 +24340,7 @@ /obj/machinery/camera/autoname/directional/north{ network = list("ss13","medbay") }, +/obj/structure/noticeboard/directional/north, /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, @@ -24421,7 +24458,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dFq" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -24448,7 +24485,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dFw" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -24749,7 +24786,7 @@ "dIf" = ( /obj/structure/transit_tube, /obj/effect/turf_decal/trimline/dark_blue, -/obj/structure/window/reinforced/fulltile, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/command) "dIj" = ( @@ -24957,7 +24994,7 @@ }, /obj/structure/marker_beacon/lime, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "dKA" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -25506,7 +25543,7 @@ /obj/structure/marker_beacon/lime, /obj/machinery/light/small/directional/south, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "dOT" = ( /obj/effect/turf_decal/trimline/yellow/corner, /obj/effect/turf_decal/siding/thinplating_new/dark/corner, @@ -26067,7 +26104,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "dTf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -26171,10 +26208,10 @@ }, /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/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/small, /area/station/medical/medbay/lobby) "dTY" = ( @@ -26228,7 +26265,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dUk" = ( /obj/effect/turf_decal/trimline/yellow, /obj/machinery/light/floor, @@ -26436,7 +26473,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dVD" = ( /obj/effect/turf_decal/siding/dark/end{ dir = 8 @@ -26617,7 +26654,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dWL" = ( /obj/structure/table/wood, /obj/structure/desk_bell{ @@ -26757,7 +26794,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "dXQ" = ( /obj/structure/table/reinforced, /obj/structure/reagent_dispensers/servingdish, @@ -27158,7 +27195,7 @@ /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, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/dark, /area/station/service/janitor) "eaq" = ( @@ -27180,7 +27217,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eav" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/grassy/style_random, @@ -27249,6 +27286,7 @@ }, /obj/effect/turf_decal/stripes/white/corner, /obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "eaQ" = ( @@ -27320,7 +27358,7 @@ name = "Dormitory Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/duct, @@ -27454,7 +27492,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ecL" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 4 @@ -27684,7 +27722,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eel" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/warning/explosives/alt/directional/south, @@ -27877,12 +27915,8 @@ /obj/effect/turf_decal/trimline/white/warning{ dir = 8 }, -/obj/machinery/flasher/directional/east{ - id = "AI"; - pixel_y = 26 - }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "efL" = ( /obj/machinery/door/airlock/public/glass{ name = "Starboard Primary Hallway" @@ -27902,7 +27936,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "efX" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark/small, @@ -27940,7 +27974,7 @@ pixel_y = -2 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "egg" = ( /obj/effect/turf_decal/siding/dark/corner, /obj/effect/turf_decal/siding/dark{ @@ -27977,7 +28011,7 @@ network = list("aiupload") }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "egn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28836,7 +28870,7 @@ /area/station/science/breakroom) "emU" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "emW" = ( /obj/effect/turf_decal/stripes/white/corner, /obj/effect/turf_decal/siding/thinplating/dark/corner, @@ -28955,6 +28989,7 @@ "enK" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "enS" = ( @@ -29141,7 +29176,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "epf" = ( /obj/structure/chair/sofa/bench/left, /turf/open/floor/glass/reinforced, @@ -29237,7 +29272,7 @@ /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/ai_monitored/security/armory) +/area/station/security/armory) "eqb" = ( /turf/open/floor/iron/stairs/medium{ color = "#3d3e42" @@ -29532,7 +29567,7 @@ /obj/effect/turf_decal/bot/left, /obj/structure/rack, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "esg" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -29768,10 +29803,6 @@ /obj/structure/bed, /obj/item/bedsheet, /obj/effect/landmark/start/hangover, -/obj/machinery/flasher/directional/east{ - pixel_y = 24; - id = "Cell 1" - }, /turf/open/floor/iron/dark, /area/station/security/brig) "etT" = ( @@ -30024,7 +30055,7 @@ }, /obj/structure/hedge, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "ewF" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -30233,7 +30264,7 @@ dir = 1 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "exV" = ( /obj/effect/landmark/start/cyborg, /obj/machinery/holopad/secure, @@ -30255,7 +30286,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "exW" = ( /obj/effect/turf_decal/stripes/white/corner{ dir = 4 @@ -30466,11 +30497,6 @@ /obj/structure/railing/corner/end/flip{ dir = 4 }, -/obj/structure/sign/directions/evac/directional/north{ - pixel_x = 0; - pixel_y = 26; - dir = 10 - }, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) "eAc" = ( @@ -30480,7 +30506,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "eAi" = ( /turf/closed/wall, /area/station/medical/coldroom) @@ -30781,10 +30807,6 @@ req_access = list("medical"); pixel_x = -27 }, -/obj/item/toy/figure/paramedic{ - pixel_y = 16; - pixel_x = -1 - }, /obj/machinery/light_switch/directional/west{ pixel_y = -6 }, @@ -30879,7 +30901,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eCK" = ( /obj/machinery/drone_dispenser, /turf/open/floor/plating, @@ -31141,16 +31163,13 @@ dir = 1 }, /obj/item/kirbyplants/random, -/obj/structure/sign/directions/evac/directional/north{ - dir = 8 - }, /turf/open/floor/iron/dark/herringbone, /area/station/commons/dorms) "eEA" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/dark/warning, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eEB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/dark/corner{ @@ -31191,7 +31210,7 @@ /area/station/commons/fitness) "eFd" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eFf" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -31321,7 +31340,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eGu" = ( /obj/structure/cable, /obj/structure/broken_flooring/pile/directional/east, @@ -31442,13 +31461,13 @@ /obj/effect/turf_decal/caution/stand_clear{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/box, /obj/machinery/door/poddoor/shutters{ dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/box, /turf/open/floor/iron/dark/textured_half{ dir = 1 }, @@ -31642,7 +31661,7 @@ /area/station/maintenance/starboard/central) "eIE" = ( /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eIH" = ( /obj/structure/table/reinforced/rglass, /obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ @@ -31677,7 +31696,7 @@ name = "Private Channel" }, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eIS" = ( /obj/effect/turf_decal/siding/dark, /obj/structure/sign/poster/official/random/directional/north, @@ -31716,7 +31735,7 @@ dir = 1 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eJe" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ @@ -31767,7 +31786,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eJT" = ( /obj/structure/table/wood/fancy, /obj/structure/sign/painting/library_secure{ @@ -32196,9 +32215,7 @@ dir = 8 }, /obj/item/kirbyplants/random, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/herringbone, /area/station/commons/dorms) "eMS" = ( @@ -32630,7 +32647,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron/white, @@ -32787,7 +32804,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "eSb" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/sign/poster/random/directional/north, @@ -32904,7 +32921,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eTe" = ( /obj/effect/turf_decal/trimline/yellow/filled/warning, /obj/structure/railing, @@ -33025,7 +33042,7 @@ pixel_y = 2 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eTX" = ( /obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible{ dir = 8 @@ -33149,7 +33166,7 @@ /obj/item/gun/energy/e_gun, /obj/item/gun/energy/e_gun, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eUS" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -33770,7 +33787,7 @@ req_access = list("eva") }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eZk" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/flora/rock/pile/jungle/style_2, @@ -34756,7 +34773,7 @@ uses = 10 }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fgG" = ( /obj/structure/fluff/paper/stack{ dir = 4 @@ -34793,7 +34810,7 @@ /obj/machinery/door/airlock/research/glass{ name = "Research Division Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/poddoor/shutters/preopen{ id = "rdrnd"; name = "Research and Development Shutters" @@ -34966,7 +34983,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fic" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 4 @@ -35065,12 +35082,22 @@ /obj/structure/flora/rock/pile/jungle/style_random, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"fiB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "fiD" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -35146,7 +35173,7 @@ /area/station/security/courtroom) "fjo" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "fjp" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/fyellow, @@ -35165,15 +35192,14 @@ /turf/open/floor/iron/dark, /area/station/commons/storage/primary) "fjq" = ( -/obj/effect/turf_decal/siding{ - dir = 5 +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 }, -/obj/structure/toilet{ - pixel_y = 8 +/obj/structure/chair/sofa/corp{ + dir = 8 }, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/iron/white/small, -/area/station/medical/patients_rooms) +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "fjv" = ( /obj/effect/turf_decal/siding, /obj/effect/turf_decal/trimline/blue/filled/warning, @@ -35188,7 +35214,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/landmark/navigate_destination, /turf/open/floor/plating, /area/station/maintenance/disposal) @@ -35389,6 +35415,7 @@ }, /obj/structure/flora/bush/lavendergrass/style_random, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/misc/asteroid/airless, /area/space/nearstation) "flv" = ( @@ -36026,7 +36053,7 @@ "fqA" = ( /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fqC" = ( /obj/machinery/power/port_gen/pacman/pre_loaded, /obj/structure/sign/warning/electric_shock/directional/north, @@ -36304,7 +36331,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fsY" = ( /obj/structure/sign/clock/directional/east, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -36334,7 +36361,7 @@ dir = 6 }, /turf/open/water/beach, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ftw" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -36419,10 +36446,6 @@ }, /obj/structure/bed, /obj/item/bedsheet, -/obj/machinery/flasher/directional/east{ - pixel_y = 24; - id = "Cell 2" - }, /turf/open/floor/iron/dark, /area/station/security/brig) "fut" = ( @@ -36503,6 +36526,7 @@ /turf/open/floor/plating, /area/station/maintenance/port/central) "fuU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/carpet, /area/station/medical/psychology) "fuV" = ( @@ -36511,7 +36535,7 @@ network = list("minisat") }, /turf/open/misc/asteroid/airless, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fuW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37097,7 +37121,7 @@ /obj/structure/sign/warning/electric_shock/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "fyL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -37203,6 +37227,19 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/white, /area/station/science/lobby) +"fzH" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/curtain/cloth{ + color = "#52B4E9" + }, +/turf/open/floor/grass, +/area/station/medical/paramedic) "fzL" = ( /obj/structure/lattice/catwalk, /turf/open/space/openspace, @@ -37327,7 +37364,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fAT" = ( /obj/effect/spawner/random/structure/girder, /turf/open/floor/plating, @@ -37418,8 +37455,10 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos) "fBx" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall/rust, +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "fBL" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ @@ -37585,7 +37624,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fDa" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -37615,6 +37654,16 @@ }, /turf/open/floor/plating, /area/station/maintenance/fore/greater) +"fDh" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "fDk" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ @@ -37639,7 +37688,7 @@ /obj/machinery/door/airlock/research/glass{ name = "Research Division Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/poddoor/shutters/preopen{ id = "rdrnd"; name = "Research and Development Shutters" @@ -37886,7 +37935,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Chapel Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -38904,7 +38953,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fNd" = ( /obj/structure/cable, /obj/effect/spawner/random/trash, @@ -39803,7 +39852,7 @@ dir = 4 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fTH" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -40107,13 +40156,6 @@ /obj/machinery/suit_storage_unit/engine, /turf/open/floor/iron/dark/textured, /area/station/engineering/engine_smes) -"fVk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "fVl" = ( /obj/structure/chair/sofa/bench/left{ dir = 1 @@ -40442,7 +40484,7 @@ /turf/open/floor/iron/stairs{ color = "#3d3e42" }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fXQ" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 4 @@ -40574,13 +40616,13 @@ color = "#4874A2" }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fZk" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end, /obj/machinery/holopad/secure, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fZl" = ( /obj/structure/rack, /obj/item/reagent_containers/cup/bottle/acidic_buffer{ @@ -40774,7 +40816,7 @@ /obj/structure/broken_flooring/side/directional/north, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/station/medical/patients_rooms) +/area/station/maintenance/department/cargo) "gaL" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -40842,6 +40884,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"gbi" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "gbm" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ @@ -40925,17 +40977,13 @@ /turf/open/floor/iron/dark/textured, /area/station/security/brig/lower) "gbV" = ( -/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/table/glass, /obj/machinery/computer/records/medical/laptop, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 + 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, -/area/station/medical/patients_rooms) +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "gbW" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/wood/large, @@ -41218,7 +41266,7 @@ /turf/open/floor/iron/stairs{ color = "#3d3e42" }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gej" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /obj/effect/spawner/random/vending/colavend, @@ -41409,7 +41457,7 @@ id = "AIgarden" }, /turf/open/floor/plating, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gfH" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/chair/stool/directional/south, @@ -41516,7 +41564,7 @@ pixel_y = -10 }, /turf/open/misc/beach/sand, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ggl" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Education Chamber Maintenance" @@ -41556,7 +41604,7 @@ name = "Library Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -41762,6 +41810,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "gih" = ( @@ -41979,7 +42028,8 @@ id = "holdingflash"; name = "Holding Cell Flasher"; req_access = list("security"); - pixel_x = 24 + pixel_x = 24; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42387,7 +42437,7 @@ desc = "A very fashionable pair of flip flops."; name = "flip-flops" }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/white/small, /area/station/commons/toilet/shower) @@ -42421,17 +42471,16 @@ /turf/open/floor/iron/dark, /area/station/science/ordnance) "gmk" = ( -/obj/effect/turf_decal/siding{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/blue{ dir = 8 }, -/obj/effect/turf_decal/siding/corner, -/obj/effect/turf_decal/siding/corner{ +/obj/effect/turf_decal/siding/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/herringbone, -/area/station/medical/patients_rooms) +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/paramedic) "gml" = ( /obj/structure/table/reinforced/rglass, /obj/item/pai_card{ @@ -42698,7 +42747,7 @@ /obj/effect/turf_decal/box/red, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "goa" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -42792,6 +42841,8 @@ 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/medical/psychology) "goM" = ( @@ -42801,7 +42852,7 @@ "goO" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "goU" = ( /obj/structure/railing/corner{ dir = 1 @@ -42931,7 +42982,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gpL" = ( /obj/structure/table/wood/fancy/blue, /obj/effect/spawner/random/aimodule/neutral, @@ -42946,7 +42997,7 @@ req_access = list("captain") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "gqf" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 6 @@ -43102,7 +43153,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/station/medical/patients_rooms) +/area/station/maintenance/department/cargo) "gro" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -43126,7 +43177,7 @@ }, /obj/machinery/light/directional/north, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "grL" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -43173,6 +43224,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "gsi" = ( @@ -43353,7 +43405,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "guo" = ( /obj/structure/stairs/south, /obj/structure/railing{ @@ -43418,7 +43470,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "guG" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /obj/machinery/pipedispenser/disposal, @@ -43633,7 +43685,7 @@ /area/station/engineering/atmos) "gwv" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gwz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -44074,7 +44126,7 @@ /obj/effect/turf_decal/bot/right, /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gzE" = ( /turf/open/floor/glass/reinforced, /area/station/maintenance/department/cargo) @@ -44171,7 +44223,7 @@ /obj/machinery/light/small/directional/west, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gAD" = ( /obj/effect/turf_decal/siding/wideplating_new/dark, /obj/structure/railing, @@ -44232,7 +44284,7 @@ /obj/structure/sign/poster/official/state_laws/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "gBe" = ( /obj/effect/turf_decal/trimline/white/line, /obj/effect/turf_decal/trimline/white/line{ @@ -44322,7 +44374,7 @@ dir = 5 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gBD" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /obj/structure/table/reinforced, @@ -44472,7 +44524,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gCg" = ( /obj/item/clothing/shoes/workboots/mining, /turf/open/misc/asteroid/airless{ @@ -44506,7 +44558,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "gCB" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 8 @@ -44516,8 +44568,7 @@ }, /obj/structure/tank_holder/extinguisher, /obj/machinery/camera/autoname/directional/south{ - network = list("ss13","medbay"); - dir = 5 + network = list("ss13","medbay") }, /turf/open/floor/iron/white, /area/station/medical/lower) @@ -45190,7 +45241,7 @@ /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/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -45498,7 +45549,7 @@ /obj/item/pillow, /obj/machinery/light/small/directional/south, /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gKD" = ( /obj/effect/turf_decal/stripes/white/box, /obj/machinery/computer/camera_advanced/xenobio{ @@ -45996,7 +46047,7 @@ color = "#3d3e42"; dir = 1 }, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "gNF" = ( /obj/structure/hedge, /obj/structure/railing{ @@ -46179,17 +46230,20 @@ /turf/open/floor/iron/dark, /area/station/science/xenobiology) "gPo" = ( -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/effect/turf_decal/siding{ +/obj/effect/turf_decal/siding/blue{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 +/obj/effect/turf_decal/siding/blue{ + dir = 4 }, -/turf/open/floor/iron/white/herringbone, -/area/station/medical/patients_rooms) +/obj/structure/cable, +/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/herringbone, +/area/station/medical/paramedic) "gPr" = ( /obj/machinery/holopad{ pixel_x = 1 @@ -46339,7 +46393,7 @@ /obj/structure/hedge, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "gQv" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -46428,7 +46482,7 @@ /obj/structure/extinguisher_cabinet/directional/west, /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gRg" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -46515,15 +46569,13 @@ /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /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/multilayer/connected, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gRR" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/dark/corner{ @@ -47000,6 +47052,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_edge, /area/station/medical/pharmacy) +"gVK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "medprivacy"; + name = "Privacy Shutter" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/treatment_center) "gVR" = ( /obj/effect/turf_decal/trimline/red/line, /obj/structure/closet/lasertag/red, @@ -47049,7 +47109,7 @@ /turf/open/floor/iron/white, /area/station/medical/abandoned) "gWm" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/machinery/button/door/directional/north{ id = "rdrnd"; name = "Research and Development Containment Control"; @@ -47101,7 +47161,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "gWz" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 @@ -47168,7 +47228,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gXd" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -47952,7 +48012,7 @@ dir = 4 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hcA" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 @@ -48070,7 +48130,7 @@ /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/flora/bush/ferny/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hdF" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /obj/effect/mapping_helpers/broken_floor, @@ -48182,7 +48242,6 @@ /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/grassy/style_random, -/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, @@ -48286,7 +48345,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "hfr" = ( /obj/structure/lattice, /obj/structure/railing{ @@ -48728,7 +48787,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -48736,8 +48795,6 @@ "hiq" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/effect/landmark/navigate_destination/med, -/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/small, /area/station/medical/medbay/lobby) @@ -48805,8 +48862,13 @@ /obj/effect/turf_decal/trimline/white/warning{ dir = 8 }, +/obj/machinery/flasher/directional/east{ + id = "Cell 2"; + pixel_y = -5; + pixel_x = 24 + }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hiF" = ( /obj/structure/broken_flooring/singular/always_floorplane/directional/east, /obj/structure/railing/corner/end/flip{ @@ -48964,18 +49026,17 @@ /turf/open/floor/iron/white/small, /area/station/commons/toilet/shower) "hjE" = ( -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/effect/turf_decal/siding, /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/herringbone, -/area/station/medical/patients_rooms) +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "hjG" = ( /obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ name = "Burn Chamber Exterior Airlock" @@ -49119,7 +49180,7 @@ /obj/effect/turf_decal/bot, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hkX" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 1 @@ -49474,7 +49535,7 @@ }, /obj/structure/cable, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hox" = ( /obj/effect/turf_decal/siding/dark, /obj/structure/cable, @@ -49508,7 +49569,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -49698,7 +49759,7 @@ /obj/effect/turf_decal/trimline/dark_red/mid_joiner{ dir = 8 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/machinery/digital_clock/directional/south, /turf/open/floor/iron/white/textured_large, /area/station/commons/fitness) @@ -49762,7 +49823,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hqL" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/cable, @@ -49846,9 +49907,7 @@ "hrj" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/wideplating_new/dark/corner, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "hrm" = ( @@ -50038,7 +50097,7 @@ /obj/machinery/airalarm/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hsI" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 @@ -50058,7 +50117,7 @@ /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/tree/jungle/style_6, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hsL" = ( /obj/effect/turf_decal/bot, /obj/machinery/meter, @@ -50164,7 +50223,7 @@ /obj/effect/turf_decal/bot, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "htu" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -50338,6 +50397,21 @@ }, /turf/open/floor/iron/dark/small, /area/station/command) +"huN" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) "huQ" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -50652,7 +50726,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hxj" = ( /obj/structure/chair/office/light{ dir = 8 @@ -50761,7 +50835,7 @@ network = list("minisat") }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hyb" = ( /obj/effect/turf_decal/trimline/dark/corner{ dir = 1 @@ -50773,7 +50847,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hyc" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/effect/turf_decal/trimline/red/line{ @@ -51080,7 +51154,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "hAK" = ( /obj/effect/turf_decal/siding{ dir = 10 @@ -51245,6 +51319,12 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"hCG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "hCH" = ( /obj/structure/flora/grass/green/style_3, /obj/structure/flora/bush/flowers_br/style_random, @@ -51341,7 +51421,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "hDo" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -51611,7 +51691,7 @@ /obj/machinery/light_switch/directional/east, /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hFE" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -51655,7 +51735,7 @@ dir = 4 }, /obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/central) "hFV" = ( @@ -51715,7 +51795,7 @@ uses = 10 }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hGO" = ( /obj/effect/turf_decal/tile/dark/diagonal_centre, /obj/structure/table/glass, @@ -51912,10 +51992,8 @@ /obj/item/clothing/under/misc/assistantformal, /obj/item/clothing/suit/hooded/wintercoat, /obj/item/clothing/shoes/winterboots, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, -/obj/effect/landmark/start/hangover/closet, +/obj/machinery/camera/autoname/directional/south, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/herringbone, /area/station/commons/locker) "hIe" = ( @@ -51976,7 +52054,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hIC" = ( /obj/structure/flora/rock/pile/style_random, /obj/structure/flora/grass/jungle/b/style_random, @@ -52302,7 +52380,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "hLu" = ( /obj/effect/turf_decal/trimline/dark/line{ dir = 6 @@ -52399,8 +52477,7 @@ /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/filingcabinet/white, /turf/open/floor/wood/parquet, /area/station/medical/psychology) "hMf" = ( @@ -52588,7 +52665,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hNu" = ( /obj/effect/turf_decal/trimline/brown/filled/line, /obj/effect/turf_decal/trimline/dark/line, @@ -52612,16 +52689,6 @@ dir = 8 }, /obj/structure/hedge, -/obj/structure/sign/directions/engineering/directional/south{ - pixel_y = -40 - }, -/obj/structure/sign/directions/dorms/directional/south{ - pixel_y = -24; - dir = 8 - }, -/obj/structure/sign/directions/evac/directional/south{ - dir = 8 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52868,6 +52935,9 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/warning/secure_area/directional/south{ + pixel_x = -32 + }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) "hOZ" = ( @@ -53126,7 +53196,7 @@ /obj/machinery/door/airlock/research/glass{ name = "Research Division Access" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -53273,7 +53343,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "hRv" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 9 @@ -53368,7 +53438,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hSt" = ( /obj/effect/turf_decal/trimline/blue/corner, /obj/effect/turf_decal/trimline/blue/corner{ @@ -53560,13 +53630,13 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hTz" = ( /obj/structure/rack, /obj/item/emergency_bed, /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, -/area/station/medical/patients_rooms) +/area/station/maintenance/department/cargo) "hTB" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -53775,7 +53845,7 @@ /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/structure/closet/crate/goldcrate, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "hVw" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -53939,7 +54009,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hWL" = ( /obj/structure/railing/corner{ dir = 8 @@ -53967,7 +54037,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hWT" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -53978,7 +54048,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "hXa" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -54073,6 +54143,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/security/general, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark, /area/station/security/breakroom) "hXH" = ( @@ -54296,7 +54367,7 @@ /area/station/security/prison) "hZu" = ( /obj/effect/turf_decal/bot, -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 8 }, /turf/open/floor/iron/dark/textured_large, @@ -54539,13 +54610,11 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 6 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/railing{ dir = 1 }, /obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "ibp" = ( @@ -54658,7 +54727,7 @@ /area/station/maintenance/port/aft) "icj" = ( /turf/closed/wall, -/area/station/medical/office) +/area/station/medical/paramedic) "icp" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -54691,7 +54760,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "icu" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 1 @@ -55211,9 +55280,6 @@ /turf/open/misc/asteroid/airless, /area/space/nearstation) "igS" = ( -/obj/structure/sign/departments/vault/directional/north{ - pixel_x = 32 - }, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 1 }, @@ -55400,7 +55466,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iik" = ( /obj/effect/turf_decal/siding/dark_blue{ dir = 9 @@ -55524,7 +55590,7 @@ /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/cup/watering_can, /obj/machinery/camera/autoname/directional/south{ - dir = 5 + pixel_x = 20 }, /turf/open/floor/iron/dark/herringbone, /area/station/service/hydroponics) @@ -55906,7 +55972,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -55954,7 +56020,7 @@ /obj/structure/flora/rock/pile/jungle/style_random, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "imM" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -56174,7 +56240,7 @@ /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/carpet/blue, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ioq" = ( /obj/structure/broken_flooring/singular/directional/east, /obj/machinery/light/small/directional/west, @@ -56558,7 +56624,7 @@ name = "Tactical Gear Locker" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iqV" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -56604,6 +56670,8 @@ 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/small, /area/station/medical/medbay/lobby) "irw" = ( @@ -56613,7 +56681,7 @@ /area/station/engineering/atmos/storage/gas) "irx" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "irB" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -56726,10 +56794,8 @@ /obj/effect/turf_decal/trimline/brown/line{ dir = 1 }, -/obj/structure/noticeboard/directional/north{ - dir = 2 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/noticeboard/directional/north, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) "isG" = ( @@ -57243,10 +57309,10 @@ /turf/open/floor/wood/large, /area/station/hallway/primary/port) "iwD" = ( -/obj/effect/turf_decal/siding/brown{ +/obj/effect/turf_decal/siding/brown/corner{ dir = 4 }, -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 }, /turf/open/floor/iron, @@ -57343,7 +57409,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ixf" = ( /obj/structure/cable, /obj/structure/railing/corner{ @@ -57378,7 +57444,7 @@ dir = 10 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ixm" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/vending/cigarette, @@ -57846,7 +57912,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iBn" = ( /obj/structure/mop_bucket, /obj/item/mop, @@ -58119,7 +58185,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "iDe" = ( /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos) @@ -58142,9 +58208,7 @@ pixel_x = 9; pixel_y = 11 }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "iDu" = ( @@ -58823,10 +58887,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_edge, /area/station/service/hydroponics) -"iHK" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) "iHR" = ( /obj/structure/broken_flooring/singular/directional/north, /obj/structure/curtain/cloth{ @@ -58971,7 +59031,7 @@ /area/station/science/xenobiology) "iJc" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "iJd" = ( /obj/effect/turf_decal/siding/purple, /obj/structure/table/reinforced/rglass, @@ -59100,13 +59160,14 @@ /turf/open/floor/plating, /area/station/maintenance/port) "iKq" = ( -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/maintenance{ name = "UndergroundCasino" }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "iKr" = ( @@ -59322,7 +59383,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -59559,7 +59620,7 @@ /area/station/science/ordnance/testlab) "iNm" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iNo" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 @@ -59766,7 +59827,7 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "iPp" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 8 }, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -59794,7 +59855,7 @@ /obj/structure/table/reinforced, /obj/machinery/microwave, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iPF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59809,7 +59870,7 @@ /obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "iPG" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -60189,6 +60250,23 @@ dir = 1 }, /area/station/hallway/primary/starboard) +"iSX" = ( +/obj/structure/sign/directions/medical/directional/east{ + pixel_y = 8; + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/science/directional/east{ + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/east{ + pixel_y = -8; + dir = 1; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/commons/storage/primary) "iSZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -60227,7 +60305,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "iTm" = ( /obj/effect/turf_decal/trimline/purple/filled/warning, /obj/effect/turf_decal/stripes/corner{ @@ -60262,7 +60340,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iTt" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -60504,6 +60582,7 @@ dir = 1 }, /obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "iVR" = ( @@ -60550,7 +60629,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iWl" = ( /obj/structure/railing{ dir = 4 @@ -60691,6 +60770,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/camera/autoname/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/security/checkpoint/escape) "iWP" = ( @@ -60831,7 +60911,7 @@ name = "Auxiliry Dock Storage Room" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60922,7 +61002,7 @@ pixel_x = -6; pixel_y = 8 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -6 }, /turf/open/floor/iron/dark, @@ -61134,7 +61214,7 @@ uses = 10 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jbw" = ( /obj/structure/railing, /obj/structure/railing{ @@ -61146,7 +61226,7 @@ color = "#3d3e42"; dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jbD" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 @@ -61619,12 +61699,12 @@ /turf/closed/wall/r_wall, /area/station/maintenance/aft/greater) "jeA" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id = "cargosecprivacy"; name = "Privacy Shutter" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/checkpoint/supply) "jeI" = ( @@ -61719,7 +61799,7 @@ /obj/structure/hedge, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jfw" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 @@ -61959,7 +62039,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jhE" = ( /obj/effect/turf_decal/tile/dark_blue{ dir = 8 @@ -62152,7 +62232,8 @@ dir = 1 }, /obj/structure/sign/gym/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 9 @@ -62343,7 +62424,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jkh" = ( /obj/effect/turf_decal/stripes/box, /obj/machinery/computer/gateway_control, @@ -62406,6 +62487,11 @@ }, /turf/open/floor/iron/dark/smooth_edge, /area/station/science/genetics) +"jkQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "jkW" = ( /obj/structure/flora/rock/pile/jungle/style_random, /turf/open/floor/engine/hull/reinforced, @@ -62543,7 +62629,7 @@ /obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "jmZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -62678,7 +62764,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "joJ" = ( /obj/structure/hedge, /obj/structure/railing{ @@ -62700,7 +62786,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "joT" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -62968,14 +63054,14 @@ /obj/item/crowbar/red, /obj/item/wrench, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/service"; + control_area = "/area/station/ai/satellite/service"; name = "Service Bay Turret Control"; req_access = list("minisat"); pixel_y = -27 }, /obj/machinery/digital_clock/directional/east, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "jqT" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -63433,7 +63519,7 @@ /obj/structure/flora/bush/flowers_pp/style_random, /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "juB" = ( /obj/machinery/computer/order_console/mining, /turf/open/floor/iron/dark/textured_large, @@ -63528,10 +63614,10 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) "jvd" = ( @@ -63750,7 +63836,7 @@ "jwy" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/machinery/light/directional/south, /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark/small, @@ -63797,6 +63883,7 @@ dir = 1 }, /obj/structure/hedge, +/obj/machinery/digital_clock/directional/north, /turf/open/floor/iron/white, /area/station/hallway/primary/fore) "jxc" = ( @@ -63807,7 +63894,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/command/teleporter, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -63880,7 +63967,7 @@ /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/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -64105,6 +64192,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) +"jzp" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) "jzs" = ( /obj/effect/turf_decal/trimline/brown/filled/line, /obj/structure/cable, @@ -64263,7 +64359,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/trimline/red/filled/line, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jAf" = ( /obj/machinery/airalarm/directional/north, /obj/structure/cable, @@ -64317,8 +64413,7 @@ dir = 4 }, /obj/machinery/camera/autoname/directional/south{ - network = list("ss13","medbay"); - dir = 5 + network = list("ss13","medbay") }, /turf/open/floor/iron/dark/small, /area/station/medical/cryo) @@ -64344,7 +64439,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "jAu" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -64366,7 +64461,7 @@ /obj/item/radio/intercom/directional/north, /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jAD" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -64590,7 +64685,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jBA" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -64695,10 +64790,6 @@ /obj/machinery/computer/security/telescreen/rd/directional/north, /turf/open/floor/iron/dark/textured, /area/station/command/heads_quarters/rd) -"jCi" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) "jCl" = ( /obj/machinery/door/airlock/security/glass{ name = "Security Desk" @@ -64720,9 +64811,7 @@ dir = 5 }, /obj/item/kirbyplants/random, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/corner{ dir = 8 }, @@ -64891,6 +64980,13 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) +"jDr" = ( +/obj/structure/sign/directions/evac/directional/north{ + dir = 8; + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/commons/dorms) "jDu" = ( /obj/structure/hedge, /obj/structure/railing{ @@ -64936,6 +65032,8 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/psychology, /obj/structure/cable, /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/white, /area/station/medical/psychology) "jEa" = ( @@ -65170,7 +65268,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jFD" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -65731,7 +65829,7 @@ /obj/structure/sign/warning/vacuum/external/directional/south, /obj/structure/closet/emcloset, /obj/effect/turf_decal/bot_white, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/maintenance/central) "jKq" = ( @@ -65783,7 +65881,7 @@ /obj/machinery/teleport/station, /obj/item/radio/intercom/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "jKS" = ( /obj/effect/turf_decal/siding{ dir = 1 @@ -66018,11 +66116,12 @@ }, /obj/effect/turf_decal/siding/wood/corner, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster/random/directional/west, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/wood/large, /area/station/commons/dorms) "jMG" = ( @@ -66429,7 +66528,7 @@ /obj/structure/cable, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jPK" = ( /obj/structure/railing/corner{ dir = 8 @@ -66460,7 +66559,7 @@ }, /obj/structure/cable, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jQc" = ( /obj/effect/turf_decal/siding/brown{ dir = 1 @@ -66614,14 +66713,15 @@ }, /area/station/security/lockers) "jQI" = ( -/obj/effect/turf_decal/siding, -/obj/effect/turf_decal/siding{ - dir = 1 +/obj/effect/turf_decal/trimline/blue/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/white/herringbone, -/area/station/medical/patients_rooms) +/obj/structure/fireaxecabinet/jawsofrecovery/directional/east, +/obj/effect/turf_decal/trimline/blue/tram{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "jQK" = ( /obj/effect/turf_decal/siding/brown{ dir = 4 @@ -66715,7 +66815,7 @@ "jRq" = ( /obj/structure/cable/multilayer/connected, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jRr" = ( /obj/structure/table/reinforced/rglass, /obj/item/flashlight/lamp/green{ @@ -66881,7 +66981,7 @@ /obj/structure/hedge, /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jTn" = ( /obj/effect/spawner/random/trash/graffiti{ random_icon = 0 @@ -67038,7 +67138,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/carpet/blue, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "jUR" = ( /obj/structure/transit_tube/station/dispenser/reverse{ dir = 4 @@ -67053,7 +67153,8 @@ /obj/effect/turf_decal/siding/thinplating_new/light, /obj/effect/turf_decal/trimline/dark_red/line, /obj/structure/sign/gym/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/trimline/dark_red/mid_joiner, /obj/machinery/light/directional/north, @@ -67088,7 +67189,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jUZ" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -67247,13 +67348,13 @@ /area/station/science/cytology) "jWh" = ( /obj/structure/table/reinforced/rglass, -/obj/machinery/fax{ - fax_name = "Research Director's Office"; - name = "Research Director's Fax Machine" - }, /obj/item/folder/blue, /obj/item/clothing/neck/stethoscope, /obj/item/clothing/glasses/hud/health, +/obj/machinery/fax{ + fax_name = "Chief Medical Officer's Office"; + name = "Chief Medical Officer's Fax Machine" + }, /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/cmo) "jWj" = ( @@ -67329,7 +67430,7 @@ /obj/effect/turf_decal/siding/wideplating_new/dark/corner, /obj/structure/flora/bush/lavendergrass/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jWT" = ( /obj/structure/sign/poster/contraband/wildcat/directional/east, /obj/structure/hedge, @@ -67436,7 +67537,7 @@ /obj/structure/closet/wardrobe/white, /obj/effect/turf_decal/trimline/white, /obj/item/clothing/gloves/color/white, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/herringbone, /area/station/commons/locker) "jYb" = ( @@ -67882,14 +67983,12 @@ /obj/structure/cable, /obj/effect/turf_decal/bot_white, /obj/structure/chair, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /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/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/aft/lesser) "kbw" = ( @@ -69089,7 +69188,8 @@ /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 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/bot, /obj/machinery/light/directional/north, @@ -69110,7 +69210,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kjT" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -69264,8 +69364,12 @@ /obj/effect/turf_decal/trimline/white/warning{ dir = 4 }, +/obj/machinery/flasher/directional/west{ + id = "AI"; + pixel_y = -5 + }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kkZ" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/cardboard, @@ -69650,9 +69754,7 @@ /obj/machinery/light_switch/directional/south{ pixel_x = -6 }, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/carpet, /area/station/command/meeting_room) "knt" = ( @@ -69744,7 +69846,7 @@ name = "Wine Storage" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -69799,7 +69901,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "koi" = ( /obj/effect/turf_decal/tile/dark/diagonal_centre, /obj/effect/turf_decal/siding/thinplating_new/light{ @@ -69958,7 +70060,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kpj" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -69981,12 +70083,12 @@ dir = 8 }, /obj/machinery/camera/autoname/directional/north{ - dir = 9; - network = list("aiupload") + network = list("aiupload"); + pixel_x = 22 }, /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "kpo" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -70334,7 +70436,7 @@ dir = 4 }, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "krt" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth{ @@ -70417,7 +70519,7 @@ "krS" = ( /obj/machinery/porta_turret/ai, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "krX" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -70604,7 +70706,7 @@ dir = 1 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ktO" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 @@ -70785,7 +70887,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -71176,7 +71278,7 @@ /area/station/security/checkpoint/science) "kxn" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kxp" = ( /obj/item/radio/intercom/directional/south, /obj/structure/table/reinforced, @@ -71255,17 +71357,6 @@ /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 1 }, -/obj/structure/sign/directions/vault/directional/south{ - pixel_y = -24; - dir = 9 - }, -/obj/structure/sign/directions/command/directional/south{ - dir = 9 - }, -/obj/structure/sign/directions/upload/directional/south{ - pixel_y = -40; - dir = 9 - }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) "kxV" = ( @@ -71289,12 +71380,18 @@ /area/station/engineering/atmos/project) "kyd" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 + dir = 8 }, -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/patients_rooms) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/structure/sign/clock/directional/east, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "kye" = ( /obj/structure/flora/rock/pile/jungle/large/style_random, /obj/effect/decal/cleanable/dirt, @@ -71468,7 +71565,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kzh" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -71527,7 +71624,7 @@ "kzJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "kzM" = ( /obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71536,7 +71633,7 @@ }, /obj/machinery/newscaster/directional/south, /turf/open/floor/carpet/blue, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "kzQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71798,7 +71895,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kCd" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 4 @@ -71846,18 +71943,9 @@ /obj/item/stack/medical/suture, /obj/item/stack/medical/suture, /obj/machinery/airalarm/directional/west, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, +/obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"kCp" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/closed/wall/r_wall, -/area/station/science/server) "kCq" = ( /obj/structure/grille, /obj/structure/lattice, @@ -72043,7 +72131,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kDy" = ( /obj/structure/fireplace{ pixel_x = -32 @@ -72202,7 +72290,7 @@ uses = 10 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kEj" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -72329,7 +72417,7 @@ /obj/machinery/light/floor, /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kEP" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -72836,6 +72924,22 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) +"kIp" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "kIv" = ( /obj/structure/hedge, /turf/open/floor/plating, @@ -72853,7 +72957,7 @@ network = list("minisat") }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kII" = ( /obj/machinery/research/anomaly_refinery, /obj/effect/turf_decal/siding/purple, @@ -73032,17 +73136,9 @@ /turf/open/floor/iron/dark/textured, /area/station/commons/dorms) "kJX" = ( -/obj/structure/sink/directional/east, -/obj/structure/mirror/directional/west, -/obj/effect/turf_decal/siding{ - dir = 10 - }, -/mob/living/basic/mouse/brown{ - dir = 4; - name = "Jerry" - }, -/turf/open/floor/iron/white/small, -/area/station/medical/patients_rooms) +/obj/effect/turf_decal/siding/blue/end, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/paramedic) "kKb" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 @@ -73170,7 +73266,7 @@ /area/station/maintenance/department/medical) "kLs" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kLw" = ( /turf/open/floor/wood/large, /area/station/command/heads_quarters/cmo) @@ -73191,7 +73287,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "kLD" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -73262,7 +73358,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kMe" = ( /obj/effect/turf_decal/bot_white/right, /obj/effect/turf_decal/stripes/line, @@ -73280,7 +73376,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kMn" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -73359,6 +73455,13 @@ color = "#3d3e42" }, /area/station/security/prison) +"kMY" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) "kMZ" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -73385,13 +73488,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/small, /area/station/security/execution/transfer) -"kNp" = ( -/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) "kNt" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/trimline/brown, @@ -73694,7 +73790,7 @@ /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/nuke_storage) +/area/station/command/vault) "kQf" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -73824,12 +73920,12 @@ /obj/effect/landmark/event_spawn, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kQP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "kQZ" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/structure/chair/wood{ @@ -74007,7 +74103,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "kSE" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74151,7 +74247,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/closet/emcloset, /obj/structure/sign/poster/random/directional/north, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) "kTG" = ( @@ -74541,7 +74637,7 @@ }, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "kXm" = ( /obj/structure/sign/poster/random/directional/north, /obj/effect/spawner/random/maintenance, @@ -74798,7 +74894,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/digital_clock/directional/north, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "laa" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -75376,7 +75472,7 @@ /obj/structure/flora/bush/fullgrass/style_random, /obj/machinery/light/small/directional/south, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "lfD" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -75674,7 +75770,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/dark, /area/station/maintenance/aft/greater) "lid" = ( @@ -75735,7 +75831,7 @@ pixel_y = 0 }, /turf/open/water, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "liG" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -76083,7 +76179,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lkQ" = ( /obj/structure/sign/warning/secure_area/directional/south, /obj/effect/decal/cleanable/vomit/nebula, @@ -76337,7 +76433,7 @@ name = "Civil Rad Shelter" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -76746,7 +76842,7 @@ /obj/effect/turf_decal/bot/right, /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lpK" = ( /obj/effect/turf_decal/tile/brown/opposingcorners{ dir = 1 @@ -76959,7 +77055,7 @@ /turf/open/floor/iron/dark/herringbone, /area/station/commons/dorms) "lrn" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/effect/turf_decal/bot, @@ -77240,12 +77336,15 @@ /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 }, -/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen{ + dir = 1 + }, /obj/structure/easel, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/tile, /area/station/maintenance/port) @@ -77827,6 +77926,11 @@ /obj/machinery/vending/security, /turf/open/floor/glass/reinforced, /area/station/security/lockers) +"lyI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "lyM" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/sign/warning/no_smoking/directional/north, @@ -78043,12 +78147,10 @@ /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 4 }, -/obj/machinery/button/door/directional/south{ +/obj/machinery/button/door/directional/east{ id = "gateshutter"; name = "Gateway Shutter Control"; - req_access = list("gateway"); - pixel_y = 0; - pixel_x = 24 + req_access = list("gatweay") }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) @@ -78256,7 +78358,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lBk" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 5 @@ -78304,7 +78406,8 @@ /area/space/nearstation) "lBt" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -78341,9 +78444,6 @@ /turf/open/floor/iron/dark, /area/station/command/bridge) "lBR" = ( -/obj/machinery/door/airlock/medical{ - name = "Psychology Lobby" - }, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/door/firedoor, /obj/structure/cable, @@ -78352,8 +78452,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/obj/machinery/door/airlock/medical/glass{ + name = "Paramedic Dispatch Room" + }, /turf/open/floor/iron/white, -/area/station/medical/patients_rooms) +/area/station/medical/paramedic) "lBS" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -78659,9 +78763,9 @@ "lEI" = ( /obj/structure/transit_tube, /obj/effect/turf_decal/trimline/dark_blue, -/obj/structure/window/reinforced/fulltile, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lEP" = ( /obj/effect/turf_decal/siding/dark/end{ dir = 4 @@ -79066,7 +79170,7 @@ }, /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "lII" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/glass, @@ -79123,7 +79227,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lJf" = ( /obj/structure/sign/poster/random/directional/north, /obj/structure/table/wood, @@ -79246,7 +79350,7 @@ /obj/structure/sign/warning/vacuum/external/directional/north, /obj/machinery/light/small/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lKl" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 4 @@ -79468,7 +79572,7 @@ }, /obj/structure/hedge, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lMe" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -79558,7 +79662,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lMG" = ( /obj/effect/turf_decal/trimline/brown/filled/corner, /obj/effect/turf_decal/trimline/brown/filled/warning{ @@ -79649,7 +79753,7 @@ pixel_x = 7; pixel_y = 14 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 7 }, @@ -79742,7 +79846,7 @@ dir = 1 }, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; req_access = list("minisat"); pixel_y = -30 @@ -79754,7 +79858,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lND" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -79947,7 +80051,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lPA" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -79965,7 +80069,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lPG" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -80155,7 +80259,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lRC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/misc/asteroid/airless, @@ -80684,7 +80788,7 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/command/teleporter, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/external{ @@ -80725,7 +80829,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lWJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80801,7 +80905,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "lXF" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, @@ -80957,7 +81061,6 @@ dir = 8 }, /obj/effect/landmark/start/hangover, -/obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "lYN" = ( @@ -81091,7 +81194,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lZu" = ( /obj/structure/hedge, /obj/machinery/newscaster/directional/south, @@ -81306,7 +81409,7 @@ /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/ai_monitored/security/armory) +/area/station/security/armory) "mbl" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted, /obj/structure/sink/directional/west, @@ -81465,7 +81568,6 @@ dir = 1 }, /obj/machinery/duct, -/obj/effect/landmark/start/paramedic, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/smooth_large, /area/station/medical/treatment_center) @@ -82010,6 +82112,7 @@ dir = 6 }, /obj/structure/sign/gym{ + dir = 1; pixel_y = 32 }, /obj/machinery/status_display/evac/directional/west, @@ -82093,7 +82196,7 @@ /obj/effect/turf_decal/bot, /obj/structure/safe/vault, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "mhQ" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/maintenance, @@ -82127,7 +82230,7 @@ /obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mij" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -82435,7 +82538,7 @@ /turf/open/floor/iron/dark/textured, /area/station/command) "mkJ" = ( -/obj/machinery/computer/station_alert/station_only, +/obj/machinery/computer/station_alert, /obj/machinery/button/door/directional/north{ pixel_x = 6; id = "atmoslock"; @@ -83148,7 +83251,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port/aft) "mqG" = ( @@ -83207,7 +83310,7 @@ /turf/open/floor/iron/dark/textured, /area/station/security/checkpoint/medical) "mqY" = ( -/obj/structure/no_effect_signpost, +/obj/structure/signpost, /turf/open/misc/asteroid/airless, /area/space/nearstation) "mqZ" = ( @@ -83291,7 +83394,7 @@ }, /obj/structure/flora/rock/pile/style_random, /turf/open/water, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mrU" = ( /obj/structure/sign/departments/security/directional/south, /obj/effect/turf_decal/trimline/red/filled/corner{ @@ -83377,7 +83480,7 @@ }, /obj/structure/flora/rock/pile/style_random, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "msl" = ( /obj/machinery/defibrillator_mount/directional/south, /obj/structure/table/glass, @@ -83481,7 +83584,7 @@ pixel_x = 8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "msS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -83490,7 +83593,7 @@ color = "#3d3e42"; dir = 1 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "msT" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/bot_white, @@ -83541,8 +83644,8 @@ /area/station/maintenance/port) "mtj" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "mty" = ( @@ -83608,7 +83711,7 @@ /obj/structure/rack, /obj/machinery/camera/autoname/motion/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "muq" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -83813,9 +83916,7 @@ dir = 8 }, /obj/item/kirbyplants/random, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/side{ dir = 8 }, @@ -84480,7 +84581,8 @@ /obj/machinery/button/flasher{ id = "visitorflash"; pixel_x = -24; - pixel_y = -6 + pixel_y = -6; + dir = 8 }, /turf/open/floor/iron/dark/side{ dir = 9 @@ -84531,7 +84633,7 @@ color = "#3d3e42"; dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mBg" = ( /obj/structure/chair/comfy/brown{ buildstackamount = 0; @@ -84551,7 +84653,6 @@ /obj/structure/fence{ dir = 4 }, -/obj/structure/sign/warning/secure_area, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "mBl" = ( @@ -84579,7 +84680,7 @@ dir = 8 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mBn" = ( /obj/structure/flora/bush/grassy/style_3, /obj/effect/turf_decal/siding/wood, @@ -84702,17 +84803,9 @@ /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos/project) "mCn" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_blue/filled/line{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/station/command/corporate_suite) "mCr" = ( /obj/effect/spawner/random/structure/crate, @@ -84832,16 +84925,14 @@ /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 10 }, -/obj/machinery/button/door/directional/south{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - req_access = list("gateway"); - pixel_y = 0; - pixel_x = -24 - }, /obj/effect/turf_decal/trimline/dark_blue/corner{ dir = 4 }, +/obj/machinery/button/door/directional/west{ + id = "gateshutter"; + name = "Gatway Shutter Control"; + req_access = list("gateway") + }, /turf/open/floor/iron/dark, /area/station/command/gateway) "mDe" = ( @@ -84993,7 +85084,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mFk" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -85119,8 +85210,11 @@ /turf/open/floor/iron/white/textured, /area/station/commons/fitness/recreation/pool) "mGv" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/airless, /area/space/nearstation) "mGG" = ( /obj/effect/turf_decal/siding/wood{ @@ -85258,6 +85352,13 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) +"mHR" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#52B4E9" + }, +/turf/open/floor/plating, +/area/station/medical/paramedic) "mHT" = ( /turf/closed/wall/r_wall, /area/station/security/prison/safe) @@ -85345,7 +85446,7 @@ dir = 8 }, /obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/central) "mIB" = ( @@ -85685,7 +85786,7 @@ /obj/machinery/newscaster/directional/north, /obj/machinery/camera/autoname/motion/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mKS" = ( /obj/machinery/door/airlock/mining{ name = "Drone Bay" @@ -85905,7 +86006,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "mNi" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ dir = 4 @@ -86735,7 +86836,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "mSl" = ( /obj/machinery/door/airlock/external{ name = "Arrival Airlock"; @@ -86877,6 +86978,7 @@ page_link = "Psychologist"; name = "Brain System" }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/wood/parquet, /area/station/medical/psychology) "mTg" = ( @@ -86944,6 +87046,16 @@ }, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos/storage/gas) +"mTU" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "mTY" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, /obj/machinery/door/firedoor/heavy, @@ -87094,23 +87206,6 @@ "mUP" = ( /turf/closed/wall, /area/station/service/minibar) -"mUT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "medbay"; - dir = 1 - }, -/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 = 1 - }, -/obj/effect/turf_decal/trimline/blue/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/warning, -/turf/open/floor/iron/dark/textured, -/area/station/medical/medbay/lobby) "mUW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -87128,9 +87223,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/carpet/red, /area/station/service/library) "mVd" = ( @@ -87563,7 +87656,7 @@ /obj/structure/flora/bush/grassy/style_random, /obj/structure/flora/bush/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mZd" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -88095,6 +88188,7 @@ /obj/structure/flora/rock/pile/jungle/style_random, /obj/structure/bed/dogbed, /obj/structure/marker_beacon/lime, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/grass, /area/station/maintenance/aft/greater) "ndj" = ( @@ -88128,7 +88222,7 @@ dir = 9 }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ndD" = ( /obj/structure/railing/corner{ dir = 8 @@ -88462,7 +88556,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nho" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -88476,11 +88570,9 @@ /area/station/service/bar) "nhu" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nhw" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 1 @@ -88524,6 +88616,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "nhR" = ( @@ -88635,7 +88728,7 @@ /obj/machinery/door/airlock/medical/glass{ name = "Primary Treatment Centre" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -88672,7 +88765,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "njl" = ( /turf/open/floor/plating, /area/station/construction/mining/aux_base) @@ -88846,10 +88939,10 @@ /obj/machinery/door/airlock/maintenance{ name = "Abandoned Project Room" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "nkU" = ( @@ -89195,8 +89288,17 @@ /turf/open/floor/iron/dark, /area/station/cargo/miningoffice) "nnZ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/rust, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "noc" = ( /obj/effect/turf_decal/siding/wideplating_new/dark/corner{ @@ -89205,9 +89307,7 @@ /obj/structure/railing/corner{ dir = 1 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "noe" = ( @@ -89389,11 +89489,11 @@ /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/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) "npk" = ( @@ -89512,7 +89612,7 @@ }, /obj/effect/turf_decal/trimline/red/corner, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "npI" = ( /obj/effect/turf_decal/trimline/red/line{ dir = 4 @@ -90443,13 +90543,13 @@ }, /obj/machinery/light/small/directional/east, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/aisat/exterior"; + control_area = "/area/station/ai/satellite/exterior"; name = "Zen Garden Turret Control"; req_access = list("minisat"); pixel_y = 27 }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nwC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -90506,11 +90606,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "nxa" = ( @@ -90624,7 +90724,7 @@ /area/station/science/xenobiology) "nxR" = ( /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nym" = ( /obj/structure/table/wood, /obj/structure/cable, @@ -90878,7 +90978,7 @@ dir = 10 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nAd" = ( /obj/effect/turf_decal/siding/wideplating_new/dark/corner{ dir = 1 @@ -91009,7 +91109,7 @@ /obj/structure/sign/departments/medbay/alt/directional/north, /obj/structure/closet/emcloset, /obj/effect/turf_decal/siding/thinplating_new/light/corner, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/white, /area/station/hallway/primary/fore) "nAX" = ( @@ -91103,7 +91203,7 @@ /obj/structure/sign/warning/vacuum/external/directional/south, /obj/structure/closet/firecloset, /obj/effect/turf_decal/bot_white, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/maintenance/central) "nBv" = ( @@ -91350,7 +91450,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nDR" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, @@ -91449,9 +91549,7 @@ /obj/effect/turf_decal/trimline/dark/line{ dir = 1 }, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron, /area/station/cargo/storage) "nEz" = ( @@ -91704,7 +91802,8 @@ pixel_y = -6; pixel_x = -24; id = "ldorm1"; - name = "Curtains" + name = "Curtains"; + dir = 8 }, /turf/open/floor/wood/large, /area/station/commons/dorms) @@ -91779,7 +91878,8 @@ }, /obj/machinery/button/crematorium{ id = "crematoriumchapel"; - pixel_x = -25 + pixel_x = -25; + dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -91816,6 +91916,9 @@ dir = 6 }, /obj/effect/decal/cleanable/glass, +/obj/structure/sign/warning/secure_area/directional/south{ + pixel_x = 32 + }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) "nHv" = ( @@ -92257,7 +92360,7 @@ "nKQ" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "nKS" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -92393,7 +92496,7 @@ /area/space/nearstation) "nMh" = ( /obj/structure/bonfire/prelit, -/obj/item/food/kebab, +/obj/item/food/kebab/monkey, /turf/open/misc/asteroid/airless, /area/space/nearstation) "nMm" = ( @@ -92444,6 +92547,9 @@ /obj/effect/turf_decal/trimline/dark_red/filled/warning{ dir = 5 }, +/obj/structure/sign/warning/secure_area/directional/north{ + pixel_x = 32 + }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) "nMM" = ( @@ -92499,7 +92605,7 @@ /turf/open/floor/iron/dark, /area/station/service/hydroponics) "nNh" = ( -/obj/machinery/computer/station_alert/station_only, +/obj/machinery/computer/station_alert, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 }, @@ -92582,7 +92688,7 @@ }, /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster/random/directional/west, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/machinery/firealarm/directional/south, /turf/open/floor/wood/large, /area/station/commons/dorms) @@ -92807,9 +92913,13 @@ /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 }, -/obj/structure/chair/sofa/corp/left, -/turf/open/floor/iron/white, -/area/station/medical/patients_rooms) +/obj/machinery/suit_storage_unit/medical, +/obj/effect/turf_decal/box/white/corners{ + dir = 1; + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "nPA" = ( /obj/structure/frame/computer{ dir = 4 @@ -92835,6 +92945,7 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 9 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "nPK" = ( @@ -92942,7 +93053,7 @@ /obj/item/clothing/under/misc/assistantformal, /obj/item/clothing/suit/hooded/wintercoat, /obj/item/clothing/shoes/winterboots, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/dark/herringbone, /area/station/commons/locker) @@ -93051,11 +93162,10 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/rubble, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nQT" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/box, -/obj/item/defibrillator/loaded, /obj/item/clothing/gloves/latex/nitrile, /obj/item/clothing/gloves/latex/nitrile, /obj/effect/turf_decal/siding/dark{ @@ -93066,6 +93176,9 @@ }, /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 3 + }, /turf/open/floor/iron/dark/small, /area/station/medical/storage) "nRd" = ( @@ -93096,7 +93209,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/small, -/area/station/medical/patients_rooms) +/area/station/maintenance/department/cargo) "nRp" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -93340,14 +93453,14 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/command/eva, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/external{ name = "EVA Airlock" }, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nSV" = ( /obj/structure/railing, /obj/item/shell/bot, @@ -93898,7 +94011,7 @@ /area/station/maintenance/port) "nXA" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "nXE" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 4 @@ -93953,7 +94066,6 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/parquet, /area/station/medical/psychology) "nXY" = ( @@ -94012,10 +94124,11 @@ /obj/structure/hedge, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nYG" = ( /obj/structure/sign/gym{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/hedge, /obj/structure/railing{ @@ -94406,7 +94519,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "obe" = ( /obj/structure/cable, /obj/effect/spawner/random/maintenance, @@ -94644,7 +94757,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ocH" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -94958,7 +95071,7 @@ /obj/effect/turf_decal/trimline/dark, /obj/item/clothing/shoes/jackboots, /obj/item/clothing/gloves/color/black, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark/herringbone, /area/station/commons/locker) @@ -95469,11 +95582,11 @@ /area/station/security/checkpoint/customs) "oil" = ( /obj/structure/rack, -/obj/effect/spawner/random/armory/laser_gun, +/obj/effect/spawner/random/armory/pick_laser_loadout, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oit" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/trimline/dark/corner{ @@ -96254,7 +96367,7 @@ /obj/machinery/digital_clock/directional/north, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "onN" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 10 @@ -96398,7 +96511,7 @@ }, /obj/machinery/newscaster/directional/south, /turf/open/floor/carpet/blue, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ooA" = ( /obj/structure/cable, /obj/structure/broken_flooring/singular/directional/north, @@ -96727,7 +96840,7 @@ /turf/open/floor/iron/dark, /area/station/maintenance/starboard/central) "ork" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/effect/turf_decal/bot{ @@ -97387,7 +97500,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "owE" = ( /obj/structure/flora/bush/grassy/style_random, /obj/structure/flora/bush/lavendergrass/style_random, @@ -97470,7 +97583,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oxd" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/structure/chem_separator{ @@ -97617,17 +97730,16 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "oyb" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/line, /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 1 }, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/patients_rooms) +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "oye" = ( /obj/structure/flora/grass/jungle/b/style_random, /obj/structure/flora/bush/sparsegrass/style_random, @@ -97651,14 +97763,12 @@ /obj/structure/cable, /obj/effect/turf_decal/bot_white, /obj/structure/chair, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /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/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/aft/lesser) "oyl" = ( @@ -97721,7 +97831,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oyQ" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Two"; @@ -98244,7 +98354,7 @@ }, /obj/structure/flora/grass/jungle/b/style_5, /turf/open/water, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "oDe" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -98328,9 +98438,7 @@ /obj/structure/railing/corner{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "oDZ" = ( @@ -98411,7 +98519,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "oEB" = ( /obj/effect/turf_decal/siding{ dir = 10 @@ -98635,7 +98743,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "oGA" = ( /obj/effect/turf_decal/trimline/dark_green/warning{ dir = 4 @@ -98689,6 +98797,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"oGQ" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) "oGW" = ( /obj/structure/plasticflaps/opaque, /obj/machinery/navbeacon{ @@ -98732,9 +98846,7 @@ }, /obj/effect/turf_decal/trimline/yellow/corner, /obj/item/radio/intercom/directional/west, -/obj/machinery/camera/autoname/directional/west{ - dir = 10 - }, +/obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, @@ -98839,7 +98951,7 @@ /obj/machinery/computer/monitor, /obj/structure/cable, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "oIK" = ( /obj/structure/table/reinforced, /obj/effect/spawner/surgery_tray/full, @@ -98879,7 +98991,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "oIU" = ( /obj/structure/stairs/west, /obj/structure/railing, @@ -99407,7 +99519,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "oMi" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -99465,7 +99577,7 @@ /obj/structure/cable, /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "oMO" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -99631,7 +99743,8 @@ /area/station/science/lab) "oOa" = ( /obj/structure/sign/departments/botany/botany/alt3{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/trimline/green/corner{ dir = 8 @@ -99842,7 +99955,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oOZ" = ( /obj/structure/flora/rock/pile/style_random, /obj/effect/spawner/random/trash, @@ -100008,7 +100121,8 @@ pixel_y = -6; pixel_x = -24; id = "ldorm2"; - name = "Curtains" + name = "Curtains"; + dir = 8 }, /obj/structure/railing{ color = "#36373a"; @@ -100049,6 +100163,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/effect/mapping_helpers/airlock/access/all/science/rd, /obj/structure/plasticflaps/kitchen, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/dark, /area/station/science/server) "oQc" = ( @@ -100077,7 +100192,7 @@ /obj/structure/cable, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oQi" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 @@ -100471,7 +100586,7 @@ /turf/open/floor/iron/dark/textured, /area/station/service/library/lounge) "oSD" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/structure/sign/poster/official/random/directional/south, @@ -100505,7 +100620,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/rubble, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "oSQ" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 1 @@ -100601,7 +100716,7 @@ /obj/structure/sign/warning/vacuum/directional/north, /obj/structure/closet/emcloset, /obj/effect/turf_decal/bot_white, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/maintenance/central) "oTH" = ( @@ -100850,13 +100965,6 @@ /obj/effect/turf_decal/trimline/dark/filled/line{ dir = 1 }, -/obj/machinery/button/door/directional/west{ - id = "main_surgery"; - name = "Privacy Shutters Control"; - req_access = list("surgery"); - pixel_x = -56; - pixel_y = 6 - }, /turf/open/floor/iron/showroomfloor, /area/station/medical/surgery/theatre) "oVD" = ( @@ -101290,7 +101398,7 @@ /obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "oYY" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -101309,7 +101417,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oZj" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -101384,7 +101492,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "oZy" = ( @@ -101512,7 +101620,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Dormitory Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -101630,7 +101738,7 @@ /obj/machinery/holopad/secure, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "pbd" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 4 @@ -101648,8 +101756,8 @@ /obj/structure/chair/office/light{ dir = 4 }, -/obj/effect/landmark/start/paramedic, /obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, /turf/open/floor/iron/white/herringbone, /area/station/medical/office) "pbo" = ( @@ -101972,6 +102080,24 @@ /obj/structure/sign/poster/official/plasma_effects/directional/north, /turf/open/floor/iron/smooth, /area/station/maintenance/department/bridge) +"pdx" = ( +/obj/machinery/button/door/directional/east{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + req_access = list("cargo"); + pixel_y = -8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/storage) "pdz" = ( /obj/structure/chair/wood/wings, /obj/structure/fluff/paper/stack{ @@ -101988,11 +102114,12 @@ "pdE" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) "pdF" = ( @@ -102074,7 +102201,7 @@ id = "AIgarden2" }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pdW" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/turf_decal/bot{ @@ -102114,6 +102241,8 @@ location = "F5-Medbay-Lobby"; codes_txt = "patrol;next_patrol=F6-Medbay" }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/small, /area/station/medical/medbay/lobby) "pem" = ( @@ -102139,7 +102268,7 @@ dir = 9 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "peB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/effect/turf_decal/stripes/line{ @@ -103089,7 +103218,7 @@ /obj/machinery/status_display/ai/directional/east, /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "plp" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/table/glass, @@ -103295,7 +103424,6 @@ /obj/effect/turf_decal/trimline/blue/corner{ dir = 1 }, -/obj/effect/landmark/start/paramedic, /turf/open/floor/iron/dark, /area/station/medical/lower) "pnu" = ( @@ -103633,7 +103761,7 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/service/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -103731,7 +103859,7 @@ dir = 1 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pqv" = ( /obj/machinery/door/airlock/maintenance{ name = "Courtroom Maintenance" @@ -103840,7 +103968,7 @@ /obj/machinery/holopad/secure, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "prn" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 10 @@ -105088,6 +105216,13 @@ /obj/machinery/duct, /turf/open/floor/iron/dark/textured, /area/station/commons/dorms) +"pzo" = ( +/obj/structure/sign/directions/engineering/directional/east{ + dir = 2; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/maintenance/port/aft) "pzp" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/effect/turf_decal/bot, @@ -105173,7 +105308,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pzR" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, @@ -105202,7 +105337,7 @@ /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/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/dark, /area/station/maintenance/aft/greater) "pAa" = ( @@ -105227,7 +105362,7 @@ }, /obj/effect/turf_decal/trimline/red, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pAe" = ( /obj/machinery/status_display/ai, /turf/closed/wall/r_wall, @@ -105374,7 +105509,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -105528,7 +105663,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "pCn" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 6 @@ -106084,7 +106219,7 @@ }, /obj/structure/marker_beacon/yellow, /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pHa" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/iron/fifty, @@ -106158,6 +106293,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "pHv" = ( @@ -106723,7 +106859,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pLG" = ( /obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, /turf/open/floor/circuit/green, @@ -106958,7 +107094,7 @@ /obj/item/gun/ballistic/shotgun/riot, /obj/item/gun/ballistic/shotgun/riot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pNP" = ( /turf/closed/wall, /area/station/service/lawoffice) @@ -107169,7 +107305,7 @@ /obj/item/storage/lockbox/loyalty, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pPe" = ( /obj/structure/chair/comfy/black{ dir = 1 @@ -107182,10 +107318,11 @@ /area/station/science/breakroom) "pPh" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/central) "pPi" = ( @@ -107568,13 +107705,26 @@ dir = 8 }, /obj/machinery/camera/autoname/directional/south{ - dir = 5; network = list("interrogation") }, /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, /area/station/security/interrogation) +"pRL" = ( +/obj/structure/sign/directions/evac/directional/south{ + dir = 8; + pixel_y = 10 + }, +/obj/structure/sign/directions/dorms/directional/south{ + pixel_y = -10; + dir = 8 + }, +/obj/structure/sign/directions/engineering/directional/south{ + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/service/boutique) "pRP" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -107792,7 +107942,7 @@ dir = 8 }, /obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/wood/large, /area/station/commons/dorms) "pTC" = ( @@ -107805,7 +107955,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pTD" = ( /obj/effect/turf_decal/siding/brown{ dir = 1 @@ -107824,7 +107974,6 @@ /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/small, /area/station/medical/medbay/lobby) @@ -107885,7 +108034,7 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pUf" = ( /turf/closed/wall, /area/station/medical/break_room) @@ -107979,7 +108128,7 @@ }, /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pUZ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -108175,7 +108324,7 @@ req_access = list("captain") }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pWS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -108194,7 +108343,7 @@ name = "Chapel Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -108358,7 +108507,7 @@ color = "#4874A2" }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pYq" = ( /obj/structure/chair, /obj/effect/turf_decal/bot_white, @@ -108406,7 +108555,7 @@ /turf/open/floor/iron/dark, /area/station/medical/storage) "pYN" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -108511,7 +108660,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pZs" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -108646,7 +108795,7 @@ dir = 9 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qaB" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -109036,6 +109185,7 @@ dir = 1 }, /obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "qeJ" = ( @@ -109181,7 +109331,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qfB" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end{ dir = 1 @@ -109203,7 +109353,7 @@ name = "Private Channel" }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qfC" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /obj/structure/cable, @@ -109540,7 +109690,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qih" = ( /obj/effect/turf_decal/tile/blue/full, /obj/machinery/defibrillator_mount/mobile{ @@ -109957,9 +110107,7 @@ /obj/effect/turf_decal/siding/wideplating_new/dark/corner{ dir = 8 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "qlW" = ( @@ -110556,7 +110704,7 @@ /obj/structure/cable, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "qqk" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/carpet/neon/simple/red/nodots, @@ -111301,7 +111449,7 @@ /obj/item/restraints/handcuffs, /obj/item/assembly/flash/handheld, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qwT" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/trimline/green, @@ -111412,17 +111560,6 @@ dir = 4 }, /obj/structure/hedge, -/obj/structure/sign/directions/security/directional/north{ - pixel_y = 40; - dir = 4 - }, -/obj/structure/sign/directions/command/directional/north{ - dir = 4 - }, -/obj/structure/sign/directions/evac/directional/north{ - pixel_y = 24; - dir = 8 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -111532,7 +111669,7 @@ /obj/effect/turf_decal/bot, /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qyy" = ( /turf/open/floor/glass/reinforced, /area/station/commons/fitness) @@ -111612,9 +111749,7 @@ }, /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, -/obj/machinery/camera/autoname/directional/east{ - dir = 6 - }, +/obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, @@ -111766,7 +111901,7 @@ pixel_x = -8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qAi" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -111777,14 +111912,12 @@ /area/station/medical/coldroom) "qAl" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qAt" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -111814,10 +111947,11 @@ /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/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/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/fore) "qAG" = ( @@ -111841,7 +111975,7 @@ /obj/effect/spawner/random/armory/riot_helmet, /obj/effect/spawner/random/armory/riot_shield, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qBb" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /obj/structure/cable, @@ -112369,7 +112503,7 @@ }, /obj/structure/sign/poster/official/random/directional/east, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "qEO" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -112599,7 +112733,7 @@ /obj/effect/turf_decal/bot/right, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qGL" = ( /obj/item/reagent_containers/cup/beaker/cryoxadone{ pixel_x = -6; @@ -113282,7 +113416,7 @@ "qKN" = ( /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qKS" = ( /obj/effect/turf_decal/trimline/yellow, /obj/machinery/light/floor, @@ -113295,7 +113429,8 @@ dir = 1 }, /obj/structure/sign/painting/library_private{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/item/kirbyplants/organic/plant10, /turf/open/floor/carpet/green, @@ -113631,7 +113766,7 @@ pixel_x = 3 }, /turf/open/misc/beach/sand, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qNb" = ( /turf/closed/wall, /area/station/medical/pharmacy) @@ -113680,7 +113815,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qNs" = ( /obj/effect/turf_decal/trimline/yellow, /obj/machinery/light/floor, @@ -113757,7 +113892,7 @@ dir = 5 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qOs" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -113862,7 +113997,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "qPS" = ( /obj/effect/spawner/random/maintenance, /obj/structure/cable, @@ -113903,7 +114038,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qQa" = ( /obj/structure/closet/crate/coffin, /obj/effect/turf_decal/tile/dark/diagonal_centre, @@ -113958,13 +114093,17 @@ /turf/open/floor/iron/dark/small, /area/station/engineering/atmos) "qQq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/curtain/cloth{ + color = "#52B4E9" }, -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/turf/open/floor/grass, +/area/station/medical/paramedic) "qQu" = ( /obj/structure/flora/grass/jungle/b/style_random, /obj/structure/flora/bush/flowers_br/style_random, @@ -113974,7 +114113,7 @@ pixel_y = -32 }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qQC" = ( /obj/structure/flora/bush/fullgrass, /obj/structure/flora/bush/grassy/style_random, @@ -114141,6 +114280,9 @@ /obj/structure/broken_flooring/singular{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/north{ + pixel_x = -32 + }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) "qSi" = ( @@ -114318,12 +114460,10 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/structure/noticeboard/directional/west{ - 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/noticeboard/directional/west, /turf/open/floor/wood/tile, /area/station/service/cafeteria) "qTF" = ( @@ -114431,7 +114571,7 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/service/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/disposalpipe/segment{ @@ -114507,11 +114647,11 @@ /obj/effect/turf_decal/trimline/dark/corner{ dir = 8 }, -/obj/machinery/computer/station_alert/station_only, +/obj/machinery/computer/station_alert, /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qVC" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -114600,7 +114740,7 @@ }, /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/white/small, /area/station/commons/toilet/shower) "qWF" = ( @@ -114785,7 +114925,7 @@ dir = 10 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qYk" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, @@ -114913,7 +115053,7 @@ network = list("minisat") }, /turf/open/misc/asteroid/airless, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qZc" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -115246,7 +115386,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron/dark, @@ -115272,7 +115412,7 @@ /obj/structure/cable, /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rbJ" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/fyellow, @@ -115688,12 +115828,8 @@ /obj/effect/turf_decal/trimline/white/warning{ dir = 4 }, -/obj/machinery/flasher/directional/west{ - id = "AI"; - pixel_y = 26 - }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rfe" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -115883,10 +116019,6 @@ /area/station/engineering/atmos) "rgm" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "medbay"; - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -115894,6 +116026,12 @@ dir = 1 }, /obj/effect/turf_decal/trimline/blue/warning, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay"; + 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/textured, /area/station/medical/medbay/lobby) "rgp" = ( @@ -116918,7 +117056,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rot" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 @@ -117108,7 +117246,7 @@ /obj/structure/table/reinforced, /obj/machinery/recharger, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rpr" = ( /obj/effect/turf_decal/tile/brown/fourcorners, /obj/machinery/mineral/ore_redemption{ @@ -117489,7 +117627,7 @@ network = list("minisat") }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rrD" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/sparsegrass/style_random, @@ -117827,6 +117965,18 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) +"rub" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = 32; + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/wood/large, +/area/station/service/library/upper) "ruh" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -117950,6 +118100,17 @@ /obj/machinery/hydroponics/soil/rich, /turf/open/floor/grass, /area/station/service/hydroponics/garden) +"rvq" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "rvu" = ( /obj/item/kirbyplants/organic/plant10, /obj/effect/decal/cleanable/dirt/dust, @@ -117964,6 +118125,15 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"rvC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "rvD" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ color = "#ff0000"; @@ -118006,10 +118176,10 @@ /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/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "rwe" = ( @@ -118195,7 +118365,7 @@ /obj/machinery/teleport/hub, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "rxz" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -118488,10 +118658,11 @@ /obj/machinery/door/airlock/maintenance/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/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/cargo) "rAw" = ( @@ -118678,7 +118849,7 @@ "rBm" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "rBC" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -118749,7 +118920,7 @@ "rCf" = ( /obj/effect/turf_decal/trimline/dark/corner, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "rCi" = ( /obj/effect/turf_decal/bot, /obj/machinery/digital_clock/directional/south, @@ -119190,10 +119361,10 @@ /area/station/command/heads_quarters/qm) "rEV" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; - pixel_y = 28 + pixel_y = 28; + dir = 1 }, /obj/effect/turf_decal/siding/dark{ dir = 6 @@ -119208,7 +119379,7 @@ }, /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "rEX" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -119600,7 +119771,7 @@ name = "Research Division Access" }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -119903,7 +120074,7 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rKH" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/purple, @@ -119945,9 +120116,7 @@ /obj/effect/turf_decal/trimline/red/corner{ dir = 8 }, -/obj/machinery/camera/autoname/directional/east{ - dir = 6 - }, +/obj/machinery/camera/autoname/directional/east, /obj/machinery/firealarm/directional/east{ pixel_x = 26; pixel_y = 6 @@ -120086,7 +120255,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/holofloor/wood, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rLH" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -120832,7 +121001,7 @@ /obj/item/kirbyplants/random, /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rRE" = ( /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron/white, @@ -120865,14 +121034,14 @@ pixel_y = 11 }, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/atmos"; + control_area = "/area/station/ai/satellite/atmos"; name = "Atmospherics Turret Control"; req_access = list("minisat"); pixel_y = -27 }, /obj/machinery/digital_clock/directional/west, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "rSd" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -121407,9 +121576,6 @@ /turf/open/floor/iron/smooth, /area/station/maintenance/port/central) "rWS" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /turf/open/space/basic, /area/space/nearstation) "rWW" = ( @@ -121513,6 +121679,13 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood/large, /area/station/service/kitchen/diner) +"rXp" = ( +/obj/machinery/turretid{ + pixel_y = -5; + name = "AI Chamber turret control" + }, +/turf/closed/wall/r_wall, +/area/station/ai/satellite/chamber) "rXs" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/stripes/line{ @@ -121701,7 +121874,7 @@ /area/station/science/lower) "rYP" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rYR" = ( /turf/closed/wall/r_wall, /area/station/tcommsat/server) @@ -121799,6 +121972,13 @@ pixel_x = -26; pixel_y = -6 }, +/obj/machinery/button/door/directional/west{ + id = "main_surgery"; + name = "Privacy Shutters Control"; + req_access = list("surgery"); + pixel_x = -26; + pixel_y = 6 + }, /turf/open/floor/iron/showroomfloor, /area/station/medical/surgery/theatre) "rZu" = ( @@ -121853,6 +122033,8 @@ }, /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/corner{ dir = 8 }, @@ -122056,24 +122238,13 @@ /obj/structure/chair/office/light{ dir = 1 }, -/obj/machinery/button/door/directional/west{ - name = "Padded Cell Bolts Control"; - id = "padded"; - normaldoorcontrol = 1; - specialfunctions = 4; - pixel_x = -24; - pixel_y = 6 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/light_switch/directional/west{ - pixel_x = -26; - pixel_y = -6 - }, -/turf/open/floor/iron/white, -/area/station/medical/patients_rooms) +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "saR" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -122203,7 +122374,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sbL" = ( /obj/effect/turf_decal/weather/snow, /obj/structure/cable, @@ -122248,7 +122419,7 @@ name = "E.V.A. Storage Shutter" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "scx" = ( /obj/effect/turf_decal/tile/dark/diagonal_centre, /obj/machinery/oven/range, @@ -122838,6 +123009,15 @@ /obj/structure/flora/grass/jungle/b/style_4, /turf/open/floor/grass, /area/station/hallway/secondary/exit/departure_lounge) +"sgP" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) "sgS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -122878,7 +123058,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "shg" = ( /obj/structure/frame/machine, /turf/open/floor/iron/smooth_large, @@ -123122,7 +123302,7 @@ pixel_y = -24 }, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "sjI" = ( /obj/structure/cable, /obj/machinery/light/small/red/directional/west, @@ -123130,16 +123310,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/central) -"sjK" = ( -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/effect/turf_decal/siding/corner{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/white/small, -/area/station/medical/patients_rooms) "sjU" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/thinplating_new/dark, @@ -123248,7 +123418,7 @@ dir = 4 }, /obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/central) "skV" = ( @@ -123594,7 +123764,7 @@ /obj/effect/turf_decal/trimline/dark_red, /obj/machinery/light/small/directional/east, /obj/effect/spawner/random/clothing/gloves, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/herringbone, /area/station/commons/locker) "soc" = ( @@ -123923,6 +124093,19 @@ dir = 6 }, /area/station/maintenance/department/security) +"sqU" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "srd" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/lavendergrass/style_random, @@ -124096,7 +124279,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ssw" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -124720,7 +124903,8 @@ /area/station/security/brig) "sxx" = ( /obj/structure/sign/departments/botany/botany/alt3{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/trimline/green/corner, /obj/effect/turf_decal/siding/dark{ @@ -125006,7 +125190,7 @@ /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/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -125312,7 +125496,7 @@ dir = 8 }, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sCy" = ( /obj/structure/railing{ dir = 4 @@ -125544,7 +125728,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "sEh" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -125599,8 +125783,17 @@ /turf/open/floor/wood/tile, /area/station/service/minibar) "sEF" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "sEG" = ( /obj/machinery/oven/range, @@ -126049,7 +126242,7 @@ }, /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sHT" = ( /obj/effect/turf_decal/trimline/blue, /obj/machinery/light/floor, @@ -126227,9 +126420,7 @@ /area/station/maintenance/fore/lesser) "sJY" = ( /obj/effect/turf_decal/tile/green/anticorner/contrasted, -/obj/structure/noticeboard/directional/south{ - dir = 1 - }, +/obj/structure/noticeboard/directional/south, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden) "sJZ" = ( @@ -126247,7 +126438,7 @@ /obj/effect/mapping_helpers/airlock/access/all/science/general, /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/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -126353,7 +126544,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sKF" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -126658,6 +126849,20 @@ "sMC" = ( /turf/closed/wall/r_wall, /area/station/science/lower) +"sMP" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "sMS" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/trimline/yellow/warning, @@ -127203,7 +127408,7 @@ /obj/structure/sign/warning/vacuum/directional/north, /obj/structure/closet/firecloset, /obj/effect/turf_decal/bot_white, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/maintenance/central) "sRX" = ( @@ -127222,7 +127427,7 @@ }, /obj/structure/marker_beacon/lime, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sSe" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -127672,7 +127877,8 @@ /obj/effect/turf_decal/siding/purple, /obj/structure/cable, /obj/structure/noticeboard/rd{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/white, /area/station/science/lower) @@ -127689,6 +127895,7 @@ dir = 9 }, /obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "sVB" = ( @@ -127739,7 +127946,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "sVU" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 1"; @@ -127847,6 +128054,9 @@ /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/painting/large/library{ + dir = 1 + }, /turf/open/floor/plating, /area/station/maintenance/radshelter/civil) "sWO" = ( @@ -128280,7 +128490,8 @@ dir = 1 }, /obj/structure/noticeboard/cmo{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -128309,7 +128520,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "sZP" = ( /obj/structure/chair/office{ dir = 4 @@ -128375,6 +128586,7 @@ /obj/effect/turf_decal/trimline/dark/corner{ dir = 1 }, +/obj/structure/sign/departments/vault/directional/north, /turf/open/floor/iron/dark, /area/station/command) "tao" = ( @@ -128646,6 +128858,22 @@ }, /turf/open/floor/iron/dark/small, /area/station/engineering/gravity_generator) +"tcG" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "tcI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ @@ -128743,7 +128971,7 @@ /obj/machinery/light/small/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tdd" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark/textured, @@ -128849,13 +129077,18 @@ /turf/open/floor/plating, /area/station/maintenance/port/central) "tet" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/curtain/cloth{ + color = "#52B4E9" }, -/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) +/turf/open/floor/grass, +/area/station/medical/paramedic) "tez" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -129115,7 +129348,7 @@ }, /obj/structure/hedge, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tgm" = ( /obj/machinery/atmospherics/components/trinary/mixer/flipped{ dir = 8 @@ -129161,7 +129394,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tgF" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -129337,7 +129570,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "thP" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 10 @@ -129440,7 +129673,7 @@ /area/station/maintenance/port/fore) "tip" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "tiq" = ( /obj/effect/turf_decal/trimline/blue/line{ dir = 1 @@ -129550,7 +129783,7 @@ /obj/machinery/firealarm/directional/west, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tjx" = ( /obj/effect/turf_decal/trimline/blue, /obj/effect/turf_decal/trimline/blue/mid_joiner{ @@ -129564,7 +129797,6 @@ dir = 1 }, /obj/structure/cable, -/obj/effect/landmark/start/paramedic, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, /area/station/medical/treatment_center) @@ -130060,13 +130292,15 @@ "tnz" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/box, -/obj/item/defibrillator/loaded, /obj/item/clothing/gloves/latex/nitrile, /obj/item/clothing/gloves/latex/nitrile, /obj/machinery/requests_console/auto_name/directional/north{ name = "Medbay Requests Console" }, /obj/effect/mapping_helpers/requests_console/assistance, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 3 + }, /turf/open/floor/iron/dark/small, /area/station/medical/storage) "tnR" = ( @@ -130256,7 +130490,7 @@ /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 }, -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 8 }, /obj/effect/turf_decal/trimline/purple/line{ @@ -130319,6 +130553,19 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"tpN" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "tpQ" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 10 @@ -130333,14 +130580,12 @@ /area/space/nearstation) "tpS" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tpZ" = ( /obj/machinery/power/smes{ charge = 5e+006 @@ -130383,7 +130628,7 @@ /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/ferny/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tqo" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -130451,16 +130696,15 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos) "tqL" = ( -/obj/structure/sign/departments/psychology/directional/east, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 + dir = 8 }, -/obj/machinery/holopad, -/turf/open/floor/iron/white, -/area/station/medical/patients_rooms) +/obj/structure/closet/secure_closet/paramedic, +/obj/effect/turf_decal/box/white/corners{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "tqT" = ( /obj/effect/turf_decal/trimline/dark/warning{ dir = 4 @@ -130841,11 +131085,11 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/command/eva, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ttz" = ( /obj/machinery/light_switch/directional/west, /obj/effect/turf_decal/siding/blue{ @@ -130899,7 +131143,7 @@ /obj/machinery/light/small/directional/east, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ttO" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -131075,7 +131319,7 @@ "tvt" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tvw" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -131436,6 +131680,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"txY" = ( +/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, +/area/station/hallway/primary/fore) "tye" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -131853,12 +132104,6 @@ /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, /obj/effect/turf_decal/trimline/dark/corner{ dir = 8 }, @@ -132264,6 +132509,9 @@ /obj/effect/turf_decal/trimline/blue/line{ dir = 8 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/iron/white/small, /area/station/medical/medbay/lobby) "tDh" = ( @@ -132298,7 +132546,7 @@ /obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron/small, -/area/station/medical/patients_rooms) +/area/station/maintenance/department/cargo) "tDu" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -132324,7 +132572,7 @@ /area/station/security/prison) "tDF" = ( /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tDJ" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/turf_decal/trimline/blue/filled/corner{ @@ -132374,7 +132622,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tDR" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/flora/grass/jungle/b/style_random, @@ -132732,7 +132980,7 @@ /area/station/service/chapel) "tGr" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "tGx" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -132915,7 +133163,7 @@ }, /obj/effect/turf_decal/caution/red, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tHw" = ( /obj/structure/railing{ dir = 6 @@ -133166,10 +133414,9 @@ /area/station/engineering/storage/tech) "tJb" = ( /obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/suit_storage_unit/medical, -/obj/effect/turf_decal/delivery, /obj/structure/railing, /obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/closet/l3closet, /turf/open/floor/iron/dark, /area/station/medical/storage) "tJp" = ( @@ -133487,7 +133734,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "tLz" = ( /obj/structure/bookcase/random, /obj/effect/turf_decal/siding/wood{ @@ -133990,7 +134237,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/rubble, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tPc" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -134404,7 +134651,7 @@ network = list("vault") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tSs" = ( /obj/structure/cable, /turf/open/floor/iron/dark/small, @@ -134598,7 +134845,6 @@ /obj/machinery/airalarm/directional/south, /obj/effect/mapping_helpers/airalarm/engine_access, /obj/machinery/camera/autoname/directional/south{ - dir = 5; network = list("ss13","engine") }, /obj/effect/mapping_helpers/airalarm/link{ @@ -134630,14 +134876,14 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tTV" = ( /obj/structure/sign/warning/vacuum/directional/north, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/central) "tUa" = ( @@ -134836,7 +135082,6 @@ "tVO" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/box, -/obj/item/defibrillator/loaded, /obj/item/clothing/gloves/latex/nitrile, /obj/item/clothing/gloves/latex/nitrile, /obj/effect/turf_decal/siding/dark{ @@ -134850,6 +135095,9 @@ network = list("ss13","medbay"); dir = 9 }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 3 + }, /turf/open/floor/iron/dark/small, /area/station/medical/storage) "tVT" = ( @@ -134893,7 +135141,7 @@ /obj/machinery/digital_clock/directional/north, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "tWk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/effect/landmark/atmospheric_sanity/ignore_area, @@ -134990,7 +135238,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tXg" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth/fancy/mechanical{ @@ -135336,7 +135584,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tZm" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -135769,7 +136017,7 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "udz" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -136112,7 +136360,7 @@ /obj/item/kirbyplants/random, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ugO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/machinery/meter, @@ -136255,11 +136503,21 @@ /turf/open/floor/iron/dark/side, /area/station/maintenance/aft/greater) "uhK" = ( -/turf/closed/wall, -/area/station/medical/patients_rooms) +/obj/machinery/newscaster/directional/south, +/obj/structure/table/glass, +/obj/item/toy/figure/paramedic, +/obj/item/surgicaldrill{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "uhM" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uhP" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -136328,9 +136586,7 @@ dir = 4 }, /obj/structure/table/reinforced/rglass, -/obj/machinery/camera/autoname/directional/east{ - dir = 6 - }, +/obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, /area/station/command/bridge) "uiG" = ( @@ -136390,7 +136646,7 @@ /obj/machinery/newscaster/directional/north, /obj/structure/window/spawner/directional/west, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uiL" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -136421,7 +136677,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uiZ" = ( /turf/open/floor/glass, /area/station/commons/lounge) @@ -136462,9 +136718,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ujm" = ( -/obj/structure/filingcabinet/white, /obj/effect/turf_decal/siding/wood{ dir = 9 }, @@ -136638,7 +136893,7 @@ /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ula" = ( /obj/structure/cable, /obj/effect/spawner/random/trash/caution_sign, @@ -136693,7 +136948,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ulJ" = ( /obj/structure/cable, /obj/structure/curtain/cloth{ @@ -137227,7 +137482,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -137809,7 +138064,7 @@ /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "uuG" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -138001,16 +138256,12 @@ name = "Primary AI Core Access"; req_access = list("ai_upload") }, -/obj/machinery/flasher/directional/north{ - pixel_x = 26; - id = "AI" - }, /obj/machinery/power/apc/auto_name/directional/west, /obj/effect/mapping_helpers/apc/cell_5k, /obj/machinery/light_switch/directional/east, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uwF" = ( /obj/structure/table/glass, /obj/item/reagent_containers/cup/glass/coffee, @@ -138547,6 +138798,11 @@ }, /turf/open/floor/iron/dark/small, /area/station/engineering/main) +"uAz" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/station/science/xenobiology) "uAA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -138738,7 +138994,7 @@ "uCd" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron/dark/small, /area/station/hallway/secondary/command) @@ -138842,7 +139098,7 @@ /area/station/maintenance/port/central) "uCV" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uCW" = ( /obj/structure/hedge, /obj/structure/window/reinforced/spawner/directional/west, @@ -138860,7 +139116,8 @@ dir = 1 }, /obj/structure/sign/painting/library_private{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/item/kirbyplants/random, /obj/machinery/camera/autoname/directional/north, @@ -138902,6 +139159,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "uDB" = ( @@ -138945,7 +139203,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "uEd" = ( /obj/effect/spawner/random/entertainment/money_small, /obj/structure/table, @@ -139129,7 +139387,8 @@ }, /obj/machinery/button/flasher{ id = "IsolationFlash"; - pixel_x = -24 + pixel_x = -24; + dir = 8 }, /turf/open/floor/iron/dark/textured, /area/station/security/execution/education) @@ -139333,7 +139592,7 @@ /area/station/hallway/primary/port) "uHw" = ( /obj/structure/closet, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/machinery/newscaster/directional/north, /obj/effect/turf_decal/tile/dark_blue/opposingcorners{ dir = 1 @@ -139627,7 +139886,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "uKz" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 @@ -139668,13 +139927,13 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "uKL" = ( /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/bot, /obj/machinery/computer/security/telescreen/minisat/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uKZ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -140060,7 +140319,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uNI" = ( /obj/structure/railing{ dir = 9 @@ -140349,9 +140608,11 @@ /turf/open/floor/grass, /area/station/hallway/secondary/entry) "uPS" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/security/checkpoint/escape) +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/space/openspace, +/area/space/nearstation) "uPX" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; @@ -140565,15 +140826,14 @@ /turf/open/floor/plating, /area/station/maintenance/fore/lesser) "uRZ" = ( -/obj/effect/turf_decal/siding{ - dir = 5 - }, -/obj/effect/turf_decal/siding/corner{ - dir = 8 +/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/blue/end{ + dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white/herringbone, -/area/station/medical/patients_rooms) +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/paramedic) "uSc" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -140588,6 +140848,7 @@ pixel_y = -4 }, /obj/structure/sign/warning/yes_smoking/circle/directional/south, +/obj/machinery/barsign/directional/south, /turf/open/floor/grass, /area/station/service/bar) "uSf" = ( @@ -140619,7 +140880,7 @@ network = list("minisat") }, /turf/open/misc/asteroid/airless, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uSn" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -140773,9 +141034,7 @@ /area/station/commons/lounge) "uTL" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "uTM" = ( @@ -140811,7 +141070,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uTS" = ( /obj/structure/chair/sofa/corp{ dir = 1 @@ -140861,7 +141120,7 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uUi" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -140936,7 +141195,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uUI" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -141098,7 +141357,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uVH" = ( /obj/effect/turf_decal/tile/purple/fourcorners, /obj/machinery/door/firedoor, @@ -141344,7 +141603,7 @@ }, /obj/structure/marker_beacon/lime, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "uXm" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, @@ -141407,7 +141666,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uXN" = ( /obj/structure/table/reinforced/rglass, /obj/item/storage/box/monkeycubes{ @@ -141557,7 +141816,7 @@ dir = 4 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uZi" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -141593,7 +141852,7 @@ /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/sunny/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uZr" = ( /obj/structure/chair/office{ dir = 8 @@ -141612,6 +141871,8 @@ /obj/effect/turf_decal/tile/blue/half/contrasted{ 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/small, /area/station/medical/medbay/lobby) "uZE" = ( @@ -141631,7 +141892,7 @@ /obj/structure/marker_beacon/lime, /obj/structure/cable, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "uZJ" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -141767,7 +142028,7 @@ }, /obj/machinery/firealarm/directional/west, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vaz" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ dir = 10 @@ -141787,9 +142048,9 @@ /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, /turf/open/floor/plating, -/area/station/medical/patients_rooms) +/area/station/medical/paramedic) "vaG" = ( /obj/structure/railing{ dir = 8 @@ -141985,7 +142246,7 @@ dir = 8 }, /turf/open/misc/dirt/dark/station, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vbG" = ( /obj/machinery/door/airlock/public/glass{ name = "Library" @@ -142027,7 +142288,7 @@ /obj/machinery/door/airlock/security/glass{ name = "Permabrig Visitation" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/turf_decal/stripes/line{ @@ -142129,17 +142390,6 @@ "vcy" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/hedge, -/obj/structure/sign/directions/security/directional/south{ - pixel_y = -24; - dir = 4 - }, -/obj/structure/sign/directions/command/directional/south{ - dir = 4 - }, -/obj/structure/sign/directions/upload/directional/south{ - pixel_y = -40; - dir = 4 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -142318,7 +142568,7 @@ /obj/structure/cable, /obj/machinery/computer/security/telescreen/aiupload/directional/north, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "vdA" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -142559,7 +142809,7 @@ req_access = list("armory") }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "veT" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/flipped{ dir = 4 @@ -142730,7 +142980,7 @@ /area/station/science/ordnance/storage) "vgI" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 4 }, /obj/effect/turf_decal/bot, @@ -142918,7 +143168,7 @@ dir = 6 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vhR" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -143193,8 +143443,6 @@ /turf/open/floor/iron/dark/small, /area/station/engineering/supermatter/room) "vjr" = ( -/obj/machinery/digital_clock/directional/north, -/obj/structure/chair/sofa/corp/right, /obj/effect/turf_decal/trimline/blue/filled/line, /obj/effect/turf_decal/trimline/blue/corner{ dir = 1 @@ -143203,8 +143451,10 @@ /obj/machinery/camera/autoname/directional/north{ network = list("ss13","medbay") }, -/turf/open/floor/iron/white, -/area/station/medical/patients_rooms) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "vjs" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -143418,10 +143668,8 @@ /turf/open/misc/asteroid/airless, /area/space/nearstation) "vkH" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/glass/reinforced/airless, /area/space/nearstation) "vkK" = ( @@ -143564,9 +143812,22 @@ /turf/open/floor/wood/large, /area/station/command/heads_quarters/cmo) "vlt" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "vlu" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -143623,7 +143884,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vlP" = ( /obj/structure/hedge, /obj/structure/railing{ @@ -143684,18 +143945,6 @@ /obj/effect/landmark/blobstart, /turf/open/floor/iron, /area/station/maintenance/fore/lesser) -"vmp" = ( -/obj/machinery/door/airlock/medical{ - name = "Psychology" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/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/white, -/area/station/medical/psychology) "vmt" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -144169,7 +144418,7 @@ }, /obj/structure/flora/bush/grassy/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vqa" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/rock/pile/jungle/style_random, @@ -144318,7 +144567,7 @@ pixel_x = -32 }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vrO" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/railing{ @@ -144907,7 +145156,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "vvQ" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 8 @@ -145245,7 +145494,7 @@ }, /obj/structure/flora/rock/pile/jungle/style_random, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vyb" = ( /obj/machinery/duct, /obj/structure/cable, @@ -145485,7 +145734,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -145650,22 +145899,10 @@ /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) "vBA" = ( -/obj/machinery/button/door/directional/east{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - req_access = list("cargo"); - pixel_y = 24 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, /turf/open/floor/iron/dark/side{ dir = 4 }, @@ -145919,7 +146156,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vDE" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -146121,6 +146358,7 @@ dir = 4 }, /obj/machinery/camera/autoname/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark/side{ dir = 2 }, @@ -146534,10 +146772,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) "vIJ" = ( @@ -146710,6 +146948,13 @@ /obj/effect/turf_decal/trimline/red/corner, /turf/open/floor/iron/dark, /area/station/command/bridge) +"vJQ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "vKc" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/item/kirbyplants/organic/plant22, @@ -146768,9 +147013,6 @@ }, /obj/item/kirbyplants/random, /obj/machinery/camera/autoname/directional/north, -/obj/structure/sign/directions/evac/directional/north{ - dir = 8 - }, /turf/open/floor/iron/dark/herringbone, /area/station/commons/dorms) "vKB" = ( @@ -146936,7 +147178,7 @@ /obj/effect/turf_decal/siding/thinplating_new/light/corner{ dir = 8 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/white, /area/station/hallway/primary/fore) "vMd" = ( @@ -147083,6 +147325,7 @@ }, /obj/effect/turf_decal/trimline/dark/corner, /obj/machinery/digital_clock/directional/south, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark/side{ dir = 10 }, @@ -147237,7 +147480,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "vPe" = ( /obj/machinery/computer/mechpad, /obj/structure/cable, @@ -147266,7 +147509,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vPm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -147320,7 +147563,7 @@ "vPH" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vPU" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 @@ -147675,7 +147918,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vSy" = ( /obj/effect/turf_decal/trimline/dark_green, /obj/structure/disposalpipe/segment, @@ -147726,7 +147969,8 @@ /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 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, @@ -148139,7 +148383,7 @@ dir = 6 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vWs" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -148264,9 +148508,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/machinery/camera/autoname/directional/north{ - dir = 9 - }, +/obj/machinery/camera/autoname/directional/north, /obj/structure/railing/corner{ dir = 4 }, @@ -148310,11 +148552,9 @@ /obj/item/kirbyplants/organic/plant10, /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/trimline/dark/corner, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vXL" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -148833,7 +149073,8 @@ /area/station/science/lower) "wbI" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -148913,7 +149154,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wcg" = ( /obj/machinery/airalarm/directional/south, /obj/structure/chair/sofa/bench/right{ @@ -148934,7 +149175,7 @@ /obj/machinery/holopad, /obj/structure/flora/bush/sparsegrass/style_3, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "wcq" = ( /obj/structure/chair/sofa/corp, /obj/machinery/incident_display/delam/directional/north, @@ -149364,15 +149605,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) -"wfW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) "wgg" = ( /obj/effect/turf_decal/trimline/dark_red/warning{ dir = 6 @@ -149452,7 +149684,6 @@ dir = 8 }, /obj/machinery/camera/autoname/directional/south{ - dir = 5; network = list("prison") }, /obj/machinery/processor, @@ -149786,6 +150017,10 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, /area/station/solars/port/aft) +"wjl" = ( +/obj/structure/window/reinforced/plasma/fulltile, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "wjr" = ( /obj/machinery/destructive_scanner, /obj/effect/turf_decal/delivery, @@ -149887,7 +150122,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -150221,7 +150456,7 @@ dir = 8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wmO" = ( /turf/open/floor/iron, /area/station/maintenance/fore/lesser) @@ -150367,7 +150602,7 @@ network = list("minisat") }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "wnQ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -150471,7 +150706,7 @@ }, /obj/machinery/porta_turret/ai, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "woH" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -150826,7 +151061,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "wsY" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -150923,7 +151158,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wtR" = ( /obj/structure/curtain/cloth{ color = "#666666" @@ -150988,7 +151223,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wup" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ @@ -151097,7 +151332,7 @@ /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/medical/psychology) "wvm" = ( @@ -151235,7 +151470,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "wvS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -151378,13 +151613,13 @@ /turf/open/floor/wood, /area/station/maintenance/port/fore) "wwX" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/engineering/directional/east{ - dir = 2 +/obj/structure/sign/directions/evac/directional/north{ + pixel_x = 0; + pixel_y = -5; + dir = 10 }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) +/turf/closed/wall, +/area/station/service/kitchen/diner) "wwY" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/chair/sofa/bench/right{ @@ -151560,7 +151795,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "wyn" = ( /obj/machinery/door/window/brigdoor/left/directional/west{ req_access = list("security"); @@ -151767,6 +152002,22 @@ dir = 5 }, /area/station/commons/dorms) +"wzw" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "wzI" = ( /obj/effect/turf_decal/trimline/dark/corner{ dir = 1 @@ -151777,7 +152028,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "wzL" = ( /obj/structure/railing{ dir = 1 @@ -152154,7 +152405,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "wCr" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/components/unary/portables_connector/visible, @@ -152799,7 +153050,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wHS" = ( /obj/structure/chair/wood/wings{ dir = 1 @@ -153149,7 +153400,7 @@ dir = 4 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wKM" = ( /obj/effect/turf_decal/siding/brown, /obj/effect/turf_decal/trimline/brown/filled/corner, @@ -153186,7 +153437,7 @@ "wLa" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/small, /area/station/hallway/primary/port) "wLd" = ( @@ -153294,7 +153545,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wLX" = ( /obj/machinery/dna_scannernew, /turf/open/floor/iron/dark/textured, @@ -153504,7 +153755,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wNP" = ( /obj/effect/spawner/random/structure/table_or_rack, /obj/item/clothing/mask/gas, @@ -153874,7 +154125,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wQQ" = ( /obj/structure/railing/corner{ dir = 1 @@ -154241,6 +154492,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "wUK" = ( @@ -154588,16 +154840,14 @@ /obj/effect/turf_decal/siding/dark{ dir = 1 }, +/obj/machinery/camera/autoname/directional/south, /obj/machinery/barsign/directional/south, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, /turf/open/floor/iron/dark/herringbone, /area/station/service/bar) "wXm" = ( /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "wXo" = ( /obj/structure/table, /obj/item/reagent_containers/spray/pestspray{ @@ -154615,6 +154865,19 @@ /obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden) +"wXs" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "wXu" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 10 @@ -155130,6 +155393,9 @@ }, /turf/open/floor/iron/white, /area/station/science/research) +"xbK" = ( +/turf/closed/wall, +/area/station/medical/office) "xbM" = ( /obj/effect/turf_decal/trimline/yellow/corner{ dir = 1 @@ -155660,6 +155926,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"xgM" = ( +/obj/structure/sign/directions/evac/directional/north{ + pixel_y = 10; + dir = 8 + }, +/obj/structure/sign/directions/command/directional/north{ + dir = 4; + pixel_y = -10 + }, +/obj/structure/sign/directions/security/directional/north{ + pixel_y = 0; + dir = 4 + }, +/turf/closed/wall, +/area/station/service/cafeteria) "xgP" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -155936,7 +156217,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xji" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -156214,7 +156495,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "xla" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -156231,7 +156512,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xlf" = ( /obj/machinery/door/airlock{ name = "Unisex Showers" @@ -156419,7 +156700,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xmv" = ( /obj/effect/turf_decal/delivery, /obj/structure/rack, @@ -156831,7 +157112,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xpq" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -157253,7 +157534,7 @@ }, /obj/structure/flora/grass/jungle/b/style_2, /turf/open/water, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xsP" = ( /obj/effect/turf_decal/trimline/brown, /obj/machinery/light/floor, @@ -157651,7 +157932,7 @@ }, /obj/structure/marker_beacon/jade, /turf/open/floor/holofloor/wood, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xvH" = ( /obj/item/kirbyplants/organic/plant22{ pixel_y = 9 @@ -157709,6 +157990,7 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/duct, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "xwg" = ( @@ -157796,7 +158078,7 @@ /obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "xwW" = ( /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; @@ -158092,7 +158374,7 @@ dir = 6 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xzH" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -158546,7 +158828,7 @@ "xDe" = ( /obj/machinery/porta_turret/ai, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xDi" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -158891,12 +159173,10 @@ /area/station/maintenance/port/fore) "xGg" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "xGh" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -159476,6 +159756,8 @@ dir = 1 }, /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/wood/parquet, /area/station/medical/psychology) "xKc" = ( @@ -159606,7 +159888,7 @@ /obj/machinery/firealarm/directional/west, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "xLb" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -159725,7 +160007,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xLX" = ( /turf/open/floor/carpet/red, /area/station/security/detectives_office) @@ -159899,7 +160181,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xMI" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -160058,7 +160340,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xNP" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/tcomms_all, @@ -160137,11 +160419,19 @@ }, /turf/open/floor/carpet/orange, /area/station/command/heads_quarters/ce) +"xON" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "xOP" = ( /obj/structure/railing/corner{ dir = 4 }, -/obj/structure/sign/nanotrasen, /turf/closed/wall/r_wall, /area/space/nearstation) "xOV" = ( @@ -160230,7 +160520,7 @@ /obj/machinery/door/airlock/medical/glass{ name = "Primary Treatment Centre" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -160553,7 +160843,7 @@ /obj/machinery/status_display/ai/directional/west, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xRE" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -160957,10 +161247,11 @@ network = list("minisat") }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xVs" = ( /obj/structure/noticeboard/qm{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 @@ -161243,7 +161534,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "xXR" = ( /obj/structure/table/wood, /obj/structure/cable, @@ -161280,6 +161571,12 @@ }, /turf/open/floor/iron/dark, /area/station/science/explab) +"xYm" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "xYr" = ( /obj/structure/flora/bush/fullgrass, /obj/structure/flora/grass/jungle/a/style_random, @@ -161615,7 +161912,7 @@ }, /obj/structure/chair/sofa/bench/solo, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "yaR" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/trimline/brown, @@ -162394,7 +162691,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/window/spawner/directional/west, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ygY" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -162577,7 +162874,7 @@ }, /obj/structure/flora/bush/grassy/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "yiu" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -162938,12 +163235,12 @@ /obj/effect/turf_decal/caution/stand_clear{ dir = 8 }, +/obj/effect/turf_decal/box, /obj/machinery/door/poddoor/shutters{ dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters" }, -/obj/effect/turf_decal/box, /turf/open/floor/iron/dark/textured_half{ dir = 1 }, @@ -163191,7 +163488,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ylW" = ( /obj/structure/table/reinforced/rglass, /obj/item/paper_bin{ @@ -178290,7 +178587,7 @@ qgY wvm uYI vFA -vlt +fdz cZB qSw cZB @@ -181878,7 +182175,7 @@ chn ptU fem ejn -uPS +bZT iWM kwY ldl @@ -182917,7 +183214,7 @@ fNC eMP ejn ejn -ejn +jDr eEx gOa tcM @@ -184459,7 +184756,7 @@ eRi tda ejn ejn -ejn +jDr vKu gOa oCL @@ -192198,7 +192495,7 @@ ukX lxu lcj enK -jCi +bdQ bdQ iHt rAE @@ -194770,7 +195067,7 @@ tOw ild tOw ukX -tOw +wjl vky ukX vky @@ -198527,7 +198824,7 @@ gym kFj kFj kFj -jsi +pif ciG sho ciG @@ -199315,7 +199612,7 @@ hFb cWB hrq wRM -kCp +pzy oQa pzy pzy @@ -199862,7 +200159,7 @@ kqn puv xrx cii -ird +uAz ird dPx dPx @@ -209632,10 +209929,10 @@ vjj rye hBv wYE -tiv +mCn +huN eDF eDF -mCn sWH wBq pem @@ -212711,7 +213008,7 @@ eJN mMZ pZo lMc -iHK +gwv dbg mfR mxG @@ -212775,7 +213072,7 @@ wKB uCV qig uhM -uhM +rXp uhM eJb jRq @@ -216784,11 +217081,11 @@ gym gym gym gJT -kNp +eoO hJX faj hJX -kNp +eoO gJT gym gym @@ -218326,11 +218623,11 @@ gym gym gym gym -kNp +eoO hJX kvJ hJX -kNp +eoO gym gym gym @@ -242010,7 +242307,7 @@ qvg kiX vLs joK -vLs +oGQ bLu bLu lng @@ -242771,8 +243068,8 @@ txW kaB pCa pCa -nnZ -uty +lAM +aEz hzt uty dya @@ -245079,8 +245376,8 @@ txW kaB pCa pCa -mGv -gxe +ewt +tpN pIn uty uty @@ -246360,7 +246657,7 @@ txW txW txW txW -mGv +ewt grZ jyx pSJ @@ -249444,7 +249741,7 @@ txW txW txW txW -mGv +ewt ghV oOw vLi @@ -249733,7 +250030,7 @@ rXt bbr dhB tLT -dMW +wwX eAb mrW byU @@ -250479,9 +250776,9 @@ kaB txW txW txW +lAM nnZ kLH -kLH akB dtb dtb @@ -252786,7 +253083,7 @@ pCa pCa rVd rVd -rVd +gVK rVd rVd pCa @@ -252808,7 +253105,7 @@ ugP jyh kGK hCZ -bxv +rub xbv cho kpP @@ -254556,7 +254853,7 @@ txW lAM aqt aqt -mGv +ewt aec aec lAM @@ -254813,7 +255110,7 @@ itE gxe aNh jjf -sLa +gbi sLa dtn xKy @@ -255064,8 +255361,8 @@ txW txW ewt keO -vIx -nnZ +wXs +lAM gxe dtb pIn @@ -255378,7 +255675,7 @@ hCZ htH tTl bwC -bxv +rub sbp cho lNb @@ -255409,7 +255706,7 @@ opa vCS jWv oth -wwX +qLk sSt irB naa @@ -255666,7 +255963,7 @@ naa jck naa jJw -naa +pzo naa veW ygk @@ -256472,7 +256769,7 @@ txW nzu txW nPJ -fBx +nuy tod txW nzu @@ -256604,8 +256901,8 @@ txW kaB pCa pCa -nnZ -sJF +lAM +fDh wPS wPS wPS @@ -257152,13 +257449,13 @@ mAA aan iPk uVa -icj -icj +xbK +xbK jLx -icj +xbK daE -icj -icj +xbK +xbK uVa gsx aan @@ -257238,7 +257535,7 @@ gKy dtb dtb txW -sEF +aXd iVN vSW gAD @@ -257248,7 +257545,7 @@ cXz uJk okv uDx -sEF +aXd txW txW txW @@ -257409,7 +257706,7 @@ sGo rOK oBt nCQ -icj +xbK eCd sWo hlR @@ -257666,7 +257963,7 @@ sOB jed oBt tvH -icj +xbK mzf ygg axM @@ -257886,8 +258183,8 @@ txW txW txW txW -mGv -tGj +ewt +tcG tGj vcY dtb @@ -257922,8 +258219,8 @@ rUX cxH hzk oBt -nCQ -icj +bKl +xbK hhs pbi seg @@ -258180,13 +258477,13 @@ qan aan fPb uVd -icj -icj +xbK +xbK oBu yjt wOe -icj -icj +xbK +xbK uVd nch aan @@ -258216,11 +258513,11 @@ fDJ fDJ xzR fDJ -fDJ +bQm aTh oJr tKp -fYi +bQy fYi aAN fYi @@ -258435,8 +258732,8 @@ cUI iMx bon nox -fVk -uVd +wkG +dov kCn rbi jgD @@ -258473,7 +258770,7 @@ iVK yck duV xIs -czJ +bna bna fub eAL @@ -258694,8 +258991,8 @@ iqC rgy lXX rgm -cTV -eIq +gbr +pKh uZv pef irs @@ -258914,8 +259211,8 @@ txW txW txW txW -nnZ -sFS +lAM +vlt sFS xpG ukF @@ -258942,17 +259239,17 @@ kLa tDq chl hTz -uhK -uhK +icj +mHR lBR -uhK -uhK -uVa +mHR +icj +fzH qQq tet -mUT -gbr -pKh +uVd +kMY +eIq pTK hiq dTX @@ -259195,7 +259492,7 @@ jVh kLa bIz kyi -wfW +jzp grk gaK nRn @@ -259204,8 +259501,8 @@ oyb hjE gbV saO -uhK -uhK +bXc +rvC uhK uVd lYL @@ -259294,7 +259591,7 @@ gKy dtb dtb txW -fBx +nuy aeD eUh ukb @@ -259304,7 +259601,7 @@ cXz xYz eUh qeC -sEF +aXd txW txW txW @@ -259456,14 +259753,14 @@ kLa sdm sdm sdm -uhK +icj vjr uRZ gmk gPo bXP -sjK kJX +xYm uVd efm hAd @@ -259713,12 +260010,12 @@ kLa iCL kwm axI -uhK +icj nPx tqL jQI kyd -uhK +fiB fjq bAD hkc @@ -259973,11 +260270,11 @@ kIT bxI bxI bxI -vmp bxI bxI bxI bxI +icj hkc nAQ dXX @@ -260075,8 +260372,8 @@ eVR aqt aqt aqt -aqt sEF +aXd txW txW txW @@ -260578,8 +260875,8 @@ txW txW txW txW -sEF -aqt +aXd +div gxe dtb smB @@ -260708,8 +261005,8 @@ txW txW txW txW -opN -mGv +uPS +ewt pCa pCa gJT @@ -261109,7 +261406,7 @@ dtb dtb rfP oWn -oWn +kIp xOP txW txW @@ -261519,7 +261816,7 @@ bxI bxI uZQ iCr -bxI +hkc rrV fEu vxQ @@ -261569,7 +261866,7 @@ jRA rdQ bUw hNz -uBc +pRL mgT tvU wwY @@ -262028,7 +262325,7 @@ ujf rNp mEs toZ -mEs +txY fut rEg tYn @@ -262377,8 +262674,8 @@ cAe txW txW txW -fBx -kLH +nuy +nnZ uPq dtb lje @@ -262577,7 +262874,7 @@ sQm pHi dCI muG -gOV +xgM qxw mZk vSF @@ -262597,7 +262894,7 @@ lro iKL mkx vcy -nVN +czJ kwd dre mlp @@ -262651,7 +262948,7 @@ kLH kLH oOw uxn -uxn +wzw cud txW txW @@ -262902,8 +263199,8 @@ ukF ukF iWP kLH -kLH -sEF +sqU +aXd txW txW txW @@ -263278,8 +263575,8 @@ txW txW txW txW -opN -mGv +uPS +ewt pCa pCa gJT @@ -263662,8 +263959,8 @@ txW txW txW txW -sEF -aqt +aXd +div gxe dtb smB @@ -264184,8 +264481,8 @@ eiF uty hzt uty -nrR -fBx +sgP +nuy pCa hFK uty @@ -264578,7 +264875,7 @@ aGm aGm eIs aGm -qze +pdx vBA pAj wvp @@ -265926,7 +266223,7 @@ uIV uIV nix uIV -uIV +iSX vQP vGu cNH @@ -266240,8 +266537,8 @@ dBE mKY hzt uty -cff -sEF +xON +aXd pCa hFK uty @@ -267401,8 +267698,8 @@ txW txW txW txW -nnZ -pIn +lAM +hCG uty mKY hzt @@ -267410,8 +267707,8 @@ mKY hzt mKY uty -dya -nnZ +mTU +lAM txW txW txW @@ -268690,8 +268987,8 @@ ewt kLH kLH kLH -kLH -nnZ +sqU +lAM kLH kLH kLH @@ -269221,7 +269518,7 @@ vwR aqt aqt mzt -nnZ +lAM pCa pCa pCa @@ -271799,8 +272096,8 @@ ewt kLH kLH kLH -kLH -nnZ +sqU +lAM pCa pCa txW @@ -272559,7 +272856,7 @@ fEZ jyK sJF wPS -vwd +rvq wPS ndj pIn @@ -272816,7 +273113,7 @@ kHR fev uXh bSB -nnZ +lAM kLH kLH odY @@ -273614,12 +273911,12 @@ txW txW txW txW -sEF +aXd nhJ sLa feq flp -fBx +nuy rJW rJW lMp @@ -275156,12 +275453,12 @@ txW txW txW txW -fBx +nuy pHn gFv wPS eaO -sEF +aXd dtb rJW xKy @@ -275989,7 +276286,7 @@ dRZ txW lHF aqt -fBx +nuy wBM mpS txW @@ -276246,7 +276543,7 @@ aXd aqt cyB ukF -ukF +uTL ukF oKZ aqt @@ -276510,8 +276807,8 @@ dtb vwK dtb erl -aqt -fBx +sEF +nuy aqt uzU txW @@ -276995,8 +277292,8 @@ qvg pdG aqt oFa -aqt -fBx +sEF +nuy kaB pCa pCa @@ -277010,8 +277307,8 @@ pCa pCa pCa dRZ -fBx -pIn +nuy +hCG uty dUu vvn @@ -277287,8 +277584,8 @@ omF igQ xKy pdG -aqt -fBx +sEF +nuy dRZ txW txW @@ -278016,7 +278313,7 @@ aoX sXi ghk kxQ -vSH +bxv vSH vSH vSH @@ -278498,13 +278795,13 @@ txW txW txW txW -fBx -eiF +nuy +mGv uty hzt mKY -cff -sEF +xON +aXd jHP uty uty @@ -278574,8 +278871,8 @@ xDe cPU gfC omF -ukF -sEF +aFi +aXd dRZ txW txW @@ -279857,8 +280154,8 @@ omF dtb dtb sAF -fic -fBx +sMP +nuy dRZ txW txW @@ -280079,8 +280376,8 @@ qpJ ecL kLH nHW -kLH -sEF +sqU +aXd kaB pCa pCa @@ -280094,8 +280391,8 @@ pCa pCa pCa dRZ -sEF -bwF +aXd +vJQ uty gvK vBu @@ -280622,8 +280919,8 @@ ukF cWI ukF iLt -kLH -sEF +sqU +aXd kLH nMg txW @@ -280872,7 +281169,7 @@ nuy kLH qnv ukF -ukF +lyI ukF iWP fic @@ -281072,15 +281369,15 @@ txW txW txW txW -sEF -omF +aXd +jkQ eiF uty hzt uty cff -eLm fBx +nuy qvg iJc eZi @@ -281129,7 +281426,7 @@ dRZ txW thP kLH -sEF +aXd kLH nMg txW diff --git a/_maps/map_files/Vampire/runtimetown.dmm b/_maps/map_files/Vampire/runtimetown.dmm index e9911ba22843..1ec70ff7bd07 100644 --- a/_maps/map_files/Vampire/runtimetown.dmm +++ b/_maps/map_files/Vampire/runtimetown.dmm @@ -1,10 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ap" = ( -/obj/item/vamp/phone/street{ - pixel_z = 24 - }, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "av" = ( /obj/structure/table, /obj/item/ammo_box/magazine/darkpack45acp, @@ -13,24 +7,25 @@ /obj/item/gun/ballistic/automatic/pistol/darkpack/m1911, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) +"ax" = ( +/obj/structure/toiletbong, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) +"aM" = ( +/obj/effect/spawner/random/trash/rat, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "aN" = ( /obj/effect/landmark/npcbeacon/directed{ dir = 1 }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"aO" = ( -/obj/machinery/fax/admin/camarilla, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) -"aW" = ( -/obj/structure/roofstuff/vent_end, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "ba" = ( /obj/structure/retail/clothing_store, /obj/structure/table, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/platform/lowwall/brick, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) "bh" = ( /obj/structure/chair/greyscale{ @@ -38,26 +33,25 @@ }, /turf/open/floor/plating/rough/cave, /area/vtm/outside/pacificheights) +"bj" = ( +/obj/structure/closet/secure_closet/freezer, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) "bo" = ( -/obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen, -/turf/closed/wall/vampwall/painted/low, +/obj/structure/table/countertop/red, +/turf/open/floor/plating/concrete, /area/vtm/interior/shop) "bp" = ( /obj/effect/turf_decal/bordur, /obj/structure/roadsign/crosswalk, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/pacificheights) -"bs" = ( -/obj/structure/table/wood, -/obj/item/vtm_artifact/fae_charm, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) -"by" = ( -/obj/item/clothing/head/collectable/pirate, -/turf/open/floor/plating/woodrough, -/area/vtm/outside/pacificheights) +"bB" = ( +/obj/structure/chair/wood/darkpack/red, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "bC" = ( /obj/item/reagent_containers/cup/bottle/morphine, /obj/item/reagent_containers/cup/bottle/morphine, @@ -69,17 +63,11 @@ /obj/structure/closet/secure_closet/medical2, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) -"bD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) -"bE" = ( +"bK" = ( +/obj/machinery/fax/admin/camarilla, /obj/structure/table/wood, -/obj/item/vtm_artifact/mummywrap_fetish, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "bL" = ( /obj/item/gas_can{ anchored = 1; @@ -103,25 +91,42 @@ /obj/item/defibrillator/compact, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) +"ca" = ( +/turf/closed/wall/vampwall/old, +/area/vtm/outside/ghetto) "cf" = ( /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) -"ch" = ( -/obj/structure/table/wood, -/obj/item/vtm_artifact/galdjum, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"cg" = ( +/obj/structure/roofstuff/vent_end{ + dir = 8 + }, +/turf/open/misc/grass, +/area/vtm/outside/pacificheights) "ci" = ( -/obj/structure/table/bacotell, /obj/underplate/stuff{ pixel_y = 8 }, +/obj/structure/table/countertop/bacotell, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) "cj" = ( /obj/effect/turf_decal/bordur, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/pacificheights) +"co" = ( +/obj/machinery/door/airlock/elevator/multi_tile{ + transport_linked_id = "DebugElevator" + }, +/turf/open/floor/iron/smooth_large, +/area/vtm/outside/pacificheights) +"cw" = ( +/obj/machinery/sprinkler, +/obj/structure/chair/comfy/darkpack{ + dir = 1 + }, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "cQ" = ( /obj/structure/table, /obj/item/storage/medkit/darkpack/ifak, @@ -144,30 +149,54 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) +"dc" = ( +/obj/structure/railing, +/obj/structure/lattice/grate, +/turf/open/openspace, +/area/vtm/outside/pacificheights) +"di" = ( +/obj/structure/lattice/grate, +/turf/open/openspace, +/area/vtm/outside/pacificheights) "dA" = ( /obj/structure/table, /obj/item/storage/medkit/darkpack/doctor, /obj/machinery/light/directional/north, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) -"ee" = ( -/turf/open/floor/plating/toilet, -/area/vtm/interior/shop) -"eg" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +"dL" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) +"dN" = ( +/obj/item/clothing/head/cone, +/turf/open/misc/dirt, +/area/vtm/outside/supply) +"dP" = ( +/obj/structure/table/wood, +/obj/machinery/radio_tranceiver/anarch, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"dU" = ( +/obj/structure/railing/corner, +/turf/open/floor/plating/canal, +/area/vtm/outside/pacificheights) +"ef" = ( +/obj/structure/roofstuff/vent_end{ + dir = 4 }, -/turf/open/floor/plating/rough, -/area/vtm/interior/techshop) +/turf/open/misc/grass, +/area/vtm/outside/pacificheights) +"eg" = ( +/obj/structure/sign/city/order/directional/north, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "el" = ( -/obj/structure/table/bubway, +/obj/structure/table/countertop/bubway, /obj/structure/retail/bubway_menu, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) -"em" = ( -/obj/machinery/fax/aasimites, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "en" = ( /obj/item/vamp/keys/camarilla, /turf/open/floor/plating/asphalt, @@ -186,7 +215,17 @@ /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) "eR" = ( -/turf/closed/wall/vampwall/rich/old/low/window, +/obj/structure/platform/lowwall/rich/old/window, +/turf/open/floor/plating/rough, +/area/vtm/outside/pacificheights) +"eU" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"fc" = ( +/obj/machinery/fax/glasswalker, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) "fd" = ( /obj/effect/turf_decal/bordur{ @@ -195,27 +234,32 @@ /obj/item/vamp/keys/clinic, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/pacificheights) -"ff" = ( -/obj/cargocrate, -/turf/open/misc/dirt/vamp/rails, -/area/vtm/outside/supply) "fh" = ( /obj/structure/chair/stool/bar/directional/west, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"fi" = ( -/obj/effect/decal/pallet, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) "fn" = ( /obj/effect/decal/cleanable/cardboard, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"fS" = ( -/obj/structure/ladder/manhole/down, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating/vampcanal, -/area/vtm/outside/pacificheights) +"fo" = ( +/obj/structure/vampdoor/simple/anarch{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"fI" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"fV" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/outside/ghetto) +"fZ" = ( +/obj/structure/fire_barrel, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/outside/ghetto) "gb" = ( /obj/effect/decal/cleanable/cardboard, /obj/structure/closet/cardboard, @@ -228,9 +272,10 @@ }, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) -"gn" = ( -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"gl" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "gs" = ( /obj/effect/turf_decal/bordur{ dir = 1 @@ -240,13 +285,17 @@ }, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) +"gA" = ( +/obj/machinery/fax/admin/aasimites, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "gF" = ( /turf/open/floor/plating/rough, /area/vtm/interior/shop) -"gI" = ( -/obj/structure/vampdoor/supply, -/turf/open/floor/plating/sidewalk, -/area/vtm/interior/supply) +"gN" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) "gS" = ( /obj/effect/turf_decal/bordur{ dir = 8 @@ -258,30 +307,61 @@ /obj/effect/turf_decal/asphaltline, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) -"ht" = ( -/obj/effect/decal/cleanable/trash{ - icon_state = "trash5" +"hk" = ( +/obj/machinery/button/elevator/directional/north{ + id = "DebugElevator4"; + pixel_x = 9; + pixel_y = 35 }, -/turf/open/misc/beach/vamp, +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "DebugElevator4" + }, +/turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) +"ho" = ( +/obj/machinery/sprinkler/area_managed, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "hu" = ( /obj/effect/decal/pallet, -/obj/item/ammo_box/vampire/arrows, -/obj/item/ammo_box/vampire/c12g, -/obj/item/ammo_box/vampire/c12g/buck, -/obj/item/ammo_box/vampire/c44, -/obj/item/ammo_box/vampire/c44/silver, +/obj/item/ammo_box/darkpack/arrows, +/obj/item/ammo_box/darkpack/c12g, +/obj/item/ammo_box/darkpack/c12g/buck, +/obj/item/ammo_box/darkpack/c44, +/obj/item/ammo_box/darkpack/c44/silver, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) "hz" = ( -/obj/structure/table, /obj/lombard/blackmarket, -/turf/closed/wall/vampwall/brick/low, -/area/vtm/interior/shop) -"hA" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plating/parquetry/old, +/obj/structure/table/countertop/beige, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) +"hH" = ( +/obj/effect/decal/cleanable/trash{ + icon_state = "trash5" + }, +/obj/effect/spawner/random/occult/artifact, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"hK" = ( +/obj/structure/cargo_take, +/turf/open/misc/dirt, +/area/vtm/outside/supply) +"hT" = ( +/obj/structure/transport/linear/public, +/obj/structure/table, +/obj/item/gun/ballistic/rocketlauncher/unrestricted{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "DebugElevator2"; + preset_destination_names = list("2" = "Lower", "3" = "Upper") + }, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) "id" = ( /obj/effect/decal/graffiti, /turf/open/floor/plating/rough, @@ -290,10 +370,10 @@ /obj/structure/closet/cardboard, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) -"ig" = ( -/obj/item/kirbyplants/random, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) +"ih" = ( +/obj/structure/chair/darkpack/green, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "ik" = ( /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) @@ -310,16 +390,26 @@ "iH" = ( /turf/open/floor/plating/rough/cave, /area/vtm/outside/pacificheights) +"iJ" = ( +/obj/effect/spawner/random/occult/artifact, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"iK" = ( +/obj/structure/roofstuff/vent/autotiling, +/turf/open/misc/grass, +/area/vtm/outside/pacificheights) "iM" = ( /obj/effect/turf_decal/bordur/corner{ dir = 1 }, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) -"iQ" = ( -/obj/structure/roofstuff/vent/autotiling, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) +"iR" = ( +/obj/structure/chair/comfy/darkpack/red{ + dir = 1 + }, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "iV" = ( /obj/darkpack_car/track{ access = "supply"; @@ -327,37 +417,83 @@ }, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) +"iZ" = ( +/obj/machinery/hydroponics/simple/plastic, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) +"jd" = ( +/obj/structure/table/wood, +/obj/machinery/radio_tranceiver/police, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "je" = ( -/obj/machinery/button/door{ - id = "debughouse"; - pixel_y = 30 - }, /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /obj/effect/turf_decal/stripes/corner{ dir = 1 }, +/obj/machinery/button/door/directional/north{ + id = "debughouse" + }, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"jj" = ( +/obj/structure/table, +/obj/item/liquid_flamethrower, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) +"jp" = ( +/obj/structure/platform/lowwall/brick, +/turf/open/floor/plating/rough, +/area/vtm/interior/supply) +"jw" = ( +/obj/effect/decal/cleanable/trash{ + icon_state = "trash7" + }, +/obj/effect/spawner/random/stray_animal, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"jf" = ( +"jD" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/transport/linear/public, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) +"jK" = ( /obj/effect/turf_decal/stripes/line{ - dir = 1 + dir = 5 }, -/turf/open/misc/dirt/vamp, +/turf/open/misc/dirt, /area/vtm/outside/supply) -"jp" = ( -/turf/closed/wall/vampwall/brick/low, -/area/vtm/interior/supply) -"jt" = ( -/obj/effect/decal/cleanable/litter, -/obj/effect/spawner/random/occult/artifact, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"jR" = ( +/obj/machinery/button/elevator/directional/north{ + id = "DebugElevator2"; + pixel_x = 9; + pixel_y = 35 + }, +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "DebugElevator2" + }, +/turf/open/misc/grass, +/area/vtm/outside/pacificheights) "jW" = ( /obj/effect/decal/wallpaper/paper/stripe, /turf/closed/wall/vampwall/market, /area/vtm/interior/shop) +"kb" = ( +/obj/effect/landmark/start{ + jobspawn_override = 1; + delete_after_roundstart = 0 + }, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "kc" = ( /obj/structure/roadblock{ dir = 8 @@ -365,9 +501,6 @@ /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) "ki" = ( -/obj/structure/sign/city/order{ - pixel_y = 32 - }, /obj/structure/fluff/tv/order/three{ pixel_x = -10; pixel_y = 12 @@ -378,6 +511,10 @@ }, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"kj" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/misc/dirt, +/area/vtm/outside/supply) "kn" = ( /obj/structure/table, /obj/item/molotov, @@ -385,12 +522,6 @@ /obj/item/molotov, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"kM" = ( -/obj/structure/roofstuff/vent_end{ - dir = 4 - }, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "kS" = ( /turf/closed/wall/vampwall/market, /area/vtm/interior/shop) @@ -406,41 +537,49 @@ }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"lN" = ( -/turf/open/floor/plating/sidewalk/poor, -/area/vtm/outside/supply) -"lP" = ( -/obj/effect/decal/cleanable/trash{ - icon_state = "trash5" +"ln" = ( +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -7; + pixel_y = 8 }, -/obj/effect/spawner/random/occult/artifact, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) -"lU" = ( -/obj/effect/decal/pallet, -/obj/machinery/light/directional/west, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) -"mb" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -8; + pixel_y = -1 }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"md" = ( -/turf/closed/wall/vampwall/old, -/area/vtm/outside/pacificheights) -"mj" = ( -/obj/structure/vampdoor/anarch{ - dir = 4 +"lM" = ( +/obj/effect/decal/cleanable/trash, +/obj/effect/spawner/random/occult/artifact, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"lN" = ( +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/outside/supply) +"lU" = ( +/obj/structure/table/wood, +/obj/item/vtm_artifact/key_of_alamut, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"lX" = ( +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/outside/ghetto) +"lY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/turf/open/floor/plating/concrete, -/area/vtm/interior/shop) +/turf/open/misc/dirt, +/area/vtm/outside/supply) "mm" = ( /obj/structure/table/reinforced, /obj/machinery/computer/order_console/mining/restricted/police, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/platform/lowwall/brick, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) +"mn" = ( +/obj/structure/barrels/rand, +/turf/open/misc/dirt, +/area/vtm/outside/supply) "mw" = ( /obj/structure/ladder/manhole/up, /turf/open/misc/beach/vamp, @@ -454,17 +593,54 @@ /obj/machinery/light/directional/north, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) -"nh" = ( -/obj/weapon_showcase, -/turf/open/floor/plating/parquetry/old, -/area/vtm/interior/shop) +"mZ" = ( +/obj/machinery/fax/police, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"nk" = ( +/obj/structure/table/wood, +/obj/structure/retail/hardware_store, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 10; + pixel_y = 17 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -11; + pixel_y = -21 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 4; + pixel_y = -14 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_y = 18 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 12; + pixel_y = 9 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 10; + pixel_y = -16 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -5; + pixel_y = -13 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -9; + pixel_y = 16 + }, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "nm" = ( /obj/effect/decal/pallet, -/obj/item/ammo_box/vampire/c9mm/silver, -/obj/item/ammo_box/vampire/c9mm/moonclip, -/obj/item/ammo_box/vampire/c9mm, -/obj/item/ammo_box/vampire/c45acp/silver, -/obj/item/ammo_box/vampire/c45acp, +/obj/item/ammo_box/darkpack/c9mm/silver, +/obj/item/ammo_box/darkpack/c9mm/moonclip, +/obj/item/ammo_box/darkpack/c9mm, +/obj/item/ammo_box/darkpack/c45acp/silver, +/obj/item/ammo_box/darkpack/c45acp, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) "nq" = ( @@ -473,6 +649,12 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) +"nw" = ( +/obj/structure/table, +/obj/lombard, +/obj/structure/platform/lowwall/rich/old, +/turf/open/floor/plating/rough, +/area/vtm/outside/pacificheights) "nA" = ( /obj/effect/decal/cleanable/garbage, /obj/effect/decal/cleanable/cardboard, @@ -487,11 +669,9 @@ pixel_y = 12; pixel_x = 6 }, +/obj/structure/sign/city/store/bacotell/directional/north, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) -"nY" = ( -/turf/open/floor/plating/vampcanal, -/area/vtm/outside/pacificheights) "of" = ( /obj/item/storage/medkit/darkpack/standard, /obj/item/storage/medkit/darkpack/standard, @@ -499,31 +679,41 @@ /obj/structure/table, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) +"oi" = ( +/obj/structure/closet/crate/wooden/communitygardens/seeds, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "ok" = ( /obj/effect/decal/cleanable/litter, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"op" = ( +/obj/machinery/door/poddoor/shutters{ + elevator_mode = 1; + transport_linked_id = "DebugElevator3" + }, +/turf/open/floor/iron/smooth_large, +/area/vtm/outside/pacificheights) "ov" = ( /obj/effect/turf_decal/crosswalk{ dir = 8 }, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) -"oJ" = ( -/turf/open/floor/plating/sidewalk/poor, +"oD" = ( +/turf/open/misc/grass, /area/vtm/outside/pacificheights) -"oK" = ( -/turf/open/misc/beach/vamp, -/area/shuttle/arrival) +"oF" = ( +/obj/structure/chair/wood/darkpack, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "oM" = ( /turf/open/floor/plating/sidewalk, /area/vtm/interior/supply) -"oU" = ( +"oV" = ( /obj/weapon_showcase, -/obj/structure/sign/flag/usa{ - pixel_y = 32 - }, -/turf/open/floor/plating/parquetry/old, +/obj/structure/sign/flag/usa/directional/north, +/turf/open/floor/wood/smooth/old, /area/vtm/interior/shop) "oW" = ( /turf/open/floor/plating/concrete, @@ -534,16 +724,14 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"pf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 +"pg" = ( +/obj/structure/vampfence/rich{ + dir = 4; + pixel_y = 15 }, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) -"pt" = ( -/mob/living/carbon/human/npc/shop, -/turf/open/floor/plating/toilet, -/area/vtm/interior/shop) +/obj/structure/platform/lowwall/brick_old, +/turf/open/floor/plating/rough, +/area/vtm/outside/pacificheights) "pz" = ( /obj/darkpack_car/rand{ locked = 0; @@ -551,6 +739,11 @@ }, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) +"pD" = ( +/obj/machinery/light/directional/north, +/obj/structure/lattice/grate, +/turf/open/openspace, +/area/vtm/outside/pacificheights) "pG" = ( /obj/effect/landmark/npcbeacon, /obj/effect/turf_decal/bordur/corner{ @@ -558,38 +751,59 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"pH" = ( -/obj/effect/decal/cleanable/trash{ - icon_state = "trash7" - }, -/obj/effect/spawner/random/occult/artifact, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) "pN" = ( /turf/open/floor/plating/rough, /area/vtm/interior/clinic) +"pU" = ( +/obj/effect/landmark/npc_spawn_point, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/outside/ghetto) +"pV" = ( +/obj/effect/turf_decal/bordur, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/outside/ghetto) +"qc" = ( +/turf/open/floor/iron/smooth_large, +/area/vtm/outside/pacificheights) "qn" = ( /obj/effect/turf_decal/bordur{ dir = 8 }, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) -"qr" = ( -/obj/structure/sign/city/police_department{ - dir = 8 - }, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "qt" = ( /obj/machinery/computer/cargo/express{ dir = 4 }, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/supply) +"qv" = ( +/obj/structure/vampdoor/simple/camarilla{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) "qz" = ( /obj/structure/lamppost/one, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) +"qC" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + transport_linked_id = "DebugElevator3"; + elevator_mode = 1 + }, +/turf/open/floor/iron/smooth_large, +/area/vtm/outside/pacificheights) +"qE" = ( +/obj/structure/transport/linear/public, +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "DebugElevator2" + }, +/obj/effect/abstract/elevator_music_zone{ + linked_elevator_id = "DebugElevator2" + }, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) "qN" = ( /obj/structure/chair/comfy/shuttle, /turf/open/floor/plating/rough, @@ -599,16 +813,27 @@ /obj/machinery/light/directional/west, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) -"qT" = ( -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) "qV" = ( /turf/closed/wall/vampwall/brick, /area/vtm/outside/pacificheights) -"ri" = ( +"qY" = ( /obj/structure/table/wood, -/turf/closed/wall/vampwall/painted/low, +/obj/item/vtm_artifact/bloodstar, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"ri" = ( +/obj/structure/table/countertop/purple, +/turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"rs" = ( +/obj/machinery/fax/camarilla, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"ru" = ( +/obj/effect/landmark/observer_start, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "rB" = ( /turf/closed/indestructible/the_matrix, /area/vtm) @@ -618,11 +843,6 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"rI" = ( -/obj/structure/table/wood, -/obj/item/vtm_artifact/saulocept, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) "rK" = ( /obj/item/storage/pill_bottle/ephedrine, /obj/item/storage/pill_bottle/ephedrine, @@ -643,24 +863,45 @@ }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"rM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/misc/dirt, +/area/vtm/outside/supply) "rN" = ( /obj/structure/stairs/north, /turf/open/floor/plating/rough, /area/vtm/interior/techshop) +"rO" = ( +/obj/structure/table/wood, +/obj/item/seeds/cannabis, +/obj/item/seeds/cannabis, +/obj/item/seeds/cannabis, +/obj/item/seeds/cannabis, +/obj/item/seeds/cannabis, +/obj/item/seeds/cannabis, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "rW" = ( /obj/effect/turf_decal/crosswalk, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) -"sb" = ( -/turf/closed/wall/vampwall, -/area/vtm/outside/pacificheights) -"se" = ( -/turf/closed/wall/vampwall, -/area/vtm) "sg" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/kirbyplants/random{ + pixel_x = 7; + pixel_y = 13 + }, +/obj/effect/decal/carpet{ + pixel_x = -17; + pixel_y = -5 + }, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "sk" = ( /obj/effect/landmark/npcbeacon, /obj/effect/turf_decal/bordur/corner{ @@ -685,12 +926,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/plating/rough, /area/vtm/interior/techshop) -"sx" = ( -/obj/structure/table/wood, -/obj/item/vtm_artifact/tarulfang, -/mob/living/basic/pet/cat/darkpack/cain, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) "sy" = ( /mob/living/carbon/human/npc/shop, /obj/effect/decal/cleanable/trash{ @@ -698,12 +933,37 @@ }, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) -"sX" = ( -/obj/structure/sign/city/store/bubway{ - pixel_y = 40 +"sQ" = ( +/obj/machinery/hydroponics/simple/wooden, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) +"sR" = ( +/obj/effect/decal/pallet, +/turf/open/misc/dirt, +/area/vtm/outside/supply) +"sU" = ( +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -7; + pixel_y = 19 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 4; + pixel_y = 21 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 13; + pixel_y = 18 }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"sY" = ( +/obj/structure/table/countertop/black, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"sZ" = ( +/obj/structure/sink/directional/east, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "tb" = ( /obj/effect/landmark/npcbeacon, /obj/effect/turf_decal/bordur, @@ -716,21 +976,9 @@ /obj/structure/lamppost/four, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"tj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) "tr" = ( -/obj/structure/sign/city/police_department{ - dir = 1 - }, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) -"ts" = ( -/obj/machinery/fax/endron, -/turf/open/misc/beach/vamp, +/obj/structure/sign/flag/pride/lesbian/directional/north, +/turf/open/floor/plating/rough/cave, /area/vtm/outside/pacificheights) "tu" = ( /obj/darkpack_car/track/volkswagen{ @@ -750,13 +998,38 @@ /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) "tO" = ( -/obj/structure/sign/city/police_department, +/obj/effect/gibspawner/human, +/obj/structure/sign/city/store/gummaguts/directional/north, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"tP" = ( +/mob/living/carbon/human/npc/shop, +/obj/effect/decal/carpet{ + pixel_x = 5; + pixel_y = -14 + }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) "tW" = ( /obj/darkpack_car/police/ranger, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) +"tY" = ( +/turf/open/floor/plating/canal, +/area/vtm/outside/pacificheights) +"ug" = ( +/obj/machinery/door/airlock/elevator/right{ + elevator_mode = 1; + transport_linked_id = "DebugElevator2" + }, +/turf/open/floor/iron/smooth_large, +/area/vtm/outside/pacificheights) +"ut" = ( +/obj/structure/chair/comfy/darkpack/green{ + dir = 1 + }, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "uC" = ( /obj/structure/table, /obj/item/ammo_box/magazine/glock45acp, @@ -766,11 +1039,11 @@ /obj/machinery/light/directional/west, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) +"uD" = ( +/obj/fusebox/transformer, +/turf/open/floor/plating/rough, +/area/vtm/interior/clinic) "uJ" = ( -/obj/machinery/button/door{ - id = "debughouse"; - pixel_y = 30 - }, /obj/effect/turf_decal/stripes/corner{ dir = 1 }, @@ -787,12 +1060,25 @@ /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) "uL" = ( -/obj/structure/table/bubway, +/obj/structure/table/countertop/bubway, /obj/underplate/stuff{ pixel_y = 8 }, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"uP" = ( +/obj/structure/sign/flag/pride/trans/directional/north, +/turf/open/floor/plating/rough/cave, +/area/vtm/outside/pacificheights) +"uX" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plating/rough, +/area/vtm/interior/clinic) +"va" = ( +/obj/structure/table/wood, +/obj/item/vtm_artifact/fae_charm, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) "vl" = ( /obj/effect/turf_decal/bordur{ dir = 8 @@ -802,30 +1088,24 @@ }, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) -"vm" = ( -/obj/structure/sign/city/store/bacotell{ - pixel_x = 1; - pixel_y = 40 - }, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) -"vn" = ( -/turf/open/floor/plating/woodrough, -/area/vtm/outside/pacificheights) "vs" = ( /obj/effect/landmark/npcbeacon, /obj/effect/turf_decal/bordur/corner, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) -"vz" = ( -/obj/structure/vampdoor{ - dir = 4 - }, -/turf/open/floor/plating/vampcanal, -/area/vtm/outside/pacificheights) -"vJ" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/plating/vampcanal, +"vD" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"vW" = ( +/obj/structure/table/wood, +/obj/item/soil_sack, +/obj/item/soil_sack/coir, +/obj/item/soil_sack/gel, +/obj/item/soil_sack/rich, +/obj/item/soil_sack/vermaculite, +/obj/item/soil_sack/worm, +/turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) "wb" = ( /obj/structure/table, @@ -834,31 +1114,44 @@ /obj/item/storage/medkit/darkpack/brute, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) -"wm" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/plating/parquetry/old, -/area/vtm/interior/shop) -"wD" = ( -/obj/effect/landmark/start{ - jobspawn_override = 1; - delete_after_roundstart = 0 +"wj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/misc/beach/vamp, -/area/shuttle/arrival) +/turf/open/misc/dirt/rails, +/area/vtm/outside/supply) +"wr" = ( +/obj/structure/table/wood, +/obj/item/vtm_artifact/odious_chalice, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) "wO" = ( /obj/effect/decal/cleanable/trash, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"wW" = ( -/obj/effect/landmark/observer_start, -/turf/open/misc/beach/vamp, -/area/shuttle/arrival) +"xc" = ( +/obj/weapon_showcase, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) "xh" = ( /obj/effect/turf_decal/bordur{ dir = 1 }, /turf/closed/wall/vampwall/junk/alt, /area/vtm/outside/pacificheights) +"xj" = ( +/obj/machinery/button/elevator/directional/north{ + id = "DebugElevator2"; + pixel_x = 9; + pixel_y = 35 + }, +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "DebugElevator2" + }, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "xC" = ( /obj/effect/decal/cleanable/litter, /turf/open/floor/plating/concrete, @@ -870,9 +1163,9 @@ /turf/open/floor/plating/rough, /area/vtm/interior/clinic) "xH" = ( -/obj/structure/table, /obj/lombard, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/table/countertop/beige, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) "xU" = ( /obj/structure/table, @@ -886,10 +1179,6 @@ /obj/machinery/light/floor, /turf/open/floor/plating/rough, /area/vtm/interior/techshop) -"yc" = ( -/obj/structure/roofstuff/vent/south, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "yi" = ( /obj/machinery/light/directional/west, /turf/open/floor/plating/sidewalk, @@ -903,9 +1192,10 @@ /obj/item/storage/medkit/darkpack/doctor, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) -"yt" = ( -/turf/open/floor/plating/parquetry/old, -/area/vtm/interior/shop) +"yw" = ( +/obj/machinery/sprinkler, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "yD" = ( /obj/structure/table, /obj/item/storage/medkit/darkpack/burn, @@ -913,19 +1203,30 @@ /obj/item/storage/medkit/darkpack/burn, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) -"yE" = ( -/obj/effect/gibspawner/human, -/obj/machinery/light/directional/west, -/turf/open/floor/plating/toilet, -/area/vtm/interior/shop) "yK" = ( /obj/structure/vampdoor, /turf/open/floor/plating/rough/cave, /area/vtm/outside/pacificheights) -"zc" = ( -/obj/structure/vampdoor, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"yW" = ( +/obj/machinery/button/elevator/directional/north{ + id = "DebugElevator4"; + pixel_x = 9; + pixel_y = 35 + }, +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "DebugElevator4" + }, +/turf/open/misc/grass, +/area/vtm/outside/pacificheights) +"zd" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"ze" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/misc/dirt, +/area/vtm/outside/supply) "zk" = ( /obj/darkpack_car/track/ambulance{ dir = 4; @@ -939,45 +1240,50 @@ /turf/open/floor/plating/concrete, /area/vtm/interior/shop) "zx" = ( -/turf/closed/wall/vampwall/market/low/window, -/area/vtm/interior/shop) -"zT" = ( -/obj/structure/chair/greyscale, +/obj/structure/platform/lowwall/market/window, /turf/open/floor/plating/rough, -/area/vtm/interior/techshop) +/area/vtm/interior/shop) +"zA" = ( +/obj/effect/decal/cleanable/trash{ + icon_state = "trash5" + }, +/obj/effect/spawner/random/stray_animal, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"zF" = ( +/obj/structure/table/wood, +/obj/item/vtm_artifact/weekapaug_thistle, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"zM" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) "zX" = ( /obj/effect/decal/wallpaper/red, /turf/closed/wall/vampwall/market, /area/vtm/interior/shop) "Af" = ( -/obj/structure/table, /obj/structure/retail/junkfood_menu, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/table/countertop/teal, +/turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"Ag" = ( +/obj/effect/decal/cleanable/litter, +/obj/effect/spawner/random/stray_animal, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "Ak" = ( /obj/effect/turf_decal/crosswalk{ dir = 1 }, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) -"Ao" = ( -/obj/structure/vampdoor{ - dir = 8 - }, -/turf/open/floor/plating/rough, -/area/vtm/interior/techshop) -"AC" = ( -/obj/machinery/fax/admin/glasswalker, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "AE" = ( /obj/structure/bookcase/random/adult, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) -"AT" = ( -/obj/machinery/fax/admin/anarch, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "AU" = ( /obj/effect/turf_decal/bordur{ dir = 4 @@ -987,12 +1293,10 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"AX" = ( -/obj/structure/table/wood, -/obj/item/vtm_artifact/weekapaug_thistle, -/obj/machinery/light/directional/north, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"Be" = ( +/obj/structure/vampdoor/simple/supply, +/turf/open/floor/plating/sidewalk, +/area/vtm/interior/supply) "Bf" = ( /obj/effect/decal/cleanable/garbage, /obj/effect/decal/cleanable/trash{ @@ -1000,20 +1304,38 @@ }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"Bp" = ( +/obj/structure/vampdoor, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) "Bq" = ( /obj/effect/turf_decal/bordur, /obj/structure/lamppost/one, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/pacificheights) +"Bs" = ( +/obj/structure/transport/linear/public, +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "DebugElevator" + }, +/obj/effect/abstract/elevator_music_zone{ + linked_elevator_id = "DebugElevator" + }, +/obj/machinery/light/floor, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) "Bt" = ( /obj/structure/barrels/rand, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"BH" = ( -/obj/structure/table/wood, -/obj/item/vtm_artifact/key_of_alamut, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"Bw" = ( +/obj/structure/transport/linear/public, +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "DebugElevator3"; + preset_destination_names = list("2" = "Lower", "3" = "Upper") + }, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) "BL" = ( /mob/living/carbon/human/npc/shop, /turf/open/floor/plating/concrete, @@ -1024,26 +1346,32 @@ /area/vtm/interior/techshop) "BX" = ( /obj/structure/table, -/turf/closed/wall/vampwall/market/low, +/obj/structure/platform/lowwall/market, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) +"BZ" = ( +/obj/structure/railing, +/turf/open/floor/plating/canal, +/area/vtm/outside/pacificheights) "Ca" = ( /obj/structure/table, /obj/item/gun/ballistic/automatic/darkpack/sniper, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) -"Cd" = ( -/mob/living/carbon/human/npc/shop, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "Cg" = ( -/obj/structure/table/wood, /obj/structure/retail/library, -/turf/closed/wall/vampwall/painted/low, -/area/vtm/interior/shop) -"Cr" = ( -/obj/structure/vampdoor/glass/police_chief, -/turf/open/floor/plating/toilet, +/obj/structure/table/countertop/red, +/turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"Cj" = ( +/obj/structure/railing, +/obj/structure/ladder/manhole/up{ + connect_down = 1; + connect_up = 0 + }, +/obj/structure/lattice/grate, +/turf/open/openspace, +/area/vtm/outside/pacificheights) "Ct" = ( /obj/structure/lamppost/one{ dir = 1 @@ -1059,10 +1387,10 @@ }, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) -"Db" = ( -/obj/machinery/light/directional/west, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) +"CB" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "Df" = ( /obj/structure/closet/crate/freezer/blood{ name = "vampire blood freezer" @@ -1096,44 +1424,67 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) +"Ds" = ( +/obj/machinery/fax/anarch, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "Dw" = ( /obj/machinery/stove, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) -"DF" = ( -/obj/structure/sign/city/store/gummaguts{ - pixel_x = 16; - pixel_y = 38 +"Dx" = ( +/obj/machinery/button/elevator/directional/north{ + id = "DebugElevator3"; + pixel_y = 35; + pixel_x = 9 }, -/obj/structure/closet/secure_closet/freezer, -/turf/open/floor/plating/toilet, -/area/vtm/interior/shop) +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "DebugElevator3" + }, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "DG" = ( /obj/structure/retail/gas_station, -/obj/structure/table, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/table/countertop/yellow, +/turf/open/floor/plating/concrete, /area/vtm/interior/shop) "DJ" = ( /obj/item/vamp/keys/anarch, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) -"DM" = ( -/turf/open/misc/dirt/vamp/rails, -/area/vtm/outside/supply) "DN" = ( /obj/structure/rack/clothing/rand{ dir = 8 }, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"DT" = ( +/obj/machinery/fax/endron, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "DV" = ( /obj/structure/closet/secure_closet/freezer/meat, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"DW" = ( +/obj/structure/roofstuff/vent/south, +/turf/open/misc/grass, +/area/vtm/outside/pacificheights) "DY" = ( /obj/structure/lamppost/one, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) +"Ef" = ( +/turf/closed/wall/vampwall/rich/old, +/area/vtm/interior/sewer) +"Em" = ( +/obj/structure/cargo_put, +/turf/open/misc/dirt, +/area/vtm/outside/supply) "Et" = ( /obj/structure/table/optable, /obj/machinery/defibrillator_mount/loaded{ @@ -1147,33 +1498,24 @@ }, /turf/open/floor/plating/rough, /area/vtm/interior/techshop) -"EF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 +"Ew" = ( +/obj/structure/vampdoor{ + dir = 4 }, -/turf/open/misc/dirt/vamp, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"EE" = ( +/obj/machinery/light/directional/west, +/turf/open/misc/dirt, /area/vtm/outside/supply) "EL" = ( -/turf/closed/wall/vampwall/rich/old/low/window, +/obj/structure/platform/lowwall/rich/old/window, +/turf/open/floor/plating/rough, /area/vtm/interior/clinic) "EN" = ( /obj/effect/landmark/error, /turf/open/floor/plating/rough/cave, /area/vtm/outside/pacificheights) -"ES" = ( -/obj/structure/roofstuff/vent, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) -"ET" = ( -/obj/structure/vampdoor/camarilla{ - dir = 4 - }, -/turf/open/floor/plating/concrete, -/area/vtm/interior/shop) -"EX" = ( -/obj/machinery/fax/glasswalker, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "EY" = ( /turf/closed/wall/vampwall/rich, /area/vtm/outside/pacificheights) @@ -1203,10 +1545,6 @@ /obj/machinery/vending/boozeomat, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"FD" = ( -/obj/machinery/fax/admin/police, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "FG" = ( /obj/effect/decal/cleanable/cardboard, /obj/effect/decal/graffiti/large, @@ -1220,10 +1558,22 @@ }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"FM" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plating/rough, +/area/vtm/interior/anarch) "FO" = ( /obj/structure/table, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/supply) +"FT" = ( +/obj/cargocrate, +/turf/open/misc/dirt/rails, +/area/vtm/outside/supply) +"Gj" = ( +/obj/effect/gibspawner/human, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) "Gm" = ( /obj/structure/vampdoor/prison, /turf/open/floor/plating/rough, @@ -1236,31 +1586,20 @@ /turf/open/floor/plating/rough, /area/vtm/interior/clinic) "Gu" = ( -/turf/closed/wall/vampwall/brick/low/window, +/obj/structure/platform/lowwall/brick/window, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) "Gw" = ( /obj/machinery/light/directional/west, /turf/open/floor/plating/rough/cave, /area/vtm/outside/pacificheights) -"Gz" = ( -/mob/living/carbon/human/npc/shop, -/turf/open/floor/plating/parquetry/old, -/area/vtm/interior/shop) -"GB" = ( -/obj/structure/barrels/rand, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) -"GE" = ( -/obj/structure/retail/flower_shop, -/obj/structure/table/wood, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) "GF" = ( /turf/cordon, /area/misc/cordon) "GH" = ( /obj/structure/table/reinforced, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/platform/lowwall/brick, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) "GJ" = ( /turf/cordon, @@ -1282,6 +1621,9 @@ }, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"GN" = ( +/turf/closed/wall/vampwall/rich/old, +/area/vtm/outside/ghetto) "GO" = ( /obj/structure/table, /obj/machinery/button/door{ @@ -1290,10 +1632,6 @@ }, /turf/open/floor/plating/rough, /area/vtm/interior/techshop) -"GS" = ( -/obj/structure/vampdoor/police, -/turf/open/floor/plating/concrete, -/area/vtm/interior/shop) "GX" = ( /obj/structure/barrels/rand, /obj/machinery/light/directional/north, @@ -1305,6 +1643,13 @@ }, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) +"Hc" = ( +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 3; + pixel_y = 16 + }, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "Hd" = ( /obj/effect/landmark/npcwall, /turf/open/floor/plating/sidewalk, @@ -1321,6 +1666,13 @@ }, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) +"Hj" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) "Hn" = ( /obj/effect/turf_decal/bordur{ dir = 4 @@ -1341,6 +1693,10 @@ }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"HE" = ( +/obj/structure/city_map, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "HJ" = ( /obj/effect/turf_decal/stock, /turf/open/floor/plating/asphalt, @@ -1352,6 +1708,10 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) +"HQ" = ( +/obj/effect/landmark/npcbeacon, +/turf/open/floor/plating/asphalt, +/area/vtm/outside/pacificheights) "Id" = ( /turf/open/floor/plating/rough, /area/vtm/interior/techshop) @@ -1367,19 +1727,17 @@ /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/pacificheights) "Ip" = ( -/obj/structure/table, /obj/structure/retail/black_market, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/table/countertop/black, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) -"Is" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/supplypod_beacon{ - anchored = 1 +"IA" = ( +/obj/structure/railing{ + dir = 10 }, -/turf/open/misc/dirt/vamp/rails, -/area/vtm/outside/supply) +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) "ID" = ( /turf/closed/wall/vampwall/market, /area/vtm/outside/pacificheights) @@ -1387,16 +1745,31 @@ /obj/structure/ladder/manhole/up, /turf/open/floor/plating/rough, /area/vtm/interior/techshop) -"IO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"IZ" = ( +/obj/machinery/fax/aasimites, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"Jf" = ( +/obj/machinery/door/airlock/elevator/left{ + dir = 8; + pixel_y = 15; + transport_linked_id = "DebugElevator4" }, -/turf/open/misc/dirt/vamp/rails, -/area/vtm/outside/supply) -"IX" = ( -/obj/machinery/fax/admin/aasimites, +/turf/open/floor/iron/smooth_large, +/area/vtm/outside/pacificheights) +"Jh" = ( +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"Jk" = ( +/obj/structure/vampfence/rich{ + dir = 4; + pixel_y = 15 + }, +/obj/structure/platform/lowwall/rich/old, +/turf/open/floor/plating/rough, +/area/vtm/outside/pacificheights) "Jo" = ( /obj/structure/closet/crate/freezer/blood, /obj/item/reagent_containers/blood, @@ -1407,14 +1780,19 @@ /obj/item/reagent_containers/blood, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) -"Jv" = ( -/obj/effect/spawner/random/occult/artifact, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) -"JE" = ( -/obj/machinery/fax/tremere, -/turf/open/misc/beach/vamp, +"Jq" = ( +/obj/structure/sign/flag/pride/directional/north, +/turf/open/floor/plating/rough/cave, /area/vtm/outside/pacificheights) +"Ju" = ( +/obj/effect/gibspawner/human, +/obj/machinery/light/directional/west, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"JB" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) "JG" = ( /obj/structure/table, /obj/item/ammo_box/magazine/glock9mm, @@ -1430,16 +1808,24 @@ /obj/structure/vampdoor, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) -"JK" = ( -/obj/structure/vampdoor{ - dir = 8 - }, -/turf/open/floor/plating/rough, -/area/vtm/interior/clinic) "JP" = ( /obj/effect/decal/cleanable/garbage, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"JR" = ( +/obj/effect/decal/cleanable/cardboard, +/obj/effect/spawner/random/trash/rat, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"JZ" = ( +/obj/item/clothing/head/collectable/pirate, +/turf/open/floor/wood/rough, +/area/vtm/outside/pacificheights) +"Kc" = ( +/obj/effect/turf_decal/bordur, +/obj/effect/landmark/npc_spawn_point, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "Kg" = ( /obj/effect/turf_decal/bordur, /obj/effect/turf_decal/bordur{ @@ -1447,46 +1833,81 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"Kj" = ( -/obj/structure/sign/city/police_department{ - dir = 4 - }, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) +"Kk" = ( +/turf/closed/wall/vampwall/brick_old, +/area/vtm/outside/ghetto) "Ko" = ( /obj/effect/landmark/npcbeacon/directed{ dir = 8 }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) +"Kr" = ( +/obj/structure/table, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/outside/supply) "Kt" = ( -/obj/structure/table/wood, /obj/structure/retail/pharmacy, -/turf/closed/wall/vampwall/painted/low, +/obj/structure/table/countertop/purple, +/turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"Kz" = ( +/obj/structure/table/wood, +/obj/item/vtm_artifact/heart_of_eliza, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) "KB" = ( /obj/structure/table, /obj/item/ammo_box/magazine/darkpack545, /obj/item/ammo_box/magazine/darkpack545, /obj/item/ammo_box/magazine/darkpack545, /obj/item/gun/ballistic/automatic/darkpack/ak74, +/obj/fusebox, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) +"KF" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) +"KR" = ( +/obj/structure/transport/linear/public, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) "KU" = ( /obj/effect/turf_decal/bordur{ dir = 1 }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"Lk" = ( -/obj/effect/decal/cleanable/trash{ - icon_state = "trash7" - }, -/turf/open/misc/beach/vamp, -/area/vtm/outside/pacificheights) -"Ln" = ( -/turf/open/floor/light, +"KW" = ( +/obj/structure/table/countertop/yellow, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"La" = ( +/obj/structure/chair/darkpack/blue, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) +"Lb" = ( +/turf/open/misc/dirt/rails, +/area/vtm/outside/supply) +"Le" = ( +/obj/structure/transport/linear/public, +/obj/structure/closet/crate/freezer/food, +/obj/item/storage/cans/sixbeer, +/turf/open/floor/plating/elevatorshaft, /area/vtm/outside/pacificheights) +"Lj" = ( +/obj/structure/roadblock{ + dir = 4 + }, +/turf/open/misc/dirt, +/area/vtm/outside/supply) "Lw" = ( /obj/structure/table, /obj/item/gas_can, @@ -1504,10 +1925,19 @@ }, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) -"LR" = ( -/obj/structure/cargo_put, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) +"LG" = ( +/obj/structure/table/wood, +/obj/item/vtm_artifact/daimonori, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"LP" = ( +/obj/structure/vampdoor/simple/police, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"LU" = ( +/obj/structure/platform/lowwall/rich/old/window, +/turf/open/floor/plating/rough, +/area/vtm/outside/ghetto) "LW" = ( /obj/structure/table, /obj/item/restraints/handcuffs, @@ -1520,11 +1950,35 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"Mv" = ( -/obj/structure/table/wood, -/obj/item/vtm_artifact/heart_of_eliza, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"LY" = ( +/obj/machinery/fax/admin/glasswalker, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"Mf" = ( +/obj/structure/vampdoor{ + dir = 4 + }, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) +"Mg" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/outside/ghetto) +"Mm" = ( +/obj/structure/ladder/manhole/down, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/canal, +/area/vtm/outside/pacificheights) +"Mn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/misc/dirt, +/area/vtm/outside/supply) "My" = ( /obj/structure/retail/costume_store{ pixel_x = 2; @@ -1534,14 +1988,24 @@ /obj/structure/retail/hot_ishu{ pixel_y = 10 }, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/platform/lowwall/brick, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) -"MH" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/bordur{ - dir = 4 +"Mz" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/rollingpapers{ + pixel_x = -6 }, -/turf/open/floor/plating/sidewalk/poor, +/obj/item/storage/box/matches{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) +"MF" = ( +/obj/structure/table/wood, +/obj/machinery/radio_tranceiver/camarilla, +/turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) "MJ" = ( /obj/structure/table, @@ -1551,29 +2015,60 @@ "MS" = ( /turf/closed/wall/vampwall/rich/old, /area/vtm/outside/pacificheights) +"Nb" = ( +/obj/structure/table/wood, +/obj/item/vtm_artifact/tarulfang, +/mob/living/basic/pet/cat/darkpack/cain, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) "Nd" = ( /obj/structure/table/wood, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"Nu" = ( -/obj/structure/roofstuff/vent_end{ - dir = 8 +"Ne" = ( +/obj/structure/railing{ + dir = 9 }, -/turf/open/misc/beach/vamp, +/obj/structure/transport/linear/public, +/obj/item/kirbyplants/random, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) +"Nm" = ( +/obj/machinery/button/elevator/directional/north{ + id = "DebugElevator"; + pixel_y = 35; + pixel_x = 9 + }, +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "DebugElevator" + }, +/turf/open/misc/grass, /area/vtm/outside/pacificheights) "Nw" = ( /obj/machinery/light/directional/north, /turf/open/floor/plating/rough, /area/vtm/interior/shop) -"Nx" = ( -/obj/structure/railing, -/turf/open/floor/plating/vampcanal, -/area/vtm/outside/pacificheights) +"Ny" = ( +/turf/closed/wall/vampwall/brick_old, +/area/vtm) +"Nz" = ( +/obj/structure/chair/darkpack/red, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "NI" = ( -/obj/structure/table/bacotell, /obj/structure/retail/bacotell_menu, +/obj/structure/table/countertop/bacotell, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"NK" = ( +/obj/machinery/smartfridge/drying/rack, +/obj/item/food/grown/cannabis, +/obj/item/food/grown/cannabis, +/obj/item/food/grown/cannabis, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "NO" = ( /obj/structure/table/wood/fancy/red, /obj/item/storage/bag/books, @@ -1583,9 +2078,24 @@ /obj/structure/table, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) +"NQ" = ( +/obj/structure/vampdoor{ + dir = 4 + }, +/turf/open/floor/plating/rough, +/area/vtm/interior/clinic) "NR" = ( /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"NX" = ( +/obj/effect/decal/pallet, +/obj/machinery/light/directional/west, +/turf/open/misc/dirt, +/area/vtm/outside/supply) +"Ob" = ( +/obj/structure/chair/darkpack, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "Od" = ( /obj/structure/closet/crate/freezer/blood{ name = "blue blood freezer" @@ -1598,15 +2108,17 @@ /obj/item/reagent_containers/blood/vitae, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) -"Of" = ( -/obj/structure/table, -/obj/item/gun/ballistic/shotgun/toy/crossbow/vampire, -/turf/open/floor/plating/rough, -/area/vtm/interior/anarch) +"Oi" = ( +/turf/open/misc/grass/random, +/area/vtm/outside/pacificheights) "On" = ( /mob/living/carbon/human/npc/shop, /turf/open/floor/plating/rough, /area/vtm/interior/shop) +"Oq" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "OB" = ( /obj/darkpack_car/police{ locked = 0 @@ -1643,6 +2155,14 @@ }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"OP" = ( +/obj/structure/vampdoor, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"OQ" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/canal, +/area/vtm/outside/pacificheights) "OU" = ( /obj/effect/spawner/random/trash/grime{ spawn_loot_count = 20; @@ -1650,9 +2170,23 @@ }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"OX" = ( -/obj/machinery/fax/admin/endron, -/turf/open/misc/beach/vamp, +"OV" = ( +/obj/structure/table/wood, +/obj/item/food/grown/cannabis, +/obj/item/food/grown/cannabis, +/obj/item/food/grown/cannabis, +/obj/item/food/grown/cannabis, +/obj/item/food/grown/cannabis, +/obj/item/food/grown/cannabis, +/obj/item/bong{ + pixel_y = 10; + pixel_x = 10 + }, +/obj/item/bong{ + pixel_y = 2; + pixel_x = 10 + }, +/turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) "OZ" = ( /obj/structure/table, @@ -1662,20 +2196,20 @@ /obj/item/gun/ballistic/automatic/darkpack/aug, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) +"Pa" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) "Pg" = ( /obj/structure/retail/gun_store, /obj/structure/table, -/turf/closed/wall/vampwall/market/low, +/obj/structure/platform/lowwall/market, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) -"Po" = ( -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/turf/open/misc/beach/vamp, +"Pr" = ( +/obj/structure/roofstuff/vent_end, +/turf/open/misc/grass, /area/vtm/outside/pacificheights) -"Ps" = ( -/obj/structure/table/wood, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) "Pu" = ( /obj/machinery/computer/operating, /turf/open/floor/plating/rough, @@ -1684,27 +2218,73 @@ /obj/machinery/light/directional/east, /turf/open/floor/plating/rough/cave, /area/vtm/outside/pacificheights) +"Pz" = ( +/obj/structure/transport/linear/public, +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "DebugElevator4"; + preset_destination_names = list("2" = "Lower", "3" = "Upper") + }, +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "DebugElevator4" + }, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) +"PC" = ( +/obj/structure/roofstuff/vent, +/turf/open/misc/grass, +/area/vtm/outside/pacificheights) +"PL" = ( +/obj/effect/landmark/latejoin, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "PO" = ( /turf/open/floor/plating/rough, /area/vtm/interior/anarch) +"PP" = ( +/obj/structure/table, +/obj/lombard/blackmarket, +/obj/structure/platform/lowwall/rich/old, +/turf/open/floor/plating/rough, +/area/vtm/outside/pacificheights) +"PR" = ( +/obj/structure/vampdoor{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) "PW" = ( /obj/effect/turf_decal/bordur/corner, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) -"PX" = ( -/obj/structure/table/reinforced, -/obj/item/arcane_tome, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"Qe" = ( +/obj/effect/spawner/random/stray_animal, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "Qi" = ( /obj/effect/turf_decal/asphaltline/alt, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) +"Ql" = ( +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -2; + pixel_y = -6 + }, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "Qv" = ( /obj/structure/retail/smoke_menu, -/obj/structure/table, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/table/countertop/teal, +/turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"QD" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/trash, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) "QK" = ( /obj/effect/turf_decal/bordur, /obj/effect/turf_decal/bordur{ @@ -1712,11 +2292,21 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"QM" = ( -/obj/effect/turf_decal/bordur{ - dir = 4 +"QN" = ( +/obj/effect/decal/cleanable/litter, +/obj/effect/spawner/random/occult/artifact, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"QR" = ( +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "DebugElevator"; + preset_destination_names = list("2" = "Lower", "3" = "Upper") + }, +/obj/structure/railing/corner/end{ + dir = 8 }, -/turf/open/floor/plating/sidewalk/poor, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, /area/vtm/outside/pacificheights) "QS" = ( /obj/effect/turf_decal/bordur{ @@ -1729,14 +2319,20 @@ /obj/effect/spawner/random/vending/snackvend, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"Rb" = ( -/obj/machinery/fax/police, +"QZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/supplypod_beacon{ + anchored = 1 + }, +/turf/open/misc/dirt/rails, +/area/vtm/outside/supply) +"Rg" = ( +/obj/structure/table/wood, +/obj/structure/retail/flower_shop, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"Re" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) "Ri" = ( /obj/structure/table, /obj/item/surgery_tray/full, @@ -1745,10 +2341,16 @@ "Rj" = ( /turf/open/genturf, /area/vtm/planetgeneration) +"Rn" = ( +/obj/structure/table/wood, +/obj/machinery/radio_tranceiver/clinic, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "Ro" = ( /obj/structure/table, /obj/structure/retail/gummaguts_menu, -/turf/closed/wall/vampwall/market/low, +/obj/structure/platform/lowwall/market, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) "Rx" = ( /obj/effect/landmark/npcbeacon, @@ -1757,12 +2359,17 @@ }, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) -"Sg" = ( -/obj/structure/chair/office{ - dir = 8 +"RP" = ( +/obj/effect/decal/cleanable/trash{ + icon_state = "trash7" }, -/turf/open/floor/plating/rough, -/area/vtm/interior/techshop) +/obj/effect/spawner/random/occult/artifact, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"Sj" = ( +/obj/effect/landmark/latejoin_masquerade, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "Sp" = ( /obj/structure/table, /obj/item/stack/medical/bone_gel, @@ -1774,23 +2381,39 @@ /obj/structure/barrels/rand, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/pacificheights) -"Sw" = ( -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/trash, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) -"SF" = ( -/obj/structure/table/wood, -/obj/item/vtm_artifact/bloodstar, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) "SG" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) +"SJ" = ( +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/outside/ghetto) "SK" = ( /turf/closed/wall/vampwall/rich/old, /area/vtm/interior/clinic) +"SL" = ( +/turf/open/floor/wood/rough, +/area/vtm/outside/pacificheights) +"SM" = ( +/obj/structure/vampdoor{ + dir = 4 + }, +/turf/open/floor/plating/canal, +/area/vtm/outside/pacificheights) +"SP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/city_map, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"SW" = ( +/obj/machinery/telecomms/allinone/public, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "SY" = ( /obj/structure/table, /obj/vampire_computer/prince, @@ -1800,17 +2423,34 @@ /obj/machinery/iv_drip, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) +"Ti" = ( +/obj/structure/transport/linear/public, +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "DebugElevator3" + }, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) +"Tk" = ( +/obj/structure/table/wood, +/obj/machinery/radio_tranceiver/endron, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"Tm" = ( +/obj/structure/chair/comfy/darkpack/blue{ + dir = 1 + }, +/turf/open/floor/plating/rough, +/area/vtm/interior/techshop) "Tp" = ( /obj/effect/landmark/npcbeacon, /obj/effect/turf_decal/bordur/corner, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"Tq" = ( -/obj/effect/gibspawner/human, -/turf/open/floor/plating/toilet, -/area/vtm/interior/shop) -"Tw" = ( -/obj/machinery/fax/anarch, +"Ty" = ( +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -3; + pixel_y = 9 + }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) "TL" = ( @@ -1821,10 +2461,11 @@ /obj/item/gun/ballistic/automatic/pistol/darkpack/deagle, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) -"TO" = ( -/obj/machinery/recycler/deathtrap, -/turf/open/floor/plating/toilet, -/area/vtm/interior/shop) +"TU" = ( +/obj/machinery/smartfridge/drying/rack, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "TY" = ( /obj/structure/rack/food{ dir = 4; @@ -1832,14 +2473,17 @@ }, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) -"Uc" = ( +"Uq" = ( +/obj/machinery/fax/admin/anarch, /obj/structure/table/wood, -/obj/item/vtm_artifact/daimonori, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) -"Ul" = ( -/turf/closed/wall/vampwall/rich/old, -/area/vtm/sewer) +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"Ut" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/misc/dirt, +/area/vtm/outside/supply) "Uu" = ( /obj/structure/table, /obj/item/ammo_box/magazine/darkpack9mp5, @@ -1848,57 +2492,39 @@ /obj/item/gun/ballistic/automatic/darkpack/mp5, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) -"Uw" = ( -/obj/structure/table, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/obj/item/stack/dollar/hundred, -/turf/open/floor/plating/sidewalk/poor, -/area/vtm/outside/supply) -"UG" = ( +"UC" = ( +/obj/item/paper_bin, +/obj/item/pen/fourcolor, /obj/structure/table/wood, -/obj/structure/retail/hardware_store, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) +"UH" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) "UJ" = ( /obj/structure/closet/crate/dumpster, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"UK" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/plating/parquetry/old, -/area/vtm/interior/shop) -"UQ" = ( -/obj/structure/vampdoor/wood/old/salubri{ +"UL" = ( +/obj/structure/railing/corner/end/flip{ dir = 4 }, -/turf/open/floor/plating/parquetry/old, -/area/vtm/interior/shop) +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) +"UN" = ( +/obj/structure/closet/crate/wooden/communitygardens/tools, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "Va" = ( /obj/machinery/computer/order_console/mining/restricted/hospital, /obj/structure/table/reinforced, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/platform/lowwall/brick, +/turf/open/floor/plating/rough, /area/vtm/interior/shop) "Vg" = ( /obj/structure/table, @@ -1913,12 +2539,18 @@ }, /turf/open/floor/plating/sidewalk/rich, /area/vtm/outside/pacificheights) +"Vr" = ( +/obj/machinery/fax/tremere, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) "Vu" = ( /obj/structure/closet/cardboard, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) "Vv" = ( /obj/machinery/griddle, +/obj/structure/sign/city/store/bubway/directional/north, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) "VD" = ( @@ -1928,6 +2560,11 @@ /obj/item/vamp/keys/nps, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/pacificheights) +"VH" = ( +/obj/structure/table/wood, +/obj/item/vtm_artifact/galdjum, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) "VJ" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ @@ -1937,10 +2574,19 @@ }, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"VK" = ( -/obj/structure/cargo_take, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) +"VL" = ( +/obj/machinery/button/elevator/directional/north{ + id = "DebugElevator"; + pixel_y = 35; + pixel_x = 9 + }, +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "DebugElevator" + }, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "VP" = ( /obj/machinery/light/directional/north, /turf/open/floor/plating/concrete, @@ -1951,6 +2597,9 @@ }, /turf/open/floor/plating/asphalt, /area/vtm/outside/pacificheights) +"Wa" = ( +/turf/open/misc/dirt, +/area/vtm/outside/supply) "We" = ( /obj/effect/turf_decal/bordur{ dir = 4 @@ -1966,26 +2615,33 @@ /obj/machinery/light/directional/west, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) -"Wn" = ( -/obj/structure/roadblock{ - dir = 4 - }, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) "Ws" = ( /obj/structure/table, /obj/vampire_computer, /turf/open/floor/plating/rough, /area/vtm/interior/techshop) "Wy" = ( -/obj/structure/table, /obj/structure/retail/grocery_store, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/table/countertop/green, +/turf/open/floor/plating/concrete, /area/vtm/interior/shop) "Wz" = ( /obj/structure/sink/directional/east, /turf/open/floor/plating/rough, /area/vtm/interior/clinic) +"WB" = ( +/obj/structure/table/wood, +/obj/item/vtm_artifact/mummywrap_fetish, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"WD" = ( +/obj/structure/table/reinforced, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) +"WJ" = ( +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/outside/pacificheights) "WR" = ( /obj/structure/lamppost/one, /turf/open/misc/beach/vamp, @@ -1996,6 +2652,19 @@ }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) +"Xc" = ( +/obj/machinery/button/elevator/directional/north{ + id = "DebugElevator3"; + pixel_y = 35; + pixel_x = 9 + }, +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "DebugElevator3" + }, +/turf/open/misc/grass/random/grass, +/area/vtm/outside/pacificheights) "Xf" = ( /obj/structure/table, /obj/item/ammo_box/magazine/m50, @@ -2008,14 +2677,26 @@ /obj/machinery/bookbinder, /turf/open/floor/plating/concrete, /area/vtm/interior/shop) +"Xw" = ( +/obj/machinery/recycler/deathtrap, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) "Xz" = ( /obj/effect/decal/pallet, -/obj/item/ammo_box/vampire/c556/silver, -/obj/item/ammo_box/vampire/c556/incendiary, -/obj/item/ammo_box/vampire/c556, -/obj/item/ammo_box/vampire/c545, +/obj/item/ammo_box/darkpack/c556/silver, +/obj/item/ammo_box/darkpack/c556/incendiary, +/obj/item/ammo_box/darkpack/c556, +/obj/item/ammo_box/darkpack/c545, /turf/open/floor/plating/rough, /area/vtm/interior/anarch) +"XD" = ( +/obj/machinery/door/airlock/elevator/right{ + dir = 4; + pixel_y = 22; + transport_linked_id = "DebugElevator4" + }, +/turf/open/floor/iron/smooth_large, +/area/vtm/outside/pacificheights) "XE" = ( /obj/structure/fence/door, /turf/open/misc/beach/vamp, @@ -2027,13 +2708,10 @@ "XM" = ( /turf/closed/wall/vampwall/junk/alt, /area/vtm/outside/pacificheights) -"XU" = ( -/obj/structure/railing, -/obj/structure/ladder/manhole/up{ - connect_down = 1; - connect_up = 0 - }, -/turf/open/floor/plating/vampcanal, +"XP" = ( +/obj/machinery/fax/admin/police, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) "XW" = ( /obj/effect/turf_decal/bordur, @@ -2049,11 +2727,11 @@ /mob/living/carbon/human/npc/incel, /turf/open/misc/beach/vamp, /area/vtm/outside/pacificheights) -"Yr" = ( -/obj/effect/decal/cleanable/trash, -/obj/effect/spawner/random/occult/artifact, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"Yh" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/sidewalk, +/area/vtm/outside/pacificheights) "Ys" = ( /turf/open/openspace, /area/vtm/outside/pacificheights) @@ -2063,13 +2741,17 @@ }, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/supply) -"YF" = ( -/obj/item/clothing/head/cone, -/turf/open/misc/dirt/vamp, -/area/vtm/outside/supply) +"YB" = ( +/obj/machinery/fax/admin/endron, +/obj/structure/table/wood, +/turf/open/misc/beach/vamp, +/area/vtm/outside/pacificheights) +"YH" = ( +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) "YJ" = ( -/obj/structure/table, -/turf/closed/wall/vampwall/brick/low, +/obj/structure/table/countertop/green, +/turf/open/floor/plating/concrete, /area/vtm/interior/shop) "YL" = ( /obj/effect/turf_decal/bordur{ @@ -2078,33 +2760,41 @@ /obj/structure/roadsign/speedlimit, /turf/open/floor/plating/sidewalk/poor, /area/vtm/outside/pacificheights) -"YW" = ( -/obj/structure/table/wood, -/obj/item/vtm_artifact/odious_chalice, -/turf/open/floor/plating/parquetry/old, -/area/vtm/sewer) +"YY" = ( +/obj/structure/table/reinforced, +/obj/item/ritual_tome/arcane, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/sewer) "Zc" = ( /obj/effect/turf_decal/bordur{ dir = 8 }, /turf/open/floor/plating/sidewalk, /area/vtm/outside/pacificheights) -"Zf" = ( -/obj/machinery/fax/camarilla, -/turf/open/misc/beach/vamp, +"Zs" = ( +/turf/closed/wall/vampwall/brick_old, +/area/vtm/outside/pacificheights) +"Zz" = ( +/turf/open/misc/grass/random/grass, /area/vtm/outside/pacificheights) -"Zw" = ( +"ZS" = ( /obj/structure/table, -/obj/item/vampire_flamethrower, -/turf/open/floor/plating/sidewalk, -/area/vtm/outside/pacificheights) -"ZT" = ( -/obj/structure/vampdoor/graveyard{ - dir = 4; - locked = 0 +/obj/item/gun/ballistic/shotgun/toy/crossbow/vampire{ + pixel_y = 16 }, -/turf/open/floor/plating/concrete, -/area/vtm/interior/shop) +/obj/item/molotov{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/item/molotov{ + pixel_x = -9 + }, +/obj/item/molotov, +/obj/item/lighter/skull{ + pixel_x = 8 + }, +/turf/open/floor/plating/rough, +/area/vtm/interior/anarch) "ZU" = ( /turf/closed/wall/vampwall/rich/old, /area/vtm/interior/techshop) @@ -2179,38 +2869,38 @@ GF "} (2,1,1) = {" GF -Ul -Ul -Ul -Ul -Ul -Ul -se -se -se -se -se -se -se -se -se -se -se -se -GF -se +Ef +Ef +Ef +Ef +Ef +Ef +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +GF +Ny rB rB rB -se +Ny GF -se -se -se -se -se -se -se +Ny +Ny +Ny +Ny +Ny +Ny +Ny Rj Rj Rj @@ -2247,35 +2937,35 @@ GF "} (3,1,1) = {" GF -Ul -SF -Uc -bs -Ps -Ul +Ef +qY +LG +va +zM +Ef mw ok NR NR Ff NR -fn +JR ok rL Vu Vu -se -se -se +Ny +Ny +Ny rB rB rB -se -se -se -NR -NR +Ny +Ny +Ny NR +Vr +dP NR NR NR @@ -2315,14 +3005,14 @@ GF "} (4,1,1) = {" GF -Ul -Sw -Jv -Yr -ch -Ul +Ef +QD +iJ +lM +VH +Ef FG -NR +aM wO NR NR @@ -2340,10 +3030,10 @@ VQ ik Fs NR +gA NR -NR -NR -NR +IZ +MF NR NR NR @@ -2383,13 +3073,13 @@ GF "} (5,1,1) = {" GF -Ul -YW -jt -lP -Mv -Ul -NR +Ef +wr +QN +hH +Kz +Ef +Sj ok gb Bf @@ -2408,10 +3098,10 @@ VQ ik sm NR +Uq NR -NR -NR -NR +Ds +Rn NR NR NR @@ -2451,12 +3141,12 @@ GF "} (6,1,1) = {" GF -Ul -rI -pH -Jv -BH -Ul +Ef +zM +RP +iJ +lU +Ef JH JH JH @@ -2476,10 +3166,10 @@ VQ ik Fs NR +bK NR -NR -NR -NR +rs +Tk NR NR NR @@ -2519,12 +3209,12 @@ GF "} (7,1,1) = {" GF -Ul -sx -Jv -jt -bE -Ul +Ef +Nb +iJ +QN +WB +Ef KB Wl OZ @@ -2544,10 +3234,10 @@ VQ ik Fs NR +YB NR -NR -NR -NR +DT +jd NR NR NR @@ -2587,12 +3277,12 @@ GF "} (8,1,1) = {" GF -Ul -AX -Jv -Jv -gn -zc +Ef +zF +iJ +iJ +zd +OP PO PO PO @@ -2612,10 +3302,10 @@ VQ zk Fs NR +LY NR -NR -NR -NR +fc +SW NR NR NR @@ -2655,12 +3345,12 @@ GF "} (9,1,1) = {" GF -Ul -sg -PX -gn -gn -zc +Ef +WD +YY +zd +zd +OP PO PO PO @@ -2670,7 +3360,7 @@ PO PO nm JH -NR +HE NR NR NR @@ -2680,9 +3370,9 @@ VQ ik fd NR +XP NR -NR -NR +mZ NR NR NR @@ -2723,22 +3413,22 @@ GF "} (10,1,1) = {" GF -Ul -Ul -Ul -Ul -Ul -Ul +Ef +Ef +Ef +Ef +Ef +Ef Uu Ca xU OD -Of +ZS hu -PO +FM Xz JH -mb +SP NR NR NR @@ -2748,7 +3438,7 @@ VQ ik Fs NR -NR +UC NR NR NR @@ -2865,18 +3555,18 @@ pN pN Jo EL +oF +ho Id Id Id Id -Id -Id -Id +yw Id Ev lk -oK -wD +NR +NR NR bp ik @@ -2933,7 +3623,7 @@ Tb pN Od EL -Id +bB Id Id Id @@ -2943,8 +3633,8 @@ Id Id Ev lk -oK -wD +NR +NR NR cj rW @@ -2952,9 +3642,9 @@ rW rW Fs NR -IX NR -em +NR +NR NR NR NR @@ -3001,7 +3691,7 @@ pN pN Df SK -eg +CB Id Id Id @@ -3011,8 +3701,8 @@ Id Id ZU je -oK -wD +NR +kb NR Bq tF @@ -3020,9 +3710,9 @@ VQ ik Fs NR -AT NR -Tw +NR +NR NR NR NR @@ -3064,11 +3754,11 @@ GF (15,1,1) = {" GF SK +uD pN pN pN -pN -pN +uX Id Id Id @@ -3079,8 +3769,8 @@ Id Id Ev lk -oK -wD +NR +PL NR cj ik @@ -3088,9 +3778,9 @@ VQ ik Fs NR -aO NR -Zf +NR +NR NR NR NR @@ -3147,8 +3837,8 @@ Id Id Ev lk -wW -wD +ru +kb NR cj ik @@ -3156,9 +3846,9 @@ VQ ik YL NR -OX -Ln -ts +NR +NR +NR NR NR NR @@ -3215,8 +3905,8 @@ Id Id Ev lk -oK -wD +NR +PL NR cj ik @@ -3224,9 +3914,9 @@ VQ ik Fs NR -AC NR -EX +NR +NR NR NR NR @@ -3283,8 +3973,8 @@ Id Id ZU je -oK -wD +NR +kb NR cj ik @@ -3292,9 +3982,9 @@ VQ tW VD NR -FD NR -Rb +NR +NR NR NR NR @@ -3345,14 +4035,14 @@ Id Id Id Id -Id -Id -Id +Ob +MJ +cw Id Ev lk -oK -wD +NR +NR NR cj ik @@ -3360,9 +4050,9 @@ VQ ik Fs NR -Po NR -JE +NR +NR NR NR NR @@ -3410,17 +4100,17 @@ pN pN pN Id +ho Id Id -Id -Id -Id -Id +La +GO +Tm Id Ev lk -oK -wD +NR +NR NR cj ik @@ -3481,9 +4171,9 @@ Id sw Id Id -Id -MJ -GO +ih +Ws +ut Id Ev lk @@ -3549,9 +4239,9 @@ ZU ZU rN Id -zT -Ws -Sg +Nz +SY +iR Id ZU uJ @@ -3617,8 +4307,8 @@ Id ZU rN Id -zT -SY +Id +Id sw BQ ZU @@ -3679,12 +4369,12 @@ SK SK SK SK -JK +NQ SK ZU ZU ZU -Ao +Mf ZU ZU ZU @@ -3745,7 +4435,7 @@ GF GF MS Bt -Lk +jw XE NR NR @@ -3816,9 +4506,9 @@ UJ fn iD iD -mj +fo iD -ET +qv iD iD NR @@ -3829,7 +4519,7 @@ Fg Fg Fg Fg -ap +NR cj ik VQ @@ -3881,7 +4571,7 @@ GF GF MS iA -ok +Ag iD AE oW @@ -3897,7 +4587,7 @@ gF id gF Fg -ap +NR cj ik VQ @@ -3965,7 +4655,7 @@ gF On gF Fg -ap +NR OH OB VQ @@ -4016,7 +4706,7 @@ GF (29,1,1) = {" GF MS -ht +zA NR iD bo @@ -4027,13 +4717,13 @@ Kt iD NR Fg -YJ +sY Ip Fg xH hz Fg -ap +NR cj ik VQ @@ -4085,7 +4775,7 @@ GF GF MS JP -NR +Qe XE NR NR @@ -4094,7 +4784,7 @@ NR NR NR NR -NR +Jh NR NR NR @@ -4152,10 +4842,10 @@ GF (31,1,1) = {" GF kS -ZT +PR kS kS -vm +NR NR NR NR @@ -4229,7 +4919,7 @@ NR NR NR NR -NR +Oq NR NR NR @@ -4304,7 +4994,7 @@ Fg mm GH Fg -tO +NR NR cj ik @@ -4319,7 +5009,7 @@ yk yk yk yk -qT +Wa Rj Rj Rj @@ -4371,7 +5061,7 @@ oW Fg zv oW -GS +LP NR NR cT @@ -4386,8 +5076,8 @@ yi oM oM oM -gI -qT +Be +Wa Rj Rj Rj @@ -4427,7 +5117,7 @@ Fg ON oW Fg -NR +eg NR NR Wy @@ -4440,14 +5130,14 @@ oW oW LW Fg -tr +NR NR cj ik VQ ik Fs -gI +Be oM oM oM @@ -4455,7 +5145,7 @@ oM oM oM yk -qT +Wa Rj Rj Rj @@ -4508,7 +5198,7 @@ kS kS kS Fg -Kj +NR NR Dh en @@ -4523,7 +5213,7 @@ jp yk yk yk -qT +Wa Rj Rj Rj @@ -4571,27 +5261,27 @@ sy eJ DN kS -DF -yE -Tq -ee +bj +Ju +Gj +YH Fg -qr +NR NR cj ik VQ ik Fs -LR -LR -lU -DM -qT -Db -DM -qT -qT +Em +Em +NX +Lb +Wa +EE +Lb +Wa +Wa Rj Rj Rj @@ -4631,19 +5321,19 @@ Hp GM DV Fg -sX NR NR -YJ +NR +KW bL BL DN kS -Tq -pt -TO -ee -Cr +tO +vD +Xw +YH +Bp NR NR cj @@ -4651,15 +5341,15 @@ ik VQ ik Fs -qT -qT -qT -DM -fi -qT -DM -GB -qT +ze +Wa +Wa +Lb +sR +Wa +Lb +mn +Wa Rj Rj Rj @@ -4719,15 +5409,15 @@ FB VQ ik Fs -VK -VK -qT -DM -GB -qT -ff -fi -qT +hK +hK +Wa +Lb +mn +Wa +FT +sR +Wa Rj Rj Rj @@ -4764,8 +5454,8 @@ GF (40,1,1) = {" GF jW -oU -wm +oV +fI zx NR NR @@ -4789,13 +5479,13 @@ ik Fs qt FO -qT -ff -qT -qT -DM -fi -qT +Wa +FT +Wa +Wa +Lb +sR +Wa Rj Rj Rj @@ -4832,8 +5522,8 @@ GF (41,1,1) = {" GF jW -nh -Gz +xc +eU Pg NR NR @@ -4856,14 +5546,14 @@ VQ ik Fs Yz -Uw -qT -DM -GB -qT -DM -GB -qT +Kr +Wa +Lb +mn +Wa +Lb +mn +Wa Rj Rj Rj @@ -4900,8 +5590,8 @@ GF (42,1,1) = {" GF jW -oU -yt +oV +gN zx NR NR @@ -4924,14 +5614,14 @@ VQ ik Fs lN -Uw -qT -DM -GB -qT -DM -fi -qT +Kr +Wa +Lb +mn +Wa +Lb +sR +Wa Rj Rj Rj @@ -4968,8 +5658,8 @@ GF (43,1,1) = {" GF jW -yt -yt +gN +gN kS zx zx @@ -4993,14 +5683,14 @@ ik Fs lN lN -qT -DM -qT -qT -ff -qT -qT -qT +Wa +Lb +Wa +Wa +FT +Wa +Wa +Wa Rj Rj Rj @@ -5036,11 +5726,11 @@ GF (44,1,1) = {" GF jW -yt -yt -yt -nh -nh +gN +gN +gN +xc +xc kS NR OO @@ -5048,10 +5738,10 @@ VJ Nd FH Nd -ig -UG -GE -ig +NR +nk +Rg +sU NR NR cj @@ -5059,16 +5749,16 @@ ik VQ ik Fs -qT -qT -qT -DM -qT -qT -DM -qT -qT -qT +Wa +Wa +Wa +Lb +Wa +Wa +Lb +Wa +Wa +Wa Rj Rj Rj @@ -5104,11 +5794,11 @@ GF (45,1,1) = {" GF jW -hA -yt -yt -UK -yt +Pa +gN +gN +JB +gN kS NR Nd @@ -5116,10 +5806,10 @@ NR NR NR NR -ig -ig -Cd -ig +NR +ln +tP +Hc NR NR cj @@ -5127,16 +5817,16 @@ ik VQ ik Fs -qT -qT -qT -DM -qT -qT -DM -qT -qT -qT +Wa +Wa +Wa +Lb +Wa +Wa +Lb +Wa +Wa +Wa Rj Rj Rj @@ -5173,7 +5863,7 @@ GF GF kS kS -UQ +Ew kS kS kS @@ -5184,10 +5874,10 @@ NR NR NR GL -ig -ig -ig -ig +NR +sg +Ql +Ty NR NR cj @@ -5195,16 +5885,16 @@ ik VQ ik Fs -qT -YF -Wn -DM -Wn -qT -DM -qT -qT -qT +Wa +dN +Lj +Lb +Lj +Wa +Lb +Wa +Wa +Wa Rj Rj Rj @@ -5239,13 +5929,13 @@ GF "} (47,1,1) = {" GF -sb -NR -NR -iQ -NR -ES -kM +Zs +Oi +Oi +iK +Oi +PC +ef NR FC NR @@ -5263,16 +5953,16 @@ ik VQ ik Fs -qT -qT -EF -Is -bD -qT -ff -GB -qT -qT +Wa +Wa +Ut +QZ +lY +Wa +FT +mn +Wa +Wa Rj Rj Rj @@ -5307,13 +5997,13 @@ GF "} (48,1,1) = {" GF -sb -NR -NR -iQ -iQ -iQ -NR +Zs +Oi +Oi +iK +iK +iK +Oi NR NR NR @@ -5331,16 +6021,16 @@ ik VQ HJ Fs -qT -qT -jf -DM -Re -qT -DM -qT -qT -qT +Wa +Wa +Mn +Lb +kj +Wa +Lb +Wa +Wa +Wa Rj Rj Rj @@ -5375,14 +6065,14 @@ GF "} (49,1,1) = {" GF -sb -NR -NR -Nu -NR -Nu -NR -NR +Zs +Oi +Oi +cg +Oi +cg +Oi +Oi NR NR NR @@ -5399,16 +6089,16 @@ ik VQ ik Fs -qT -qT -jf -DM -Re -qT -DM -GB -qT -qT +Wa +Wa +Mn +Lb +kj +Wa +Lb +mn +Wa +Wa Rj Rj Rj @@ -5443,14 +6133,14 @@ GF "} (50,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR +Zs +Oi +Oi +Oi +Oi +Oi +Oi +Oi NR NR NR @@ -5467,17 +6157,17 @@ ik VQ ik Fs -qT -qT -jf -DM -Re -qT -DM -qT -qT -qT -qT +Wa +Wa +Mn +Lb +kj +Wa +Lb +Wa +Wa +Wa +Wa Rj Rj Rj @@ -5511,15 +6201,15 @@ GF "} (51,1,1) = {" GF -sb -NR -aW -NR -NR -NR -NR -NR -NR +Zs +Oi +Pr +Oi +Oi +Oi +Oi +Oi +Oi NR NR NR @@ -5535,17 +6225,17 @@ ik VQ ik Fs -qT -qT -jf -DM -Re -qT -DM -fi -qT -qT -qT +Wa +Wa +Mn +Lb +kj +Wa +Lb +sR +Wa +Wa +Wa Rj Rj Rj @@ -5579,15 +6269,15 @@ GF "} (52,1,1) = {" GF -sb -yc -iQ -NR -NR -NR -NR -NR -NR +Zs +DW +iK +Oi +Oi +Oi +Oi +Oi +Oi NR NR NR @@ -5603,17 +6293,17 @@ ik VQ ik Fs -qT -qT -tj -IO -pf -qT -DM -qT -qT -qT -qT +Wa +Wa +jK +wj +rM +Wa +Lb +Wa +Wa +Wa +Wa Rj Rj Rj @@ -5647,16 +6337,16 @@ GF "} (53,1,1) = {" GF -sb -NR -kM -NR -NR -NR -NR -NR -NR -NR +Zs +Oi +ef +Oi +Oi +Oi +Oi +Oi +Oi +Oi NR NR NR @@ -5671,17 +6361,17 @@ ik VQ ik Fs -qT -YF -qT -DM -qT -qT -DM -qT -qT -qT -qT +Wa +dN +Wa +Lb +Wa +Wa +Lb +Wa +Wa +Wa +Wa Rj Rj Rj @@ -5715,18 +6405,18 @@ GF "} (54,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Zs +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi NR NR NR @@ -5739,17 +6429,17 @@ rW rW rW Fs -qT -qT -qT -DM -qT -qT -DM -qT -qT -qT -qT +Wa +Wa +Wa +Lb +Wa +Wa +Lb +Wa +Wa +Wa +Wa Rj Rj Rj @@ -5783,19 +6473,19 @@ GF "} (55,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Zs +pg +pg +pg +Zs +Xc +Zz +oD +Zz +Zz +oD +oD +oD NR NR NR @@ -5807,17 +6497,17 @@ ik VQ ik Fs -qT -qT -qT -DM -qT -fi -DM -qT -qT -qT -qT +Wa +Wa +Wa +Lb +Wa +sR +Lb +Wa +Wa +Wa +Wa Rj Rj Rj @@ -5851,19 +6541,19 @@ GF "} (56,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Zs +Bw +Ti +WJ +qC +oD +oD +Zz +oD +oD +Zz +Zz +Zz NR NR NR @@ -5875,17 +6565,17 @@ ik VQ ik Fs -qT -qT -qT -DM -qT -fi -DM -qT -qT -qT -qT +Wa +Wa +Wa +Lb +Wa +sR +Lb +Wa +Wa +Wa +Wa Rj Rj Rj @@ -5919,19 +6609,19 @@ GF "} (57,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Zs +Le +WJ +WJ +qC +oD +oD +Oi +Zz +oD +Oi +Oi +Oi NR NR NR @@ -5943,17 +6633,17 @@ FB VQ ik Fs -qT -qT -qT -DM -qT -qT -ff -qT -qT -qT -qT +Wa +Wa +Wa +Lb +Wa +Wa +FT +Wa +Wa +Wa +Wa Rj Rj Rj @@ -5987,20 +6677,20 @@ GF "} (58,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Zs +Zs +Zs +Zs +Zs +oD +Zz +Oi +oD +oD +Oi +Oi +Oi +Oi NR NR NR @@ -6011,16 +6701,16 @@ ik VQ ik Fs -qT -qT -qT -DM -qT -qT -DM -qT -qT -qT +Wa +Wa +Wa +Lb +Wa +Wa +Lb +Wa +Wa +Wa Rj Rj Rj @@ -6055,23 +6745,23 @@ GF "} (59,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Zs +Ne +WJ +IA +Zs +Nm +Zz +Oi +oD +oD +Oi +Oi +Oi +Oi +Oi +Oi +Oi NR NR Bq @@ -6079,17 +6769,16 @@ ik VQ ik Fs -qT -qT -qT -DM -qT -qT -DM -fi -qT -qT -Rj +Wa +Wa +Wa +Lb +Wa +Wa +Lb +sR +Wa +Wa Rj Rj Rj @@ -6119,44 +6808,45 @@ Rj Rj Rj Rj -GF -"} -(60,1,1) = {" -GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Rj +GF +"} +(60,1,1) = {" +GF +Zs +QR +Bs +KR +co +oD +oD +Oi +oD +oD +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi cj ik VQ ik Fs -qT -qT -qT -DM -qT -qT -DM -GB -qT -qT +Wa +Wa +Wa +Lb +Wa +Wa +Lb +mn +Wa +Wa Rj Rj Rj @@ -6191,40 +6881,40 @@ GF "} (61,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Zs +UL +WJ +Hj +qc +oD +oD +Oi +oD +Zz +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi Ig ik VQ ik Fs -qT -qT -qT -DM -qT -qT -ff -GB -qT -qT +Wa +Wa +Wa +Lb +Wa +Wa +FT +mn +Wa +Wa Rj Rj Rj @@ -6259,40 +6949,40 @@ GF "} (62,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Zs +jD +WJ +UH +Zs +Zz +oD +Zs +yW +oD +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi cj kc Cz kc sm -qT -qT -qT -DM -qT -qT -DM -GB -qT -qT +Wa +Wa +Wa +Lb +Wa +Wa +Lb +mn +Wa +Wa Rj Rj Rj @@ -6327,40 +7017,40 @@ GF "} (63,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR +Zs +Zs +Zs +Zs +Zs +jR +oD +Zs +XD +Jf +Zs +Oi +Oi +Oi +Oi +Oi +Oi +Oi +Oi cj ik VQ ik Fs -qT -qT -qT -DM -qT -qT -DM -qT -qT -qT +Wa +Wa +Wa +Lb +Wa +Wa +Lb +Wa +Wa +Wa Rj Rj Rj @@ -6395,40 +7085,40 @@ GF "} (64,1,1) = {" GF -sb -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -se -se -se +Zs +hT +qE +WJ +ug +oD +oD +Zs +Pz +WJ +Zs +Oi +Oi +Oi +Oi +Oi +Oi +Ny +Ny +Ny rB rB rB -se -se -se -qT -DM -qT -qT -DM -qT -qT -qT +Ny +Ny +Ny +Wa +Lb +Wa +Wa +Lb +Wa +Wa +Wa Rj Rj Rj @@ -6463,40 +7153,40 @@ GF "} (65,1,1) = {" GF -se -se -se -se -se -se -se -se -se -se -se -se -se -se -se -se -se -se -GF -se +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +GF +Ny rB rB rB -se +Ny GF -se +Ny rB rB rB -se -se -se -qT -qT +Ny +Ny +Ny +Wa +Wa Rj Rj Rj @@ -6682,24 +7372,24 @@ MS MS MS MS -MS -sb -sb -sb -sb -sb -sb -sb -sb -sb +GN +Kk +Kk +Kk +Kk +Kk +Kk +Kk +Zs +Zs qV qV qV qV qV -sb -sb -sb +Zs +Zs +Zs Ys Ys Ys @@ -6737,12 +7427,12 @@ GJ (3,1,2) = {" GJ MS -iH +tr Gw iH iH MS -fS +Mm Ys Ys Ys @@ -6750,14 +7440,14 @@ Ys Ys Ys Ys -MS -oJ -oJ -oJ -oJ -oJ -oJ -sb +GN +lX +lX +lX +lX +lX +lX +Kk qz XJ FB @@ -6767,7 +7457,7 @@ ik HJ KU Ct -sb +Zs Ys Ys Ys @@ -6805,12 +7495,12 @@ GJ (4,1,2) = {" GJ MS -iH +uP EN Hg iH MS -nY +tY Ys Ys Ys @@ -6818,14 +7508,14 @@ Ys Ys Ys Ys -MS -oJ -oJ -oJ -oJ -oJ -oJ -sb +GN +lX +lX +lX +lX +lX +lX +Kk rF XW ik @@ -6835,7 +7525,7 @@ ik ik KU rF -sb +Zs Ys Ys Ys @@ -6873,12 +7563,12 @@ GJ (5,1,2) = {" GJ MS -iH +Jq Py bh iH yK -nY +tY Ys Ys Ys @@ -6886,14 +7576,14 @@ Ys Ys Ys Ys -MS -oJ -oJ -oJ -oJ -oJ -oJ -sb +GN +lX +lX +lX +lX +lX +lX +Kk eQ XJ ik @@ -6903,7 +7593,7 @@ ik ik KU eQ -sb +Zs Ys Ys Ys @@ -6946,8 +7636,7 @@ MS MS MS MS -vz -MS +SM MS MS MS @@ -6955,13 +7644,14 @@ MS MS MS MS -oJ -oJ -oJ -oJ -oJ -oJ -sb +GN +lX +lX +lX +lX +lX +lX +Kk eQ XJ ik @@ -6971,7 +7661,7 @@ ik ik KU eQ -sb +Zs Ys Ys Ys @@ -7014,22 +7704,22 @@ eQ eQ eQ MS -nY -Nx +tY +BZ Ys Ys Ys Ys Ys -Ys -MS -oJ -oJ -oJ -oJ -oJ -oJ -sb +di +GN +lX +lX +lX +lX +lX +lX +Kk eQ XJ ik @@ -7039,7 +7729,7 @@ ik ik KU eQ -sb +Zs Ys Ys Ys @@ -7082,22 +7772,22 @@ eQ eQ eQ MS -nY -Nx +di +dc Ys Ys Ys Ys Ys -Ys -MS -oJ -oJ -oJ -oJ -oJ -oJ -sb +di +GN +lX +lX +lX +lX +lX +lX +Kk eQ XJ ik @@ -7107,7 +7797,7 @@ ik ik KU eQ -sb +Zs Ys Ys Ys @@ -7150,22 +7840,22 @@ eQ eQ eQ MS -vJ -Nx +pD +dc Ys Ys Ys Ys Ys -Ys -MS -oJ -oJ -oJ -sb -oJ -oJ -sb +di +GN +lX +lX +lX +Kk +lX +lX +Kk eQ tb rW @@ -7217,23 +7907,23 @@ eQ eQ eQ eQ -MS -nY -Nx -Ys +eQ +di +dc Ys Ys Ys Ys Ys -MS -oJ -oJ -oJ -sb -oJ -oJ -sb +di +GN +lX +lX +lX +Kk +lX +lX +Kk qz XJ ik @@ -7281,27 +7971,27 @@ GJ (11,1,2) = {" GJ MS -eQ -eQ -eQ -eQ MS -nY -Nx -Ys +MS +MS +MS +MS +di +dc Ys Ys Ys Ys Ys -MS -oJ -oJ -oJ -sb -oJ -oJ -sb +di +GN +lX +lX +lX +Kk +lX +lX +Kk eQ XJ ik @@ -7349,27 +8039,27 @@ GJ (12,1,2) = {" GJ MS -eQ -eQ -eQ -eQ +ax +sZ +sZ +vW MS -nY -Nx +di +dc Ys Ys Ys Ys Ys -Ys -MS -oJ -oJ -oJ -sb -sb -sb -sb +di +GN +lX +lX +lX +Kk +Kk +Kk +Kk eQ XJ ik @@ -7417,27 +8107,27 @@ GJ (13,1,2) = {" GJ MS +sQ eQ eQ -eQ -eQ +gl MS -nY -Nx +tY +BZ Ys Ys Ys Ys Ys -Ys -MS -oJ -oJ -oJ -oJ -oJ -oJ -cj +di +GN +lX +lX +lX +lX +lX +lX +pV eQ tb rW @@ -7485,27 +8175,27 @@ GJ (14,1,2) = {" GJ MS +sQ eQ eQ -eQ -eQ +gl MS -nY -Nx -Ys -Ys -Ys +tY +dU +SL +JZ Ys Ys Ys -eR -oJ -oJ -oJ -oJ -oJ -oJ -cj +di +LU +lX +lX +lX +lX +lX +lX +pV aN XJ ik @@ -7553,27 +8243,27 @@ GJ (15,1,2) = {" GJ MS +Yh eQ eQ -eQ -eQ +dL MS -vJ -nY -vn -by +OQ +BZ Ys Ys Ys Ys -eR -oJ -oJ -oJ -oJ -oJ -oJ -cj +Ys +di +LU +lX +lX +lX +lX +lX +lX +pV eQ XJ ik @@ -7621,27 +8311,27 @@ GJ (16,1,2) = {" GJ MS +sQ eQ eQ -eQ -eQ +iZ MS -nY -Nx -Ys +di +dc Ys Ys Ys Ys Ys -MS -oJ -oJ -oJ -md -md -md -md +di +GN +lX +lX +lX +ca +ca +ca +ca eQ XJ ik @@ -7689,27 +8379,27 @@ GJ (17,1,2) = {" GJ MS +sQ eQ eQ -eQ -eQ +iZ MS -nY -Nx -Ys +di +dc Ys Ys Ys Ys Ys -MS -oJ -oJ -oJ -md -oJ -oJ -md +di +GN +lX +lX +lX +ca +pU +fV +ca qz XJ ik @@ -7757,27 +8447,27 @@ GJ (18,1,2) = {" GJ MS +rO eQ eQ -eQ -eQ +oi MS -nY -XU -Ys +di +Cj Ys Ys Ys Ys Ys -MS -oJ -oJ -oJ -oJ -oJ -oJ -md +di +GN +lX +lX +lX +lX +lX +lX +ca eQ XJ ik @@ -7825,27 +8515,27 @@ GJ (19,1,2) = {" GJ MS +rO eQ eQ -eQ -eQ +oi MS -nY -Nx -Ys +di +dc Ys Ys Ys Ys Ys -MS -oJ -oJ -oJ -oJ -oJ -oJ -md +di +GN +lX +lX +lX +lX +fZ +lX +ca eQ XJ FB @@ -7893,27 +8583,27 @@ GJ (20,1,2) = {" GJ MS +NK eQ eQ -eQ -eQ +UN MS -nY -Nx -Ys +di +dc Ys Ys Ys Ys Ys -eR -oJ -oJ -oJ -oJ -oJ -oJ -md +di +LU +lX +lX +lX +lX +lX +lX +ca eQ XJ ik @@ -7961,29 +8651,29 @@ GJ (21,1,2) = {" GJ MS +TU eQ eQ -eQ -eQ +UN MS -vJ -Nx -Ys +OQ +BZ Ys Ys Ys Ys Ys -eR -oJ -oJ -oJ -md -oJ -oJ -md +di +LU +lX +lX +lX +ca +fV +pU +ca eQ -XJ +Kc ik ik VQ @@ -8029,27 +8719,27 @@ GJ (22,1,2) = {" GJ MS +OV eQ eQ eQ eQ -eQ -nY -nY -Ys +tY +tY Ys Ys Ys Ys Ys -MS -oJ -oJ -oJ -md -md -md -md +di +GN +lX +lX +lX +ca +ca +ca +ca eQ XJ ik @@ -8097,25 +8787,25 @@ GJ (23,1,2) = {" GJ MS +Mz eQ eQ eQ eQ -eQ -nY -nY +tY +tY Ys Ys Ys Ys Ys -Ys -MS -oJ -oJ -oJ -md -md +di +GN +lX +lX +lX +ca +ca eQ eQ eQ @@ -8165,25 +8855,25 @@ GJ (24,1,2) = {" GJ MS +nw +PP MS MS MS +SM +SM MS MS -vz -vz -MS -MS -sb -sb -sb -sb -sb -MH -QM -QM -md -md +Zs +Zs +Zs +Zs +Kk +Mg +SJ +SJ +ca +ca eQ eQ XY @@ -8233,15 +8923,15 @@ GJ (25,1,2) = {" GJ MS -eQ -eQ +KF +NP NP Lw Vg eQ eQ kn -Zw +jj eQ oX QS @@ -8720,7 +9410,7 @@ ik ik ik ik -ik +HQ ik gs eR @@ -10273,11 +10963,11 @@ GJ (55,1,2) = {" GJ MS -eQ -eQ -eQ -eQ -eQ +Jk +Jk +Jk +MS +Dx eQ eQ eQ @@ -10341,10 +11031,10 @@ GJ (56,1,2) = {" GJ MS -eQ -eQ -eQ -eQ +Ys +Ys +Ys +op eQ eQ eQ @@ -10409,10 +11099,10 @@ GJ (57,1,2) = {" GJ MS -eQ -eQ -eQ -eQ +Ys +Ys +Ys +op eQ eQ eQ @@ -10477,10 +11167,10 @@ GJ (58,1,2) = {" GJ MS -eQ -eQ -eQ -eQ +MS +MS +MS +MS eQ eQ eQ @@ -10545,11 +11235,11 @@ GJ (59,1,2) = {" GJ MS -eQ -eQ -eQ -eQ -eQ +Ys +Ys +Ys +MS +VL eQ eQ eQ @@ -10613,10 +11303,10 @@ GJ (60,1,2) = {" GJ MS -eQ -eQ -eQ -eQ +Ys +Ys +Ys +co eQ eQ eQ @@ -10681,10 +11371,10 @@ GJ (61,1,2) = {" GJ MS -eQ -eQ -eQ -eQ +Ys +Ys +Ys +qc eQ eQ eQ @@ -10749,15 +11439,15 @@ GJ (62,1,2) = {" GJ MS +Ys +Ys +Ys +MS eQ eQ +MS +hk eQ -eQ -eQ -eQ -eQ -eQ -Hd Hd XJ ik @@ -10817,16 +11507,16 @@ GJ (63,1,2) = {" GJ MS +MS +MS +MS +MS +xj eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -Hd -Hd +MS +XD +Jf +MS LX Zc Zc @@ -10885,16 +11575,16 @@ GJ (64,1,2) = {" GJ MS +Ys +Ys +Ys +ug eQ eQ -eQ -eQ -eQ -eQ -eQ -eQ -Hd -Hd +MS +Ys +Ys +MS eQ WZ eQ @@ -10962,20 +11652,20 @@ MS MS MS MS -sb -sb -sb -sb -sb -sb -sb -sb -sb -sb -sb -sb -sb -sb +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs qV qV qV diff --git a/_maps/map_files/Vampire/update_guide.md b/_maps/map_files/Vampire/update_guide.md new file mode 100644 index 000000000000..8298f8be7115 --- /dev/null +++ b/_maps/map_files/Vampire/update_guide.md @@ -0,0 +1,16 @@ +# Hello Downstream Mapper! +Are you updating an old map to darkpack? +Here is a little checklist of things to do. + +See `tools/UpdatePaths/readme.md` for how to run the updates paths. This will ensure all types are updated to TG. +It also tries its best to fix a few old mapping sins like layer edits, some of which are now linted against in TG. + +After you have ran the updates paths, You may find some stuff is still broken. Part of this is the cost for ensuring our updates path is non-volatile +Stuff like chairs, some floor decals, light fixtures, may need to be hand updated due to limitations + +There is also a whole host of new things you get to add to maps or changes to how you map. +* Navigate landmarks `/obj/effect/landmark/navigate_destination` to allow people to create paths to areas. +* Telecomms from https://github.com/DarkPack13/SecondCity/pull/432. Either use an `/obj/machinery/telecomms/allinone/public` or hand map telecomms where relevent +* Sprinklers from https://github.com/DarkPack13/SecondCity/pull/78. Areas are now only fire suppresed if you hand place sprinkers `/obj/machinery/sprinkler` +* Doors now have there varibles controlled via helpers, much more visable and reusable from https://github.com/DarkPack13/SecondCity/pull/318 `/obj/effect/mapping_helpers/door` +* A much more robust set of tools for generating random flora or forest. `/area/vtm/planetgeneration` is an area type that randomly generates forest like terrain but you can also use `/turf/open/misc/grass/random` or subtypesof `/obj/effect/spawner/random/flora` for finer control or places you want a specific area type. diff --git a/_maps/map_files/Vampire/westfield_mall.dmm b/_maps/map_files/Vampire/westfield_mall.dmm new file mode 100644 index 000000000000..0f43afdbd0a9 --- /dev/null +++ b/_maps/map_files/Vampire/westfield_mall.dmm @@ -0,0 +1,132401 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aab" = ( +/obj/structure/table/countertop/yellow, +/obj/structure/desk_bell{ + pixel_x = -8; + pixel_y = 9 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aac" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aad" = ( +/obj/structure/bed/dogbed, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aae" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aaf" = ( +/obj/structure/closet/crate/large, +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping6" + }, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aag" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aah" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"aai" = ( +/obj/effect/decal/kopatich, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aaj" = ( +/obj/effect/decal/cleanable/garbage, +/obj/effect/decal/graffiti/large, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"aak" = ( +/obj/machinery/atm{ + dir = 4; + pixel_x = -8 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/foodcourt) +"aal" = ( +/obj/effect/decal/carpet{ + icon_state = "greencarpet"; + pixel_y = 15; + pixel_x = 16 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aam" = ( +/obj/structure/closet, +/obj/item/clothing/under/vampire/bouncer, +/obj/item/clothing/under/vampire/bouncer, +/obj/item/clothing/glasses/vampire/sun, +/obj/item/clothing/suit/vampire/jacket, +/obj/item/clothing/suit/vampire/jacket, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"aan" = ( +/obj/item/bong, +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior/cave) +"aao" = ( +/obj/structure/punching_bag, +/obj/effect/decal/rugs, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aap" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/parking_lot) +"aaq" = ( +/obj/structure/chair/wood/darkpack, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aar" = ( +/obj/structure/table/wood, +/obj/item/pet_carrier{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aas" = ( +/turf/open/misc/grass/random/bushes, +/area/vtm/westfield_mall/forest) +"aat" = ( +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"aau" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = 3 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/clinic) +"aav" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aaw" = ( +/obj/structure/rack/clothing/rand{ + dir = 8 + }, +/obj/effect/decal/wallpaper/papers/random{ + pixel_x = 1; + pixel_y = 26 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aax" = ( +/obj/structure/table/reinforced, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/interior/shop) +"aay" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 10 + }, +/turf/open/floor/city/bacotell, +/area/vtm/interior/bianchiBank) +"aaz" = ( +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aaA" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/maintenance) +"aaB" = ( +/obj/structure/city_map, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aaC" = ( +/obj/structure/closet/cabinet, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aaD" = ( +/obj/structure/rack/clothing/rand, +/obj/fake_platform/dred/easyclimb, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/clothing_store) +"aaE" = ( +/obj/structure/table/reinforced, +/obj/structure/fluff/tv{ + icon_state = "tv_nature"; + pixel_y = 13 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aaF" = ( +/obj/structure/chair/sofa/corp/left, +/obj/machinery/light/directional/north, +/obj/effect/landmark/start/darkpack/anarch/sweeper, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aaG" = ( +/obj/structure/table/countertop, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"aaH" = ( +/obj/fusebox, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aaI" = ( +/obj/effect/decal/wallpaper/blue/low, +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/interior/police) +"aaJ" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 9 + }, +/obj/structure/sign/poster/city/blade/directional/north{ + pixel_x = -5; + pixel_y = 31 + }, +/obj/structure/sign/poster/city/bloodrayne/directional/north{ + pixel_x = 8; + pixel_y = 34 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aaK" = ( +/obj/machinery/jukebox/no_access, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aaL" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/machinery/light/prince/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aaM" = ( +/obj/structure/weightmachine, +/obj/effect/decal/rugs, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aaN" = ( +/obj/lombard, +/obj/structure/vampfence/rich, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"aaO" = ( +/obj/structure/table/wood, +/obj/structure/coclock, +/obj/machinery/fax/anarch, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/anarch) +"aaP" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/clinic) +"aaQ" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aaR" = ( +/obj/structure/vampdoor/simple, +/obj/effect/turf_decal/bordur, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aaS" = ( +/obj/structure/fire_barrel, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"aaT" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aaU" = ( +/obj/effect/turf_decal/bordur{ + dir = 5 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aaV" = ( +/turf/open/misc/dirt/rails, +/area/vtm/westfield_mall/interior/supply) +"aaW" = ( +/obj/structure/lamppost/four{ + pixel_y = 8 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/parking_lot) +"aaX" = ( +/obj/structure/table/wood, +/obj/item/melee/vamp/tire, +/obj/item/melee/vamp/tire{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"aaY" = ( +/obj/structure/stairs/wood{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aaZ" = ( +/obj/item/reagent_containers/blood/empty{ + pixel_x = -11; + pixel_y = 2 + }, +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/structure/table, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aba" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/sprinkler, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"abb" = ( +/obj/structure/bed, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"abc" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 1 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"abd" = ( +/obj/structure/platform/lowwall/brick_old, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"abe" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"abf" = ( +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/foodcourt) +"abg" = ( +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer) +"abh" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/interior/mansion) +"abi" = ( +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/stone, +/area/vtm/interior/sewer/nosferatu_town) +"abj" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"abk" = ( +/obj/structure/coclock, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"abl" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"abm" = ( +/obj/structure/vampstatue, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"abn" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"abo" = ( +/obj/effect/mapping_helpers/door/lock, +/obj/structure/vampdoor/woodglass, +/obj/effect/mapping_helpers/door/access/camarilla, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"abp" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"abq" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"abr" = ( +/obj/structure/sign/poster/city/gravitykills/directional/north{ + pixel_x = -9; + pixel_y = 34 + }, +/obj/structure/sign/poster/city/lacunacoil/directional/north{ + pixel_x = 6 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"abs" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"abt" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/clothing_store) +"abu" = ( +/obj/structure/roofstuff, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"abv" = ( +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/storage/box/teargas, +/obj/item/storage/box/flashbangs, +/obj/item/megaphone, +/obj/item/megaphone, +/obj/structure/closet/crate, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"abw" = ( +/obj/item/kirbyplants/darkpack/random, +/obj/structure/table/modern, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"abx" = ( +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"aby" = ( +/obj/structure/table, +/obj/item/storage/box/handcuffs{ + pixel_y = 15 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"abz" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/shop) +"abA" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"abB" = ( +/obj/structure/steps/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"abC" = ( +/obj/structure/railing, +/obj/structure/chair/comfy/darkpack/green{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"abD" = ( +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"abE" = ( +/obj/structure/chair/sofa/corp/right, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"abF" = ( +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer/nosferatu_town) +"abH" = ( +/obj/structure/vampdoor/prison, +/obj/effect/mapping_helpers/door/access/police, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/eight, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"abI" = ( +/obj/structure/fence/door, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"abJ" = ( +/obj/effect/turf_decal/bordur{ + dir = 5 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"abK" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"abL" = ( +/obj/machinery/photocopier/prebuilt, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"abM" = ( +/obj/structure/closet/cardboard, +/obj/item/storage/box/fireworks, +/obj/item/storage/box/fireworks, +/obj/item/storage/box/fireworks, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"abN" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"abO" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/chantry) +"abP" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/turf_decal/siding/wood/light{ + dir = 8 + }, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"abQ" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/arcade) +"abR" = ( +/obj/structure/platform/lowwall/brick_old, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/skatepark) +"abS" = ( +/turf/closed/wall/vampwall/rock, +/area/vtm/westfield_mall/interior/endron_logging) +"abT" = ( +/obj/structure/rack/clothing/rand, +/obj/machinery/light/blacklight/directional/south, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/smokeshop) +"abU" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/hot_ishu) +"abV" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"abW" = ( +/mob/living/carbon/human/npc/bacotell, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/city/bacotell, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"abX" = ( +/obj/structure/rack/food{ + dir = 4; + pixel_x = -8; + pixel_y = 5 + }, +/obj/effect/spawner/random/entertainment/toy_figure{ + pixel_x = -10 + }, +/obj/effect/spawner/random/entertainment/toy_figure{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/effect/spawner/random/entertainment/toy_figure{ + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"abY" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"abZ" = ( +/obj/structure/vampdoor/wood/npc{ + dir = 8 + }, +/turf/open/floor/wood/old, +/area/vtm/interior) +"aca" = ( +/obj/effect/spawner/random/structure/billboard, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"acb" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"acc" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"acd" = ( +/obj/structure/chair/wood/darkpack{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"ace" = ( +/obj/structure/table, +/obj/item/gun/ballistic/shotgun/vampire{ + pixel_y = 12; + pixel_x = -4 + }, +/obj/item/ammo_box/darkpack/c12g{ + pixel_y = 1; + pixel_x = 10 + }, +/obj/item/molotov{ + pixel_x = -9; + pixel_y = 1 + }, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/westfield_mall/interior/techshop) +"acg" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/machinery/light/blacklight/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"ach" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aci" = ( +/obj/structure/table/wood, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"acj" = ( +/obj/structure/chair/wood/darkpack/red{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"ack" = ( +/obj/structure/stairs/east, +/obj/structure/railing, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"acl" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"acm" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/vet_clinic) +"acn" = ( +/obj/machinery/light/warm/directional/south, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"aco" = ( +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"acp" = ( +/obj/structure/bookcase/random, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"acq" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"acr" = ( +/obj/structure/sign/poster/city/pixies/directional/north{ + pixel_x = 2 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"acs" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/dark, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/clinic) +"act" = ( +/obj/darkpack_car/retro/rand, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"acu" = ( +/obj/structure/vampdoor/old{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/npc, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"acw" = ( +/obj/structure/table, +/obj/item/gun/ballistic/automatic/pistol/darkpack/glock21, +/obj/item/gun/ballistic/automatic/pistol/darkpack/glock21, +/obj/item/ammo_box/magazine/glock45acp, +/obj/item/ammo_box/magazine/glock45acp, +/obj/item/ammo_box/magazine/glock45acp, +/obj/item/ammo_box/magazine/glock45acp, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"acy" = ( +/obj/structure/closet/secure_closet/freezer/fridge/all_access, +/obj/item/reagent_containers/cup/glass/coffee/vampire{ + volume = 25; + list_reagents = list(/datum/reagent/consumable/coffee = 15) + }, +/obj/item/food/fries, +/obj/item/food/burger, +/obj/item/reagent_containers/cup/soda_cans/pwr_game, +/obj/item/reagent_containers/cup/soda_cans/pwr_game, +/obj/item/reagent_containers/cup/soda_cans/pwr_game, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"acz" = ( +/turf/closed/wall/vampwall/rock, +/area/vtm/interior/supply) +"acA" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"acB" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/anarch) +"acC" = ( +/obj/structure/transport/linear, +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "mall_elevator_1" + }, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/interior/elevator) +"acD" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/janitor) +"acE" = ( +/obj/structure/rack/clothing/rand, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/clothing_store) +"acF" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"acG" = ( +/obj/structure/table/countertop/red, +/obj/structure/sink/basin/directional/north{ + pixel_y = -8 + }, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"acH" = ( +/obj/effect/decal/pallet, +/obj/effect/spawner/random/structure/closet_empty/crate/with_loot, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"acI" = ( +/obj/item/melee/skateboard/holyboard{ + desc = "He shredded for our sins." + }, +/obj/effect/decal/wallpaper/stone, +/turf/closed/wall/vampwall/brick_old, +/area/vtm/westfield_mall/interior/skatepark) +"acK" = ( +/obj/structure/fluff/tram_rail{ + dir = 4; + pixel_x = -8; + pixel_y = -8 + }, +/obj/effect/turf_decal/bordur/end{ + dir = 1 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/skatepark) +"acL" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"acM" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 23; + density = 0; + pixel_x = -1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"acN" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"acO" = ( +/obj/structure/table/wood, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"acP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/pallet, +/obj/item/grown/log/tree, +/obj/item/grown/log/tree, +/obj/item/grown/log/tree, +/obj/item/grown/log, +/obj/item/grown/log, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"acQ" = ( +/obj/structure/railing, +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"acR" = ( +/obj/structure/transport/linear, +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "mall_elevator_1"; + preset_destination_names = list("2" = "Lower", "3" = "Upper") + }, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/interior/elevator) +"acS" = ( +/mob/living/basic/corvid/crow, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"acT" = ( +/obj/effect/turf_decal/siding/grey/corner{ + dir = 1 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"acV" = ( +/obj/structure/vampdoor/glass{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/underground_parking) +"acW" = ( +/obj/structure/rack/food/rand, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"acX" = ( +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"acY" = ( +/turf/closed/wall/vampwall/market, +/area/vtm/westfield_mall/interior/maintenance) +"acZ" = ( +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"ada" = ( +/obj/item/plate, +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"add" = ( +/obj/structure/fence, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"ade" = ( +/obj/structure/rack, +/obj/item/assembly/signaler{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/assembly/signaler/low_range{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"adf" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/eighties, +/area/vtm/westfield_mall/interior/arcade) +"adg" = ( +/turf/open/misc/grass/random/grass, +/area/vtm/westfield_mall) +"adh" = ( +/obj/effect/landmark/npcactivity, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"adi" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"adj" = ( +/turf/closed/wall/vampwall/rock, +/area/vtm/westfield_mall/interior/cave) +"adk" = ( +/obj/machinery/light/directional/south, +/obj/structure/chair/darkpack/blue{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"adl" = ( +/obj/effect/turf_decal/bordur/corner/inverse{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"adm" = ( +/obj/effect/decal/wallpaper/grey/low{ + color = "#585858" + }, +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"adn" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping9" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ado" = ( +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"adp" = ( +/obj/structure/chair/sofa/corner/brown, +/obj/structure/sign/poster/city/dmc/directional/north, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"adq" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping43" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"adr" = ( +/obj/structure/table/wood, +/obj/item/gun/ballistic/revolver/darkpack/snub{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/revolver/darkpack/snub{ + pixel_x = 11; + pixel_y = 2 + }, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"ads" = ( +/obj/machinery/light/dim/directional/north, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"adu" = ( +/obj/structure/flora/rock/darkpack, +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior) +"adv" = ( +/obj/structure/platform/lowwall/brick, +/turf/open/floor/plating/rough, +/area/vtm/interior/supply) +"adw" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"adx" = ( +/obj/effect/decal/support, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior) +"ady" = ( +/obj/structure/mirror/directional/north, +/obj/structure/sink/directional/south, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/techshop) +"adz" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/skatepark) +"adA" = ( +/obj/structure/table/wood, +/obj/structure/sign/poster/city/bloodrayne/directional/north{ + pixel_x = 7; + pixel_y = 33 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"adB" = ( +/obj/structure/stairs/ramp/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/skatepark) +"adC" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/costume/pirate, +/obj/item/clothing/shoes/pirate, +/obj/item/clothing/head/costume/pirate, +/obj/item/clothing/under/costume/pirate, +/obj/item/clothing/head/costume/pirate/captain, +/obj/item/clothing/suit/costume/dracula, +/obj/item/clothing/under/costume/draculass, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"adD" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/watering_can/metal, +/obj/effect/decal/pallet, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"adE" = ( +/obj/structure/table/countertop/black, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"adF" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"adG" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/darkpack/plant5{ + pixel_x = -9; + pixel_y = 18 + }, +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"adH" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"adI" = ( +/obj/structure/rack/food/rand, +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"adJ" = ( +/obj/structure/closet/secure_closet/freezer/empty/open, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"adK" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/figure/secofficer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/toy/figure/warden{ + pixel_x = 2 + }, +/obj/item/toy/figure/hos{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"adL" = ( +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"adM" = ( +/obj/structure/railing, +/obj/item/kirbyplants/random/dead{ + desc = "It doesn't look very healthy..."; + name = "dead plant"; + pixel_y = 7 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"adN" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/vampire/vest/police, +/obj/item/clothing/suit/vampire/vest/police, +/obj/item/clothing/suit/vampire/vest/police, +/obj/item/clothing/suit/vampire/vest/police, +/obj/item/clothing/head/vampire/helmet, +/obj/item/clothing/head/vampire/helmet, +/obj/item/clothing/head/vampire/helmet, +/obj/item/clothing/head/vampire/helmet, +/obj/item/clothing/gloves/tackler/combat/insulated, +/obj/item/clothing/gloves/tackler/combat/insulated, +/obj/item/clothing/gloves/tackler/combat/insulated, +/obj/item/clothing/gloves/tackler/combat/insulated, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"adO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"adP" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = -13; + pixel_y = 11 + }, +/obj/item/food/popcorn{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"adQ" = ( +/obj/structure/chair/comfy/darkpack/dark, +/obj/effect/landmark/start/darkpack/voivode/voivode, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"adR" = ( +/obj/effect/decal/wallpaper, +/obj/effect/decal/wallpaper/papers/three, +/turf/closed/wall/vampwall/junk/alt, +/area/vtm/interior/sewer/nosferatu_town) +"adS" = ( +/obj/structure/table/wood, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/clothing_store) +"adT" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"adU" = ( +/obj/effect/spawner/random/stray_animal, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"adV" = ( +/turf/open/water/vamp_sewer, +/area/vtm/interior/sewer) +"adW" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/turf/open/floor/carpet/darkpack/bluesilver, +/area/vtm/westfield_mall/interior/theatre) +"adX" = ( +/obj/structure/chair/plastic, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"adY" = ( +/turf/closed/indestructible/the_matrix, +/area/vtm/interior/sewer) +"adZ" = ( +/obj/structure/table/modern, +/obj/machinery/light/blacklight/directional/north, +/obj/item/seeds/cannabis{ + pixel_x = 6; + pixel_y = 9; + anchored = 1 + }, +/obj/item/seeds/cannabis{ + pixel_x = -7; + pixel_y = 9; + anchored = 1 + }, +/obj/item/cigarette/rollie/cannabis{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/cigarette/rollie/cannabis{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/cigarette/rollie/cannabis{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/cigarette/rollie/cannabis{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/spawner/random/entertainment/lighter{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aea" = ( +/obj/structure/chair/plastic/darkpack, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"aeb" = ( +/obj/structure/table/wood, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aec" = ( +/obj/machinery/hydroponics/simple/plastic, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aed" = ( +/obj/structure/table/countertop/red, +/obj/item/food/popcorn, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aee" = ( +/obj/structure/closet/crate/trashcart/laundry, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"aef" = ( +/obj/effect/turf_decal/siding/white/inner_corner{ + dir = 8 + }, +/turf/open/floor/city/circled, +/area/vtm/interior/shop) +"aeg" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"aeh" = ( +/obj/structure/vampfence/corner/rich{ + dir = 4; + icon_state = "fence_end" + }, +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"aei" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/camarilla/towerwork, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/maintenance) +"aej" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aek" = ( +/obj/structure/platform/lowwall/brick_old/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/skatepark) +"ael" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aem" = ( +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aen" = ( +/obj/structure/closet/secure_closet/freezer/fridge/all_access, +/obj/item/reagent_containers/blood/vitae, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/church) +"aeo" = ( +/obj/structure/table, +/obj/item/seeds/cannabis{ + pixel_y = 11 + }, +/obj/item/seeds/cannabis{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/seeds/cannabis{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/seeds/cannabis{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/seeds/cannabis{ + pixel_y = 3 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aep" = ( +/obj/effect/decal/wallpaper/paper/stripe, +/turf/closed/wall/vampwall/junk, +/area/vtm/interior/sewer) +"aeq" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/roofwalk/cobblestones, +/area/vtm/westfield_mall) +"aer" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/bianchiBank) +"aes" = ( +/obj/darkpack_car/retro/rand{ + dir = 4 + }, +/obj/effect/turf_decal/bordur/inverse, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aet" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/taser/darkpack, +/obj/item/gun/energy/taser/darkpack, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aeu" = ( +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"aev" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping12" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aew" = ( +/obj/structure/table/countertop/black, +/obj/structure/sink/basin/directional/north{ + pixel_y = -5 + }, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aex" = ( +/obj/structure/platform/lowwall/painted/window/reinforced, +/turf/open/floor/plating/rough, +/area/vtm/interior/bianchiBank) +"aey" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"aez" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aeA" = ( +/mob/living/carbon/human/npc/hobo, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"aeB" = ( +/obj/effect/decal/remains/human{ + name = "king" + }, +/turf/open/misc/grass/random/grass, +/area/vtm/westfield_mall/forest) +"aeC" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/large, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aeD" = ( +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aeE" = ( +/obj/structure/vampdoor, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aeF" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aeG" = ( +/obj/structure/vampdoor/simple{ + dir = 4 + }, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"aeH" = ( +/turf/closed/wall/vampwall/rock, +/area/vtm/westfield_mall/interior) +"aeI" = ( +/obj/structure/vampdoor/reinf, +/obj/effect/mapping_helpers/door/access/police, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aeJ" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/cardboard, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"aeK" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer/nosferatu_town) +"aeM" = ( +/obj/effect/turf_decal/siding/wood/light{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aeN" = ( +/obj/structure/table, +/obj/underplate, +/obj/vampire_computer/prince, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aeO" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aeP" = ( +/obj/structure/barrels/rand, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aeQ" = ( +/obj/structure/chair/wood/darkpack/red, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aeR" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/misc/grass/random/grass, +/area/vtm/westfield_mall) +"aeS" = ( +/obj/effect/turf_decal/asphalt, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aeT" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aeU" = ( +/obj/structure/table/wood/poker, +/obj/item/paper_bin, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/effect/spawner/random/bureaucracy/pen, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aeV" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aeW" = ( +/turf/closed/wall/vampwall/rock, +/area/vtm/interior/sewer) +"aeX" = ( +/obj/structure/flora/rock/darkpack, +/turf/open/misc/grass/random, +/area/vtm/westfield_mall/forest) +"aeY" = ( +/obj/structure/filingcabinet/white{ + pixel_x = -12 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"aeZ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"afa" = ( +/obj/item/chair/wood/darkpack, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"afb" = ( +/obj/structure/hedge, +/obj/effect/spawner/random/flora/flowers, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"afc" = ( +/obj/structure/chair/comfy/darkpack/red{ + dir = 4 + }, +/obj/item/trash/popcorn, +/turf/open/floor/carpet/darkpack/bluesilver, +/area/vtm/westfield_mall/interior/theatre) +"afd" = ( +/obj/effect/decal/coastline{ + dir = 5 + }, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"afe" = ( +/obj/structure/bed, +/obj/structure/bed{ + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aff" = ( +/obj/structure/table/wood, +/obj/structure/desk_bell, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"afg" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"afh" = ( +/obj/item/storage/belt/sheath/vamp/sword, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"afi" = ( +/obj/effect/decal/pallet, +/obj/structure/table/wood, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"afj" = ( +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"afk" = ( +/obj/machinery/light/floor, +/turf/open/misc/grass, +/area/vtm/westfield_mall/interior) +"afl" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/entertainment/plushie{ + pixel_y = 9 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"afm" = ( +/obj/structure/flora/tree/vamp/pine, +/turf/open/misc/grass/random/bushes, +/area/vtm/westfield_mall/forest) +"afn" = ( +/obj/structure/chair/office/darkpack/red{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"afo" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior) +"afp" = ( +/obj/structure/sink/basin/directional/west, +/obj/structure/table/countertop/black, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"afq" = ( +/obj/structure/rack/clothing/rand{ + dir = 8 + }, +/obj/machinery/light/blacklight/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"afr" = ( +/obj/structure/table/countertop/red, +/obj/machinery/processor, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"afs" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/roof) +"aft" = ( +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"afv" = ( +/obj/structure/closet/secure_closet/freezer/empty, +/obj/item/storage/box/coffeepack, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/milk, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"afw" = ( +/obj/effect/spawner/random/trash/mess, +/obj/machinery/light/small/directional/north, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"afx" = ( +/obj/machinery/light/directional/north{ + pixel_x = -16 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"afy" = ( +/obj/effect/decal/wallpaper, +/turf/closed/wall/vampwall/junk/alt, +/area/vtm/interior/sewer/nosferatu_town) +"afz" = ( +/obj/structure/closet/cardboard, +/mob/living/basic/pet/cat/darkpack{ + name = "Drimbus" + }, +/mob/living/basic/pet/cat/darkpack{ + name = "Glimbus" + }, +/mob/living/basic/pet/cat/darkpack{ + name = "Mr Chef" + }, +/mob/living/basic/pet/cat/darkpack{ + name = "Roginald" + }, +/mob/living/basic/pet/cat/darkpack{ + name = "Spoingus"; + desc = "A stray cat thats taken up residence on the clinic's roof. Likes to be fed bits of cereal." + }, +/mob/living/basic/pet/cat/darkpack{ + name = "Thorgax" + }, +/mob/living/basic/pet/cat/darkpack{ + name = "Zloopus" + }, +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"afA" = ( +/obj/structure/table/wood/fancy/blue, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"afB" = ( +/obj/structure/safe, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/sheet/mineral/gold/fifty, +/obj/item/clothing/accessory/medal/gold/heroism, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"afC" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/clinic) +"afD" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/hot_ishu) +"afE" = ( +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"afF" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"afG" = ( +/obj/effect/decal/rugs, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"afH" = ( +/obj/structure/table/wood/fancy/purple, +/obj/effect/spawner/random/entertainment/toy, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"afI" = ( +/obj/effect/turf_decal/bordur/inverse, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"afJ" = ( +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"afK" = ( +/obj/effect/decal/coastline/corner{ + dir = 4 + }, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"afL" = ( +/obj/machinery/stove, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"afM" = ( +/obj/item/stack/dollar/five, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"afN" = ( +/obj/effect/decal/rugs, +/obj/structure/closet/mini_fridge, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"afO" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + elevator_mode = 1; + transport_linked_id = "mall_elevator_1" + }, +/turf/open/floor/city/plating, +/area/vtm/interior/elevator) +"afP" = ( +/obj/structure/vampdoor/glass/pentex, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"afQ" = ( +/obj/structure/closet/secure_closet/freezer/meat/all_access, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"afR" = ( +/obj/structure/vampdoor, +/obj/effect/mapping_helpers/door/access/wolftech, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/techshop) +"afS" = ( +/obj/structure/filingcabinet/white, +/turf/open/floor/carpet/darkpack/cyan, +/area/vtm/westfield_mall/interior/vet_clinic) +"afT" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"afU" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 10 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"afV" = ( +/obj/structure/table/wood, +/obj/item/clothing/neck/petcollar{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/clothing/neck/petcollar{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/clothing/neck/petcollar{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"afW" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 5 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"afX" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"afY" = ( +/obj/structure/chair/sofa/city_bench/metal/left/black{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"afZ" = ( +/obj/structure/railing/wooden_fence, +/obj/structure/table/countertop, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aga" = ( +/turf/open/floor/eighties, +/area/vtm/westfield_mall/interior/arcade) +"agb" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"agc" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/maintenance/basement) +"agd" = ( +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/parking_lot) +"age" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"agf" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping5" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"agg" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/coffee_condi_display{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"agh" = ( +/obj/structure/vampdoor/simple, +/obj/effect/mapping_helpers/door/access/npc, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"agi" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 9 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"agj" = ( +/obj/effect/decal/pallet, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"agk" = ( +/obj/effect/decal/support, +/obj/structure/flora/rock/darkpack, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior) +"agl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"agm" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/wooden/communitygardens/tools, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"agn" = ( +/obj/effect/turf_decal/bordur{ + dir = 10 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"ago" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"agp" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"agq" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/bathroom) +"agr" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"ags" = ( +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"agt" = ( +/obj/structure/sign/poster/city/dmc/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"agu" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"agv" = ( +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/maintenance/basement) +"agw" = ( +/turf/open/openspace, +/area/vtm/interior/shop) +"agx" = ( +/obj/structure/flatpack_cart, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"agy" = ( +/obj/structure/vampfence/rich, +/turf/open/water/vamp_sewer, +/area/vtm/interior/sewer) +"agz" = ( +/obj/structure/table/wood, +/obj/machinery/light/prince/broken/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"agA" = ( +/obj/structure/table/wood, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"agB" = ( +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"agC" = ( +/obj/structure/rack, +/obj/item/flashlight, +/obj/machinery/light/prince/broken/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"agD" = ( +/obj/structure/coclock/grandpa, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"agE" = ( +/obj/structure/table, +/obj/vampire_computer, +/obj/machinery/light/blacklight/directional/east, +/obj/underplate, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"agF" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"agG" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/techshop) +"agH" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 5 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"agI" = ( +/obj/effect/decal/rugs, +/obj/effect/decal/rugs, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/darkpack/primogen/nosferatu, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"agJ" = ( +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"agK" = ( +/obj/structure/vampdoor/woodglass, +/turf/open/floor/carpet/darkpack/hotel, +/area/vtm/interior/shop) +"agL" = ( +/obj/structure/filingcabinet/medical{ + pixel_x = 5 + }, +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/clinic) +"agM" = ( +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"agN" = ( +/obj/structure/platform/lowwall/market/window, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"agO" = ( +/obj/effect/decal/wallpaper/blue, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/janitor) +"agP" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/flashlight/lamp{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/underground_parking) +"agQ" = ( +/obj/structure/closet, +/obj/item/gun/ballistic/automatic/darkpack/ar15, +/obj/item/gun/ballistic/automatic/darkpack/ar15, +/obj/item/ammo_box/magazine/darkpack556, +/obj/item/ammo_box/magazine/darkpack556, +/obj/item/ammo_box/magazine/darkpack556, +/obj/item/ammo_box/magazine/darkpack556, +/obj/item/ammo_box/darkpack/c556, +/obj/item/ammo_box/darkpack/c556, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"agR" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/clinic) +"agS" = ( +/obj/effect/decal/pallet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"agT" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/structure/lamppost/sidewalk, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"agU" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"agV" = ( +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/theatre) +"agW" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"agX" = ( +/obj/machinery/sprinkler, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"agY" = ( +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/camarilla/harpy, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"agZ" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aha" = ( +/obj/item/fish/darkpack/catfish, +/turf/open/water/acid, +/area/vtm/westfield_mall/forest) +"ahb" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"ahc" = ( +/obj/structure/ladder/manhole/up, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"ahd" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/cockroach/sewer, +/turf/open/floor/wood/old, +/area/vtm/interior) +"ahe" = ( +/obj/structure/table/countertop, +/obj/item/ammo_box/darkpack/c556, +/obj/item/ammo_box/darkpack/c556{ + pixel_x = 9 + }, +/obj/item/ammo_box/darkpack/c556{ + pixel_x = -9 + }, +/obj/item/ammo_box/magazine/darkpack556/hunt{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/ammo_box/magazine/darkpack556/hunt{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/ammo_box/magazine/darkpack556/hunt{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/ammo_box/magazine/darkpackthompson{ + pixel_x = 17; + pixel_y = 11 + }, +/obj/item/ammo_box/magazine/darkpackthompson{ + pixel_x = 12; + pixel_y = 11 + }, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"ahf" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/chantry/archivist, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/chantry) +"ahg" = ( +/obj/structure/table/wood, +/obj/item/chair/wood/darkpack, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"ahh" = ( +/obj/structure/table/wood, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"ahi" = ( +/obj/effect/decal/wallpaper/low, +/turf/closed/wall/vampwall/junk, +/area/vtm/interior/sewer/nosferatu_town) +"ahj" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ahk" = ( +/obj/structure/table, +/obj/item/surgery_tray/full, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"ahl" = ( +/obj/effect/decal/shadow, +/obj/structure/flora/rock/darkpack, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior) +"ahm" = ( +/obj/effect/decal/pallet, +/obj/effect/spawner/random/engineering/tool_advanced, +/obj/effect/spawner/random/engineering/tool_advanced, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"ahn" = ( +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"aho" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"ahp" = ( +/obj/effect/decal/rugs, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"ahq" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"ahr" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/effect/spawner/random/engineering/vending_restock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ahs" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"aht" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ahu" = ( +/obj/item/clothing/suit/caution, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ahv" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/spawner/random/trash/mess, +/obj/machinery/light/small/directional/west, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"ahw" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"ahx" = ( +/obj/effect/turf_decal/bordur/corner, +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"ahy" = ( +/obj/structure/sign/warning/docking{ + pixel_y = 18; + name = "\improper WARNING: UNDERWATER CAVE sign"; + desc = "STOP. PREVENT YOUR DEATH! THERE'S NOTHING IN THIS CAVE WORTH DYING FOR!"; + sign_change_name = "Warning - Underwater Cave" + }, +/obj/structure/fence{ + pixel_y = 7; + name = "post" + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"ahz" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/hot_ishu) +"ahA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/pallet, +/obj/item/grown/log/tree, +/obj/item/grown/log, +/obj/item/grown/log, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"ahB" = ( +/obj/structure/closet, +/obj/item/clothing/under/vampire/police, +/obj/item/clothing/under/vampire/police/long, +/obj/item/clothing/under/vampire/police/pants, +/obj/item/clothing/under/vampire/police/turtleneck, +/obj/item/clothing/under/vampire/police/utility, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"ahC" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 9 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"ahD" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/obj/effect/turf_decal/asphaltline/alt, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"ahE" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior) +"ahF" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"ahG" = ( +/obj/effect/decal/wallpaper/paper/darkred, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/clothing_store) +"ahH" = ( +/obj/machinery/light/prince/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"ahI" = ( +/obj/machinery/light/dim/directional/west, +/obj/structure/chair/comfy/brown{ + color = "#50C878"; + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer/nosferatu_town) +"ahK" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/structure/roadsign{ + icon_state = "wrongway"; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/garbage{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/cardboard, +/obj/effect/decal/cleanable/trash, +/obj/machinery/light/small/red/directional/east, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"ahL" = ( +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"ahM" = ( +/obj/structure/table/modern, +/obj/underplate, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"ahN" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/underground_parking) +"ahO" = ( +/obj/structure/closet/cardboard, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"ahP" = ( +/obj/structure/table/reinforced, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"ahQ" = ( +/obj/structure/vampfence/rich{ + dir = 4 + }, +/obj/structure/platform/lowwall/junk, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"ahR" = ( +/mob/living/carbon/human/npc/police, +/obj/structure/chair/office/darkpack/blue{ + dir = 4 + }, +/obj/effect/mapping_helpers/mob_buckler, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"ahS" = ( +/obj/effect/turf_decal/siding/wood/light{ + dir = 1 + }, +/obj/structure/hedge, +/obj/effect/spawner/random/flora/flowers, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"ahT" = ( +/obj/effect/turf_decal/bordur{ + dir = 5 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"ahU" = ( +/obj/effect/turf_decal/bordur/corner, +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/water, +/area/vtm/westfield_mall/forest) +"ahV" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"ahW" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/obj/effect/turf_decal/asphalt, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"ahX" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/entertainment/cigarette_pack{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/effect/spawner/random/entertainment/cigarette_pack{ + pixel_y = 16 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/effect/spawner/random/special_lighter{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"ahY" = ( +/turf/open/openspace, +/area/vtm/westfield_mall) +"ahZ" = ( +/obj/structure/platform/lowwall/market/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/chantry) +"aia" = ( +/obj/item/toy/basketball{ + pixel_x = 9; + pixel_y = 27 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aib" = ( +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aic" = ( +/obj/structure/mop_bucket/janitorialcart, +/obj/item/mop, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aid" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/vampire/trench, +/obj/item/clothing/under/suit/black_really, +/obj/item/clothing/under/suit/charcoal, +/obj/item/clothing/under/suit/black_really/skirt, +/obj/item/clothing/under/suit/black, +/obj/item/clothing/under/suit/black/skirt, +/obj/item/clothing/suit/vampire/orthodox, +/obj/item/clothing/suit/vampire/noddist, +/obj/item/clothing/suit/vampire/imam, +/obj/item/clothing/head/chaplain/nun_hood, +/obj/item/clothing/head/vampire/taqiyah, +/obj/item/clothing/suit/chaplainsuit/nun, +/obj/item/clothing/head/vampire/noddist_mask, +/obj/item/clothing/head/vampire/hijab, +/obj/item/clothing/head/vampire/prayer_veil, +/obj/item/clothing/suit/hooded/robes/black, +/obj/item/clothing/mask/vampire/balaclava, +/obj/item/clothing/head/vampire/kalimavkion, +/obj/item/clothing/under/vampire/suit, +/obj/item/clothing/under/vampire/suit/female, +/obj/item/clothing/under/vampire/graveyard, +/obj/item/vamp/keys/lasombra, +/obj/item/vamp/keys/lasombra, +/obj/item/vamp/keys/lasombra, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"aie" = ( +/obj/structure/chair/comfy/darkpack/blue, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/interior/police) +"aif" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/darkpack/chantry/archivist, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aig" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/city/bacotell, +/area/vtm/interior/shop) +"aih" = ( +/obj/effect/decal/cleanable/cardboard, +/obj/vehicle/ridden/atv, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"aii" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aij" = ( +/obj/effect/decal/pallet, +/obj/structure/table, +/obj/item/ammo_box/magazine/darkpack545{ + pixel_x = 2 + }, +/obj/item/ammo_box/magazine/darkpack545{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/ammo_box/magazine/darkpack9mm{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/ammo_box/magazine/darkpack9mm{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/ammo_box/magazine/darkpack9mm{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/ammo_box/magazine/darkpack9mm{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/ammo_box/magazine/darkpack9mm{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/ammo_box/magazine/darkpack9mm{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/ammo_box/magazine/darkpack9mm{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/ammo_box/magazine/darkpack9mm{ + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"aik" = ( +/mob/living/basic/corvid/raven, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"ail" = ( +/obj/structure/closet/secure_closet/freezer/fridge/all_access, +/obj/item/storage/box/ingredients/american, +/obj/item/storage/box/ingredients/carnivore, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/grains, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/reagent_containers/condiment/milk, +/turf/open/floor/city/bacotell, +/area/vtm/interior/sewer) +"aim" = ( +/obj/structure/chair/darkpack{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/supply/tech, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/westfield_mall/interior/supply) +"ain" = ( +/obj/effect/decal/pallet, +/obj/item/lighter, +/obj/structure/coclock, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aio" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aip" = ( +/obj/structure/closet, +/obj/item/gun/ballistic/automatic/darkpack/mp5, +/obj/item/gun/ballistic/automatic/darkpack/mp5, +/obj/item/ammo_box/magazine/darkpack9mp5, +/obj/item/ammo_box/magazine/darkpack9mp5, +/obj/item/ammo_box/magazine/darkpack9mp5, +/obj/item/ammo_box/magazine/darkpack9mp5, +/obj/item/ammo_box/darkpack/c9mm, +/obj/item/ammo_box/darkpack/c9mm, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aiq" = ( +/obj/effect/decal/pallet, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"air" = ( +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"ait" = ( +/obj/machinery/camera/autoname/directional/north{ + pixel_x = 1; + pixel_y = 19 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aiu" = ( +/obj/machinery/griddle, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aiv" = ( +/obj/transfer_point_vamp{ + id = "forestL1" + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aiw" = ( +/obj/structure/vampdoor/glass, +/obj/effect/mapping_helpers/door/access/npc, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aix" = ( +/obj/machinery/light/prince/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aiy" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aiz" = ( +/obj/structure/table/wood, +/obj/item/trash/can/food/beans, +/obj/effect/spawner/random/trash/crushed_can, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"aiA" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aiB" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = -10; + pixel_y = 5 + }, +/obj/item/flashlight/flare/candle{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/item/flashlight/flare/candle{ + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/vampirebook/quran{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/vampirebook/lilith{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aiC" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aiD" = ( +/obj/machinery/light/dim/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aiE" = ( +/obj/structure/rack/clothing/rand, +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"aiF" = ( +/obj/structure/table/wood, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aiG" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/deluxe_garbage, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"aiH" = ( +/obj/machinery/light/directional/north, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/games_store) +"aiI" = ( +/obj/structure/table/wood, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aiJ" = ( +/obj/effect/turf_decal/siding/wood/light/corner{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aiK" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/games_store) +"aiL" = ( +/obj/machinery/defibrillator_mount/mobile, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aiM" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/entertainment/cigarette, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aiN" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"aiO" = ( +/obj/machinery/light/small/directional/north{ + light_color = "#cc8899" + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer) +"aiP" = ( +/obj/structure/table, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aiQ" = ( +/obj/structure/bricks, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aiR" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"aiS" = ( +/obj/machinery/atm, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aiT" = ( +/obj/structure/table/wood/poker, +/obj/item/dice/d4{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/dice{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aiU" = ( +/obj/structure/chair/wood/darkpack/red{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aiV" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/littleitaly) +"aiW" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"aiX" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aiY" = ( +/obj/structure/table/wood, +/obj/vampire_computer, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"aiZ" = ( +/obj/structure/punching_bag, +/obj/effect/decal/rugs, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/dojo) +"aja" = ( +/obj/structure/sign/poster/city/kish/directional/north{ + pixel_x = -6 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"ajb" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"ajc" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ajd" = ( +/obj/structure/table/wood, +/obj/vampire_computer/box{ + dir = 8 + }, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aje" = ( +/obj/darkpack_car/endrontruck{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"ajf" = ( +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"ajg" = ( +/obj/structure/table/wood, +/obj/effect/decal/wallpaper/papers/random{ + pixel_y = 25 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"ajh" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 1 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"aji" = ( +/obj/machinery/light/blacklight/directional/north, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"ajj" = ( +/obj/structure/table/wood, +/obj/vampire_computer{ + pixel_y = 5 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"ajk" = ( +/obj/machinery/light/directional/north, +/turf/open/openspace, +/area/vtm/westfield_mall/parking_lot) +"ajl" = ( +/obj/structure/mirror, +/obj/effect/decal/wallpaper/low, +/turf/closed/wall/vampwall/junk, +/area/vtm/interior/sewer/nosferatu_town) +"ajm" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ajn" = ( +/obj/structure/flora/rock/darkpack, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"ajo" = ( +/obj/effect/turf_decal/siding/wood/light{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"ajp" = ( +/obj/structure/table/wood, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/rods, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"ajq" = ( +/obj/structure/flora/rock/darkpack_big, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"ajr" = ( +/obj/structure/chair/sofa/right/brown, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"ajt" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aju" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/underground_parking) +"ajv" = ( +/obj/structure/table, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"ajw" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/theatre) +"ajx" = ( +/obj/effect/turf_decal/darkpack/grass/corner{ + dir = 8 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"ajy" = ( +/obj/machinery/light/prince/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"ajz" = ( +/obj/effect/decal/wallpaper/red, +/obj/item/food/chocolatebar{ + pixel_x = 5; + pixel_y = -10 + }, +/obj/item/food/chocolatebar{ + pixel_x = 12; + pixel_y = -10 + }, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"ajA" = ( +/obj/structure/stairs/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"ajB" = ( +/obj/effect/landmark/start/darkpack/chantry/archivist, +/obj/structure/chair/wood/darkpack/red, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"ajC" = ( +/obj/effect/decal/wallpaper/paper/stripe, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/games_store) +"ajD" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"ajE" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/city/bacotell, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"ajF" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/foodcourt) +"ajG" = ( +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"ajI" = ( +/obj/structure/chair/comfy/darkpack/green{ + dir = 1 + }, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"ajK" = ( +/obj/structure/glowshroom/glowcap, +/turf/open/misc/grass, +/area/vtm/westfield_mall/forest) +"ajL" = ( +/obj/structure/rack/food/rand, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"ajM" = ( +/obj/effect/landmark/start/darkpack/law_enforcement/officer, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"ajN" = ( +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"ajO" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/coffee_condi_display{ + pixel_y = 11; + pixel_x = -7 + }, +/obj/item/reagent_containers/cup/bottle/syrup_bottle/caramel{ + pixel_y = 6 + }, +/turf/open/floor/city/bacotell, +/area/vtm/interior/bianchiBank) +"ajP" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/light/warm/directional/east, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"ajQ" = ( +/obj/structure/table, +/obj/effect/decal/rugs, +/obj/item/liquid_flamethrower, +/obj/item/gas_can/full, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"ajR" = ( +/mob/living/carbon/human/npc/gummaguts, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"ajS" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"ajT" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"ajU" = ( +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/anarch) +"ajV" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = 10; + pixel_y = 1 + }, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"ajW" = ( +/obj/structure/chair/wood/darkpack, +/obj/effect/landmark/start/darkpack/anarch/bruiser, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"ajX" = ( +/obj/structure/table/countertop/red, +/obj/machinery/microwave{ + pixel_y = 7 + }, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"ajY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"ajZ" = ( +/obj/structure/table/countertop/bubway, +/obj/item/plate, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aka" = ( +/obj/effect/turf_decal/bordur/corner/inverse{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"akb" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"akc" = ( +/turf/open/openspace, +/area/vtm/interior/police) +"akd" = ( +/obj/structure/chair/sofa/corp, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"ake" = ( +/obj/structure/chair/sofa/left/brown{ + desc = "It's sticky. Why is it sticky?" + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"akf" = ( +/obj/structure/table, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/item/circuitboard/computer/security, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"akg" = ( +/obj/structure/vampstatue, +/obj/effect/turf_decal/bordur{ + dir = 6 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"akh" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/mob/living/carbon/human/npc/hobo, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"aki" = ( +/turf/open/floor/plating/stone, +/area/vtm/interior/sewer/nosferatu_town) +"akj" = ( +/turf/closed/wall/vampwall/metal/reinforced, +/area/vtm/westfield_mall/interior/endron_logging) +"akk" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"akl" = ( +/obj/structure/retail/pharmacy, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/vet_clinic) +"akm" = ( +/obj/effect/turf_decal/bordur/inverse, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"akn" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior/techshop) +"ako" = ( +/obj/structure/rack/food/rand, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"akp" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"akq" = ( +/obj/structure/table/countertop/red, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"akr" = ( +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aks" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/occult/artifact{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/spawner/random/occult/artifact{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"akt" = ( +/obj/item/trash/semki, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/old, +/area/vtm/interior) +"aku" = ( +/obj/effect/gibspawner/human, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"akv" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"akw" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/supply) +"akx" = ( +/obj/effect/decal/wallpaper/grey, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/camarilla) +"aky" = ( +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"akz" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"akA" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/hot_ishu) +"akB" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"akC" = ( +/obj/structure/mirror, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/games_store) +"akD" = ( +/obj/machinery/shower/directional/west, +/obj/structure/curtain, +/obj/structure/fluff/shower_drain, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/games_store) +"akE" = ( +/obj/structure/fake_stairs/wood/directional/east, +/turf/open/floor/iron/stairs/left{ + dir = 8 + }, +/area/vtm/westfield_mall/interior/games_store) +"akF" = ( +/obj/structure/closet/crate/large, +/obj/item/chainsaw/vamp, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/obj/item/shovel/vamp, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"akG" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer) +"akH" = ( +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/item/food/grown/moonflower, +/turf/open/misc/grass, +/area/vtm/westfield_mall/forest) +"akI" = ( +/obj/effect/decal/pallet, +/obj/structure/table, +/obj/item/gun/ballistic/automatic/darkpack/uzi, +/obj/item/gun/ballistic/automatic/darkpack/uzi, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"akJ" = ( +/obj/machinery/oven/range, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"akK" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"akL" = ( +/turf/closed/wall/vampwall/brick_old, +/area/vtm/westfield_mall/interior/maintenance/basement) +"akM" = ( +/obj/structure/vampdoor/old{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/camarilla, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/camarilla) +"akN" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"akO" = ( +/obj/structure/table/wood, +/obj/item/flashlight/flare/candle/infinite, +/obj/item/flashlight/lamp{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"akP" = ( +/obj/effect/turf_decal/siding/white/inner_corner{ + dir = 1 + }, +/turf/open/water, +/area/vtm/interior/bianchiBank) +"akQ" = ( +/obj/structure/chair/darkpack/green{ + dir = 8 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"akR" = ( +/obj/structure/table/wood, +/obj/vampire_computer{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/item/kirbyplants/darkpack/plant4{ + pixel_y = 16; + pixel_x = -9 + }, +/obj/item/kirbyplants/darkpack/plant2{ + pixel_y = 6; + pixel_x = -11 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"akS" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/light/directional/north, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior) +"akT" = ( +/obj/darkpack_car/rand{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"akU" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/obj/structure/lamppost/sidewalk, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"akV" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"akW" = ( +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"akX" = ( +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer/nosferatu_town) +"akZ" = ( +/obj/structure/roofstuff/alt1, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"ala" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + elevator_mode = 1; + transport_linked_id = "mall_elevator_1" + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/elevator) +"alb" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 8 + }, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"alc" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/plant_produce, +/turf/open/floor/city/circled, +/area/vtm/interior/shop) +"ald" = ( +/obj/structure/filingcabinet/white{ + pixel_x = 7 + }, +/obj/structure/filingcabinet/white{ + pixel_x = -7 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"ale" = ( +/obj/effect/turf_decal/bordur/corner, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"alf" = ( +/obj/machinery/light/prince/directional/north, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"alg" = ( +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"alh" = ( +/obj/effect/turf_decal/bordur/corner/inverse{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"ali" = ( +/obj/effect/turf_decal/asphalt, +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"alj" = ( +/obj/structure/closet/crate/bin{ + pixel_x = 7; + pixel_y = -1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"alk" = ( +/obj/structure/closet/secure_closet/freezer/empty, +/obj/item/storage/box/coffeepack/robusta, +/obj/item/storage/box/coffeepack/robusta, +/obj/item/storage/box/coffeepack/robusta, +/obj/item/storage/box/coffeepack, +/obj/item/storage/box/coffeepack, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"all" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"alm" = ( +/obj/effect/turf_decal/bordur/corner, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aln" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/eighties, +/area/vtm/westfield_mall/interior/arcade) +"alo" = ( +/obj/structure/rack/clothing_hanger/rand{ + pixel_x = 7 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"alp" = ( +/obj/structure/secure_safe/directional/north, +/obj/structure/table, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"alq" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"alr" = ( +/obj/machinery/light/directional/north, +/obj/structure/table/countertop/black, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"als" = ( +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"alt" = ( +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/maintenance/atrium) +"alu" = ( +/obj/structure/bed, +/obj/machinery/light/prince/broken/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"alv" = ( +/obj/fake_platform/stone/double, +/turf/open/misc/grass, +/area/vtm/westfield_mall/interior) +"alw" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"alx" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/effect/spawner/random/engineering/vending_restock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aly" = ( +/obj/structure/guncase, +/obj/item/gun/ballistic/shotgun/vampire, +/obj/item/gun/ballistic/shotgun/vampire, +/obj/item/gun/ballistic/automatic/darkpack/ar15, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"alz" = ( +/obj/structure/railing/wooden_fence, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior) +"alA" = ( +/obj/machinery/computer/cargo/express{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"alB" = ( +/obj/effect/turf_decal/asphaltline{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"alC" = ( +/obj/darkpack_car/police, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"alD" = ( +/obj/structure/railing/wooden_fence{ + dir = 4 + }, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior) +"alE" = ( +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"alF" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"alG" = ( +/obj/machinery/sprinkler, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"alH" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"alI" = ( +/obj/structure/hedge, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"alJ" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/dojo) +"alK" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"alL" = ( +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"alM" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/west, +/obj/structure/sink/directional/east{ + icon_state = "basin" + }, +/turf/open/floor/city/bacotell, +/area/vtm/interior/sewer) +"alN" = ( +/obj/structure/coclock, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = -4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"alO" = ( +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"alP" = ( +/obj/structure/vampdoor/old, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"alQ" = ( +/obj/fake_platform/stone/easyclimb, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"alR" = ( +/obj/structure/vampdoor, +/obj/effect/mapping_helpers/door/access/toreador, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"alS" = ( +/obj/structure/curtain/bounty, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"alT" = ( +/obj/structure/table, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"alU" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/anarch/bruiser, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"alV" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 8 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"alW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"alX" = ( +/obj/machinery/atm, +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"alY" = ( +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"alZ" = ( +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/lasombra, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"ama" = ( +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"amb" = ( +/obj/item/kirbyplants/darkpack/random, +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"amc" = ( +/obj/structure/chair/sofa/corp/left, +/obj/fake_platform/grey/easyclimb, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"amd" = ( +/obj/machinery/light/directional/east, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/anarch) +"ame" = ( +/obj/effect/decal/cleanable/litter, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"amf" = ( +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/clinic) +"amg" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/city/bacotell, +/area/vtm/interior/shop) +"amh" = ( +/obj/structure/chair/sofa/city_bench/metal/right/puce{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer) +"ami" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/cups{ + pixel_x = -8; + pixel_y = 13 + }, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"amj" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"amk" = ( +/obj/machinery/shower/directional/south, +/obj/effect/turf_decal/stock{ + dir = 1 + }, +/obj/structure/window/spawner/directional/east, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aml" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"amm" = ( +/obj/structure/vampfence/corner/rich{ + dir = 8 + }, +/obj/effect/turf_decal/bordur/corner, +/turf/open/floor/plating/sidewalkalt, +/area/vtm/westfield_mall/forest) +"amn" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"amo" = ( +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/maintenance) +"amp" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"amq" = ( +/obj/machinery/oven/range, +/turf/open/floor/city/bacotell, +/area/vtm/interior/sewer) +"amr" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 6 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"ams" = ( +/obj/structure/closet/crate/coffin, +/obj/structure/sign/painting{ + pixel_y = 32; + dir = 1 + }, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/theatre) +"amt" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"amu" = ( +/obj/structure/table/countertop/red, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"amv" = ( +/obj/structure/hedge, +/obj/machinery/light/directional/west, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"amw" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"amx" = ( +/turf/open/floor/plating/stone, +/area/vtm/interior/sewer) +"amy" = ( +/turf/closed/wall/vampwall/brick_old, +/area/vtm/westfield_mall/interior/skatepark) +"amz" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"amA" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"amB" = ( +/obj/vampire_computer, +/obj/structure/table, +/obj/underplate, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"amC" = ( +/obj/effect/decal/cleanable/trash, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random{ + pixel_y = 2 + }, +/obj/structure/railing, +/turf/open/misc/dirt, +/area/vtm/interior/sewer/nosferatu_town) +"amD" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping21" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"amE" = ( +/obj/machinery/camera/autoname/directional/north{ + pixel_x = 5; + pixel_y = 20 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"amF" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/theatre) +"amG" = ( +/obj/structure/glowshroom, +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior/cave) +"amH" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"amI" = ( +/obj/machinery/vending/games, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"amJ" = ( +/obj/effect/landmark/start/darkpack/citizen/janitor, +/obj/structure/chair/wood/darkpack{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"amK" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"amL" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/condiment/protein{ + pixel_x = -9; + pixel_y = 11 + }, +/obj/item/reagent_containers/condiment/protein{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"amM" = ( +/obj/structure/table/wood, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"amN" = ( +/obj/effect/mapping_helpers/door/access/bar, +/obj/structure/vampdoor/simple, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"amO" = ( +/obj/vampire_computer, +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"amP" = ( +/obj/structure/hedge/opaque, +/obj/effect/turf_decal/siding/wood/dark/end{ + dir = 4 + }, +/turf/open/floor/plating/granite/black, +/area/vtm/interior/shop) +"amQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"amR" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"amS" = ( +/turf/open/floor/iron/stairs/left, +/area/vtm/interior/mansion) +"amT" = ( +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/old_clan_tzimisce, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"amU" = ( +/obj/structure/rack/food, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/cup/jerrycan/space_cleaner, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"amV" = ( +/obj/item/clothing/under/vampire/malkavian{ + pixel_x = 8; + pixel_y = -8 + }, +/mob/living/basic/cockroach{ + name = "Mike" + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/maintenance) +"amW" = ( +/obj/structure/vampdoor/old{ + dir = 1 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"amX" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"amY" = ( +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"amZ" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"ana" = ( +/obj/item/seeds/cannabis, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/cave) +"anb" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"anc" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = 9 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"and" = ( +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/techshop) +"ane" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = -8; + pixel_y = 14 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"anf" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/granite/black, +/area/vtm/interior/shop) +"ang" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/clinic) +"anh" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/theatre) +"ani" = ( +/obj/structure/glowshroom/glowcap, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/cave) +"anj" = ( +/obj/item/kirbyplants/random/dead{ + desc = "It doesn't look very healthy..."; + name = "dead plant" + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"ank" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"anl" = ( +/obj/effect/landmark/npcactivity, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"anm" = ( +/obj/effect/turf_decal/siding/grey/end{ + dir = 1 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall/interior) +"ann" = ( +/obj/structure/chair/comfy/darkpack/red{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/carpet/darkpack/bluesilver, +/area/vtm/westfield_mall/interior/theatre) +"ano" = ( +/obj/machinery/light/small/red/dim/directional/east, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"anp" = ( +/obj/machinery/light/prince/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"anq" = ( +/obj/structure/table/wood, +/obj/item/sord{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/toy/gun{ + pixel_x = 10 + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"anr" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/cave) +"ans" = ( +/obj/structure/transport/linear, +/turf/open/floor/plating/elevatorshaft, +/area/vtm/interior/elevator) +"ant" = ( +/obj/structure/vampdoor/simple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"anu" = ( +/obj/structure/fluff/tram_rail{ + dir = 4; + pixel_x = -8; + pixel_y = 8 + }, +/obj/effect/turf_decal/bordur/end, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/skatepark) +"anv" = ( +/obj/structure/rack/clothing/rand, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"anw" = ( +/obj/machinery/light/prince/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"anx" = ( +/obj/structure/barrels/rand, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"any" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"anz" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"anA" = ( +/obj/structure/vampdoor, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/smokeshop) +"anB" = ( +/obj/structure/chair/sofa/city_bench/metal{ + dir = 1 + }, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior) +"anC" = ( +/obj/machinery/fax/aasimites{ + fax_name = "Matrak Self-Defence" + }, +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"anD" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"anE" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"anF" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping41" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"anG" = ( +/obj/structure/railing/wooden_fence{ + dir = 4 + }, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"anH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"anI" = ( +/obj/structure/flora/tree/jungle/small/style_random, +/turf/open/misc/grass, +/area/vtm/westfield_mall/interior) +"anJ" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior/maintenance/atrium) +"anK" = ( +/obj/structure/chair/office/darkpack/red{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/primogen/malkavian, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/clinic) +"anL" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/random, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"anM" = ( +/obj/item/assembly/mousetrap/armed, +/obj/item/assembly/mousetrap/armed, +/obj/item/assembly/mousetrap/armed{ + pixel_x = 11; + pixel_y = -13 + }, +/obj/item/assembly/mousetrap/armed{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/assembly/mousetrap/armed{ + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"anN" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"anO" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/floor/city/circled, +/area/vtm/interior/shop) +"anP" = ( +/obj/item/book/bible{ + pixel_x = -7 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/knife/vamp{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"anQ" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/chantry) +"anR" = ( +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/vet_clinic) +"anT" = ( +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior) +"anU" = ( +/obj/effect/turf_decal/asphaltline/alt, +/obj/effect/turf_decal/bordur/inverse, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"anV" = ( +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"anW" = ( +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"anX" = ( +/obj/structure/bed/dogbed, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"anY" = ( +/obj/structure/railing/wooden_fence, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"anZ" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"aoa" = ( +/obj/structure/table, +/obj/item/chainsaw/vamp, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aob" = ( +/obj/structure/closet/secure_closet/freezer/fridge/all_access, +/obj/item/food/spaghetti/raw, +/obj/item/food/spaghetti/raw, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"aoc" = ( +/obj/structure/flora/rock/pile/darkpack, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aod" = ( +/obj/effect/decal/cleanable/trash, +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aoe" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aof" = ( +/obj/structure/table/modern, +/obj/item/toy/plush/shark{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aog" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/oven/range, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aoh" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/dim/directional/east, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/smokeshop) +"aoi" = ( +/obj/effect/decal/wallpaper/paper/darkgreen/low, +/turf/closed/wall/vampwall/junk, +/area/vtm/interior/sewer/nosferatu_town) +"aok" = ( +/obj/effect/decal/rugs, +/obj/machinery/telecomms/allinone/public, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"aol" = ( +/obj/structure/chair/comfy/darkpack/dark{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aom" = ( +/obj/effect/turf_decal/siding/grey/corner, +/obj/effect/turf_decal/siding/grey/inner_corner{ + dir = 1 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall/interior) +"aon" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aoo" = ( +/obj/effect/turf_decal/bordur/corner, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"aop" = ( +/obj/machinery/camera/autoname/directional/north{ + pixel_y = 21 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"aoq" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/water, +/area/vtm/interior/bianchiBank) +"aor" = ( +/obj/item/clothing/suit/hooded/heisenberg, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer) +"aos" = ( +/obj/effect/spawner/random/entertainment/plushie{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/effect/spawner/random/entertainment/musical_instrument{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aot" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior/anarch) +"aou" = ( +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"aov" = ( +/obj/effect/spawner/random/trash/bucket, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"aow" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"aox" = ( +/obj/structure/table/wood, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/siding/wood/light{ + dir = 4 + }, +/obj/item/food/muffin{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/food/muffin{ + pixel_x = -10; + pixel_y = 2 + }, +/obj/item/food/muffin{ + pixel_x = 1; + pixel_y = 13 + }, +/obj/item/food/muffin/berry{ + pixel_x = -8; + pixel_y = 13 + }, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aoy" = ( +/obj/effect/turf_decal/bordur/corner/inverse, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"aoz" = ( +/obj/structure/table, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aoA" = ( +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aoB" = ( +/obj/effect/turf_decal/bordur/corner/inverse{ + dir = 1 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aoD" = ( +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/supply, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aoE" = ( +/obj/effect/decal/wallpaper/blue, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/police) +"aoF" = ( +/obj/structure/sign/poster/city/pixies/directional/north{ + pixel_x = -6 + }, +/obj/structure/sign/poster/city/tiamat/directional/north{ + pixel_x = 7; + pixel_y = 31 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aoG" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/plant_produce, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/city/circled, +/area/vtm/interior/shop) +"aoH" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior) +"aoI" = ( +/obj/structure/chair/sofa/corp/left, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aoJ" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/maintenance) +"aoK" = ( +/obj/structure/table, +/obj/structure/sink/basin/directional/south{ + pixel_y = 4 + }, +/obj/structure/mirror/directional/north, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aoL" = ( +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aoN" = ( +/obj/structure/railing/wooden_fence{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"aoO" = ( +/obj/effect/turf_decal/bordur{ + dir = 10 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aoP" = ( +/obj/item/knife/kitchen{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/kitchen/fork, +/obj/item/kitchen/fork, +/obj/item/kitchen/fork, +/obj/structure/closet, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/rice, +/obj/item/reagent_containers/condiment/sugar, +/obj/item/plate, +/obj/item/kitchen/spoon, +/obj/item/kitchen/spoon, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aoQ" = ( +/obj/effect/decal/cleanable/litter, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"aoR" = ( +/obj/effect/turf_decal/bordur, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aoS" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/trash/bucket, +/obj/effect/spawner/random/trash/bucket, +/obj/effect/spawner/random/trash/bucket, +/obj/effect/spawner/random/decoration/paint, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"aoT" = ( +/obj/structure/vampdoor/glass, +/obj/effect/mapping_helpers/door/access/police_chief, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aoU" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 10 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aoV" = ( +/obj/structure/table/countertop/red, +/obj/structure/retail/gummaguts_menu{ + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aoW" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/westfield_mall/interior/techshop) +"aoX" = ( +/obj/structure/table, +/obj/effect/decal/pallet, +/obj/item/fireaxe/vamp{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/melee/baseball_bat/vamp{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/melee/baseball_bat/vamp{ + pixel_y = 5 + }, +/obj/item/melee/baseball_bat/vamp{ + pixel_x = 2; + pixel_y = 1 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aoY" = ( +/obj/effect/decal/coastline{ + dir = 9 + }, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"aoZ" = ( +/obj/structure/closet/crate/bin{ + pixel_y = 16; + pixel_x = -8 + }, +/obj/structure/coclock, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"apa" = ( +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"apb" = ( +/obj/darkpack_car/limousine/giovanni, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"apc" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"apd" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"ape" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/bar, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"apf" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"apg" = ( +/obj/effect/turf_decal/siding/grey/end, +/turf/open/misc/grass/random/bushes, +/area/vtm/westfield_mall/interior) +"aph" = ( +/obj/structure/railing/wooden_fence{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/dark, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior) +"api" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/collectable/tophat, +/obj/item/scythe/vamp, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"apj" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/underground_parking) +"apk" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/interior/church) +"apl" = ( +/obj/machinery/griddle, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"apm" = ( +/obj/structure/chair/wood/darkpack{ + dir = 1 + }, +/obj/effect/landmark/start/darkpack/anarch/bruiser, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"apn" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/suit/apron/surgical, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"apo" = ( +/obj/structure/fence/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"app" = ( +/obj/structure/closet, +/obj/item/clothing/suit/vampire/eod, +/obj/item/clothing/head/vampire/eod, +/obj/item/wirecutters, +/obj/item/screwdriver, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"apq" = ( +/obj/structure/vampdoor/old{ + dir = 1 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/eight, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"apr" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/east, +/obj/item/flashlight{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aps" = ( +/obj/effect/turf_decal/crosswalk{ + dir = 4 + }, +/obj/effect/turf_decal/asphalt, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"apt" = ( +/turf/closed/wall/vampwall/wood, +/area/vtm/westfield_mall/skatepark) +"apu" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/crate/large, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"apv" = ( +/obj/effect/decal/support, +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior) +"apw" = ( +/obj/structure/stairs/east, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"apx" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"apy" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"apz" = ( +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/maintenance) +"apA" = ( +/obj/structure/table, +/obj/item/screwdriver/power{ + pixel_x = 2; + pixel_y = 15 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"apB" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/item/paper_bin, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"apC" = ( +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"apD" = ( +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/old_clan_tzimisce, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"apE" = ( +/obj/structure/chair/office/darkpack/red{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/hecata/famiglia, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"apF" = ( +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 5 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"apG" = ( +/obj/structure/hedge, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"apH" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"apI" = ( +/obj/structure/sign/gym/right{ + pixel_y = 32; + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"apJ" = ( +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/vtm/westfield_mall/interior/theatre) +"apK" = ( +/obj/structure/chair/sofa/city_bench/metal/right/black{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"apL" = ( +/obj/machinery/hydroponics/simple/plastic, +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior/cave) +"apN" = ( +/obj/structure/table, +/obj/structure/sink/basin/directional/south{ + pixel_y = 2 + }, +/obj/structure/mirror/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"apO" = ( +/obj/structure/chair/wood/darkpack/red{ + dir = 1 + }, +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"apP" = ( +/obj/effect/landmark/latejoin_masquerade, +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"apQ" = ( +/obj/effect/decal/wallpaper/grey, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"apR" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"apS" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"apT" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"apU" = ( +/obj/structure/table/wood, +/obj/item/book/random{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/book/random{ + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"apV" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/taperecorder{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/pen/fountain, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"apW" = ( +/obj/structure/table, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/reagent_containers/cup/glass/trophy/gold_cup{ + pixel_y = 13 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"apX" = ( +/obj/structure/cargo_take, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"apY" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"apZ" = ( +/obj/structure/closet/crate/dumpster, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aqb" = ( +/obj/machinery/light/prince/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aqc" = ( +/turf/closed/wall/vampwall/wood, +/area/vtm/westfield_mall/interior/games_store) +"aqd" = ( +/obj/structure/table, +/obj/item/melee/baseball_bat/vamp{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/melee/baseball_bat/vamp{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/melee/vamp/tire{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/westfield_mall/interior/techshop) +"aqe" = ( +/obj/effect/turf_decal/bordur{ + dir = 9 + }, +/obj/effect/landmark/npcactivity, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aqf" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 1 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"aqg" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/machinery/sprinkler, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aqi" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/iv_drip, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aqj" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aqk" = ( +/obj/structure/sign/gym{ + pixel_y = 32; + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aql" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/wooden, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aqm" = ( +/obj/structure/reagent_dispensers/water_cooler/fallen, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aqn" = ( +/obj/effect/decal/pallet, +/obj/effect/spawner/random/structure/closet_empty/crate/with_loot, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aqo" = ( +/turf/closed/wall/vampwall/junk/alt, +/area/vtm/interior/sewer) +"aqp" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aqq" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/westfield_mall/interior/techshop) +"aqs" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = 10 + }, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aqt" = ( +/obj/transfer_point_vamp{ + id = "forestR1" + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aqu" = ( +/obj/structure/chair/sofa/corner/brown{ + dir = 4 + }, +/obj/item/toy/plush/shark, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"aqw" = ( +/obj/effect/turf_decal/bordur/corner/inverse{ + dir = 1 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aqx" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/cardboard, +/obj/item/reagent_containers/cooler_jug/water, +/obj/item/reagent_containers/cooler_jug/water, +/obj/item/reagent_containers/cooler_jug, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aqy" = ( +/turf/open/misc/grass/random/bushes, +/area/vtm/westfield_mall/interior) +"aqz" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/sewer) +"aqA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/city_map, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aqB" = ( +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aqC" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aqD" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/foodcourt) +"aqE" = ( +/obj/structure/closet/secure_closet/freezer/fridge/all_access, +/obj/item/storage/box/ingredients/american, +/obj/item/storage/box/ingredients/carnivore, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/grains, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/reagent_containers/condiment/milk, +/obj/machinery/light/small/directional/north, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aqF" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aqG" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker/impressa, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aqH" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/structure/desk_bell, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior/techshop) +"aqI" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"aqJ" = ( +/obj/structure/reagent_dispensers/water_cooler/jugless, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aqK" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/trash, +/obj/item/flashlight/lamp/green{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/toy/plush/moth{ + pixel_z = 10; + pixel_y = -3; + pixel_x = -4 + }, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/interior/sewer/nosferatu_town) +"aqL" = ( +/obj/structure/table/wood, +/obj/item/shovel/vamp, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aqM" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aqN" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aqO" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aqP" = ( +/obj/structure/sink/directional/east, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"aqQ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/dark, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aqR" = ( +/obj/structure/vampipe{ + icon_state = "piping31" + }, +/obj/structure/vampipe{ + icon_state = "piping31" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aqS" = ( +/obj/effect/turf_decal/bordur{ + dir = 6 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"aqT" = ( +/obj/structure/railing/corner, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aqU" = ( +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aqV" = ( +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/obj/structure/filingcabinet{ + pixel_x = 7 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aqW" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/broken/directional/north, +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior/cave) +"aqX" = ( +/turf/closed/wall/vampwall/brick_old, +/area/vtm/westfield_mall/skatepark) +"aqY" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aqZ" = ( +/obj/effect/turf_decal/siding/grey/end{ + dir = 4 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall/interior) +"ara" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"arb" = ( +/obj/structure/vampdoor/woodglass{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/hotel, +/area/vtm/interior/shop) +"arc" = ( +/obj/structure/table, +/obj/structure/retail/flower_shop, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"ard" = ( +/obj/structure/chair/plastic/darkpack, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"are" = ( +/obj/structure/hedge, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"arf" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping43" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"arg" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 1; + pixel_y = 5 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"arh" = ( +/obj/structure/table/countertop/red, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"ari" = ( +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"arj" = ( +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/effect/mapping_helpers/door/access/bank, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"ark" = ( +/obj/structure/chair/stool/bar/darkpack/red, +/turf/open/floor/plating/granite/black, +/area/vtm/interior/shop) +"arm" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/effect/turf_decal/siding/wood/light{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"arn" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"aro" = ( +/obj/structure/hedge, +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"arp" = ( +/obj/effect/turf_decal/darkpack/grass{ + dir = 1 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"arq" = ( +/obj/structure/curtain/cloth/fancy, +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/theatre) +"ars" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"art" = ( +/obj/structure/chair/sofa/city_bench/metal/middle/black{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aru" = ( +/obj/item/flashlight/flare/candle/infinite, +/obj/structure/table/wood, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"arw" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sink/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer/nosferatu_town) +"arx" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"ary" = ( +/obj/structure/vampdoor{ + dir = 4 + }, +/turf/open/floor/city/bacotell, +/area/vtm/interior/shop) +"arz" = ( +/obj/structure/rack/food, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"arA" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/light, +/obj/machinery/reagentgrinder, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"arB" = ( +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"arC" = ( +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"arD" = ( +/obj/structure/vampdoor{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/clinic, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"arE" = ( +/obj/effect/turf_decal/siding/grey{ + dir = 8 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"arF" = ( +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/interior/sewer/nosferatu_town) +"arG" = ( +/obj/effect/spawner/random/flora/grass, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"arH" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"arI" = ( +/turf/closed/wall/vampwall/rock, +/area/vtm/westfield_mall/forest) +"arJ" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/dark/corner{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"arK" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 6 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"arL" = ( +/obj/structure/cargo_put{ + pixel_y = 10 + }, +/obj/structure/platform/lowwall/brick_old, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"arM" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"arN" = ( +/obj/machinery/light/warm/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer/nosferatu_town) +"arO" = ( +/obj/structure/table, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"arP" = ( +/obj/structure/table/wood, +/obj/structure/retail/skate_shop, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"arQ" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"arR" = ( +/obj/effect/decal/shadow, +/obj/item/flashlight/lantern{ + light_on = 1; + start_on = 14 + }, +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior) +"arS" = ( +/obj/machinery/light/directional/south, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/maintenance) +"arT" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/hot_ishu) +"arU" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/smokeshop) +"arV" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"arW" = ( +/obj/machinery/griddle, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"arX" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/figure/syndie{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/toy/figure/cargotech{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/toy/figure/janitor{ + pixel_x = 1; + pixel_y = -8 + }, +/obj/item/toy/figure/prisoner{ + pixel_x = 5; + pixel_y = 18 + }, +/obj/effect/spawner/random/entertainment/toy_figure{ + pixel_x = -10; + pixel_y = -10 + }, +/obj/effect/spawner/random/entertainment/toy_figure{ + pixel_x = 10; + pixel_y = -6 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"arY" = ( +/obj/machinery/deepfryer{ + pixel_x = 2 + }, +/obj/structure/table/countertop/red, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"arZ" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"asa" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"asb" = ( +/turf/closed/wall/vampwall/market, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"asc" = ( +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"asd" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/clerk, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"ase" = ( +/obj/structure/table, +/obj/item/tattoo_kit{ + pixel_x = -12; + pixel_y = 9 + }, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"asf" = ( +/obj/structure/table/wood, +/obj/machinery/processor, +/obj/structure/sign/flag/italy/directional/north{ + pixel_y = 30 + }, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"asg" = ( +/obj/structure/table/wood, +/obj/item/paperwork/ancient, +/obj/effect/spawner/random/bureaucracy/folder{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/effect/spawner/random/bureaucracy/folder{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/paperwork/ancient, +/obj/effect/spawner/random/bureaucracy/paper{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/effect/spawner/random/bureaucracy/paper{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"ash" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/tape, +/obj/item/storage/pill_bottle/psicodine{ + pixel_y = 4; + pixel_x = 10 + }, +/obj/item/paper, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/clinic) +"asi" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"asj" = ( +/obj/structure/secure_safe/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"ask" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"asl" = ( +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"asm" = ( +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"asn" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior/maintenance/roof) +"aso" = ( +/obj/item/kirbyplants/darkpack/random, +/obj/structure/sign/flag/italy/directional/north{ + pixel_y = 30 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"asp" = ( +/obj/structure/rack/food/rand, +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"asq" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"asr" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/toy_xeno{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/toy/toy_xeno{ + pixel_x = -2; + pixel_y = -9 + }, +/obj/item/toy/toy_xeno{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"ass" = ( +/turf/closed/wall/vampwall/brick_old, +/area/vtm/interior/sewer/nosferatu_town) +"ast" = ( +/obj/structure/aquarium/prefilled, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"asu" = ( +/obj/structure/table, +/obj/item/battering_ram, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"asv" = ( +/obj/effect/turf_decal/bordur/corner, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"asw" = ( +/obj/structure/table, +/obj/machinery/radio_tranceiver/camarilla{ + pixel_x = -4; + pixel_y = 13 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"asx" = ( +/obj/structure/vampfence/rich, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"asy" = ( +/obj/structure/vampdoor/old{ + dir = 1 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/maintenance) +"asz" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"asA" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/dark, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"asB" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating/stone, +/area/vtm/interior/sewer/nosferatu_town) +"asC" = ( +/obj/effect/decal/coastline{ + dir = 6 + }, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"asE" = ( +/obj/structure/chair/sofa/corner/brown{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"asF" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/skatepark) +"asG" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"asH" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior/techshop) +"asI" = ( +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"asJ" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"asK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"asL" = ( +/turf/open/openspace, +/area/vtm/interior/elevator) +"asM" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall) +"asN" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood/dark/corner{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"asO" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"asP" = ( +/obj/structure/sign/poster/city/bloodrayne/directional/north, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"asQ" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"asR" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"asS" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"asT" = ( +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"asU" = ( +/obj/machinery/light/prince/directional/south, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"asV" = ( +/obj/structure/vampipe{ + icon_state = "piping7"; + pixel_y = 32 + }, +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"asW" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"asX" = ( +/obj/structure/table/countertop/bubway, +/obj/machinery/griddle, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"asY" = ( +/obj/structure/roadblock{ + dir = 4 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/interior/supply) +"asZ" = ( +/obj/effect/decal/graffiti, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"ata" = ( +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/smokeshop) +"atb" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/toner/large{ + pixel_y = 7 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"atc" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"ate" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/cockroach/sewer, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"atf" = ( +/obj/effect/turf_decal/crosswalk{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"atg" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/recharger{ + pixel_y = 16; + pixel_x = 6 + }, +/obj/machinery/recharger{ + pixel_y = 16; + pixel_x = -6 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"ath" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/anarch/sweeper, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"ati" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"atj" = ( +/obj/effect/turf_decal/siding/grey/inner_corner, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"atk" = ( +/obj/effect/decal/rugs, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/smokeshop) +"atl" = ( +/obj/structure/secure_safe/directional/north, +/obj/structure/table, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"atm" = ( +/obj/effect/turf_decal/siding/wood/light{ + dir = 1 + }, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"atn" = ( +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/clinic) +"ato" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/anarch) +"atp" = ( +/obj/effect/turf_decal/siding/grey, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"atq" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/access/old_clan_tzimisce, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"atr" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"ats" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 1 + }, +/obj/darkpack_car/retro/rand, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"att" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"atu" = ( +/obj/structure/sign/flag/california/rare{ + pixel_y = 28; + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"atv" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"atw" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/city/bacotell, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"atx" = ( +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aty" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"atz" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"atA" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/water, +/area/vtm/interior/bianchiBank) +"atB" = ( +/obj/effect/landmark/error, +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"atC" = ( +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/westfield_mall/interior/supply) +"atD" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/cardboard, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"atE" = ( +/obj/item/vampirebook/quran, +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"atF" = ( +/obj/structure/vampdoor/old{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"atG" = ( +/obj/structure/table, +/obj/structure/fluff/tv{ + pixel_y = 12 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/westfield_mall/interior/techshop) +"atH" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 6 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"atI" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/structure/table/wood, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"atJ" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/church) +"atK" = ( +/obj/structure/bed, +/obj/effect/spawner/random/bedsheet/any, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"atL" = ( +/obj/structure/table, +/obj/item/shovel/vamp, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"atM" = ( +/turf/open/misc/dirt, +/area/vtm/westfield_mall/interior/cave) +"atN" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/janitor) +"atO" = ( +/obj/structure/chair/wood/darkpack/red, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 9 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"atP" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/coffee_condi_display{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"atQ" = ( +/obj/structure/vampdoor/old, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"atR" = ( +/obj/structure/rack, +/obj/item/screwdriver, +/obj/item/screwdriver, +/obj/item/screwdriver, +/obj/item/wirecutters, +/obj/item/wirecutters, +/obj/item/wirecutters, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"atS" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior/games_store) +"atT" = ( +/obj/structure/table/modern, +/obj/item/clothing/under/vampire/punk{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/clothing/under/vampire/punk{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"atU" = ( +/obj/effect/turf_decal/siding/wood/dark, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/clinic) +"atV" = ( +/mob/living/carbon/human/npc/bandit, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"atW" = ( +/obj/structure/rack/food/rand, +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"atX" = ( +/obj/structure/hedge/opaque, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"atY" = ( +/obj/structure/flora/rock/darkpack_big, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior) +"atZ" = ( +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/structure/toilet{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/hot_ishu) +"aua" = ( +/obj/machinery/light/prince/directional/south, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aub" = ( +/obj/transfer_point_vamp{ + id = "forestR2" + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"auc" = ( +/obj/effect/decal/wallpaper/papers/six, +/obj/effect/decal/wallpaper/paper/darkgreen, +/turf/closed/wall/vampwall/junk, +/area/vtm/interior/sewer/nosferatu_town) +"aud" = ( +/obj/machinery/light/prince/broken/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aue" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stock_parts/power_store/cell{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/stock_parts/power_store/cell{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/stock_parts/power_store/cell{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/defibrillator/loaded{ + pixel_x = 1; + pixel_y = 20 + }, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"auf" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aug" = ( +/obj/effect/decal/cleanable/blood/splatter/oil, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"auh" = ( +/obj/effect/turf_decal/siding/wood/light{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aui" = ( +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/access/supply, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"auj" = ( +/obj/structure/glowshroom, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/cave) +"auk" = ( +/obj/structure/railing/wooden_fence{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aul" = ( +/obj/structure/vampdoor/wood, +/turf/open/misc/dirt, +/area/vtm/interior) +"aum" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/maintenance) +"aun" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"auo" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/stone, +/area/vtm/interior/sewer/nosferatu_town) +"aup" = ( +/obj/effect/turf_decal/darkpack/grass{ + dir = 8 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"auq" = ( +/obj/structure/vampdoor/simple{ + dir = 4 + }, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"aur" = ( +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aus" = ( +/obj/structure/vampdoor{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aut" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/dim/directional/east, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/supply) +"auu" = ( +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/camarilla) +"auv" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/smokeshop) +"auw" = ( +/turf/closed/wall/vampwall/junk, +/area/vtm/interior/sewer/nosferatu_town) +"aux" = ( +/obj/structure/table/reinforced, +/obj/item/melee/baton/vamp, +/obj/item/melee/baton/vamp, +/obj/item/melee/baton/vamp, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"auy" = ( +/obj/item/cigbutt, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall) +"auz" = ( +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/skatepark) +"auA" = ( +/obj/structure/hedge, +/obj/machinery/light/prince/directional/east, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"auB" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"auC" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"auD" = ( +/obj/structure/table/modern, +/obj/item/flashlight/lamp/green, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"auE" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"auF" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"auG" = ( +/obj/effect/landmark/start, +/obj/structure/chair/plastic/darkpack{ + dir = 1 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"auH" = ( +/obj/effect/decal/coastline{ + dir = 4 + }, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"auI" = ( +/obj/darkpack_car/limousine/camarilla, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"auJ" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping25" + }, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"auK" = ( +/turf/open/misc/dirt/rails, +/area/vtm/interior/sewer) +"auL" = ( +/mob/living/basic/mouse/vampire{ + name = "Scully" + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/maintenance) +"auM" = ( +/turf/open/misc/grass/random, +/area/vtm/westfield_mall/forest) +"auN" = ( +/obj/effect/turf_decal/siding/wood/light{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/clothing_store) +"auO" = ( +/obj/effect/spawner/random/structure/crate_loot, +/obj/effect/decal/pallet, +/obj/machinery/light/small/directional/east, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"auP" = ( +/obj/structure/vampdoor/old{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/npc, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"auQ" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior/maintenance) +"auS" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"auT" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping4" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"auU" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/voivode/bogatyr, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"auV" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"auW" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/fish_feed{ + pixel_x = -6; + pixel_y = 17 + }, +/obj/item/storage/box/aquarium_props{ + pixel_x = 9; + pixel_y = 17 + }, +/obj/item/aquarium_kit{ + pixel_x = 2 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"auX" = ( +/obj/structure/chair/office/darkpack/green, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"auY" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/supply) +"auZ" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/clinic) +"ava" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/obj/transfer_point_vamp{ + id = "garage4" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"avb" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/effect/spawner/random/bureaucracy/folder{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/pen, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"avc" = ( +/obj/structure/vampdoor/old{ + dir = 1 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/camarilla, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/roof) +"avd" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/machinery/light/prince/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"ave" = ( +/obj/structure/vampdoor/old, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/five, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"avf" = ( +/obj/structure/flora/rock/stalagmite, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"avg" = ( +/obj/structure/chair/comfy/darkpack/dark, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"avh" = ( +/obj/structure/curtain/cloth/fancy/mechanical/luxurious{ + pixel_y = 16 + }, +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/games_store) +"avi" = ( +/obj/structure/rack/food/rand, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"avj" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior) +"avk" = ( +/obj/structure/vampipe, +/turf/closed/wall/vampwall/metal/reinforced, +/area/vtm/westfield_mall/interior/endron_logging) +"avl" = ( +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/clothing_store) +"avm" = ( +/obj/structure/vampdoor/old{ + dir = 1 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/camarilla, +/obj/effect/mapping_helpers/door/lock_difficulty/eight, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/camarilla) +"avn" = ( +/obj/structure/stairs/ramp/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/skatepark) +"avo" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/decoration/ornament{ + pixel_x = 6; + pixel_y = 11 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"avp" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/obj/effect/turf_decal/asphalt, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"avq" = ( +/obj/structure/vampdoor/old{ + dir = 1 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/hot_ishu) +"avr" = ( +/obj/effect/decal/wallpaper/stone, +/turf/closed/wall/vampwall/market, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"avs" = ( +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "mall_elevator_1" + }, +/obj/machinery/button/elevator/directional/north{ + id = "mall_elevator_1"; + pixel_y = 35; + pixel_x = 9 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"avt" = ( +/obj/structure/vampdoor/old{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"avu" = ( +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/maintenance) +"avv" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"avw" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"avx" = ( +/obj/machinery/light/prince/ghost/directional/north, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"avy" = ( +/obj/structure/curtain/bounty/start_closed, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"avz" = ( +/obj/effect/turf_decal/siding/grey/corner, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"avA" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/dark, +/turf/open/floor/city/bacotell, +/area/vtm/interior/bianchiBank) +"avB" = ( +/obj/structure/table, +/obj/vampire_computer{ + pixel_y = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"avC" = ( +/obj/structure/table/modern, +/obj/structure/retail/smoke_menu, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"avD" = ( +/obj/structure/table/modern, +/obj/structure/retail/smoke_menu, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"avE" = ( +/obj/effect/decal/pallet, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"avF" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/shop) +"avG" = ( +/obj/structure/flora/rock/darkpack, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"avH" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"avI" = ( +/obj/effect/spawner/random/trash/mopbucket, +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping5" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"avJ" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"avK" = ( +/obj/structure/chair/sofa/city_bench/metal/left{ + dir = 4 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"avL" = ( +/obj/structure/closet/crate/cardboard, +/obj/effect/decal/pallet, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"avM" = ( +/obj/structure/table/countertop/black, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"avN" = ( +/obj/effect/turf_decal/siding/wood/light, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/clothing_store) +"avO" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"avP" = ( +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"avQ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 7 + }, +/obj/structure/detectiveboard/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"avR" = ( +/turf/open/space/basic, +/area/space) +"avS" = ( +/obj/structure/sign/warning/yes_smoking/circle/directional/north, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"avT" = ( +/obj/structure/vampfence/rich, +/obj/structure/retail/black_market, +/obj/structure/platform/lowwall/brick_old, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"avU" = ( +/obj/machinery/vending/donksofttoyvendor, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"avV" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"avW" = ( +/obj/effect/decal/wallpaper/blue, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/shop) +"avX" = ( +/obj/structure/closet, +/obj/item/gun/energy/taser/darkpack, +/obj/item/gun/energy/taser/darkpack, +/obj/item/melee/baton/vamp, +/obj/item/melee/baton/vamp, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"avY" = ( +/obj/structure/chair/sofa/corp/right, +/obj/machinery/light/blacklight/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"avZ" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"awa" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/interior/police) +"awb" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"awc" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/corp, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"awd" = ( +/obj/effect/turf_decal/siding/wood/dark/corner{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"awe" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"awf" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/supply) +"awg" = ( +/obj/structure/table/wood, +/obj/item/fish_tank{ + pixel_y = 6 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"awh" = ( +/obj/effect/turf_decal/bordur{ + dir = 6 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"awi" = ( +/obj/effect/turf_decal/bordur{ + dir = 10 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"awj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/grey{ + dir = 1 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"awk" = ( +/obj/structure/table, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/assembly/timer{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/assembly/signaler{ + pixel_x = 12; + pixel_y = 16 + }, +/obj/item/assembly/signaler{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/assembly/voice{ + pixel_x = -9; + pixel_y = 14 + }, +/obj/item/assembly/voice{ + pixel_x = -10; + pixel_y = 10 + }, +/obj/item/assembly/infra{ + pixel_x = -10; + pixel_y = 2 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"awm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"awn" = ( +/obj/structure/chair/sofa/city_bench/metal/right/yellow{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"awo" = ( +/obj/structure/chair/sofa/city_bench/metal/left/black, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"awp" = ( +/obj/structure/table, +/obj/item/fireaxe/vamp, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"awq" = ( +/obj/structure/chair/sofa/city_bench/metal/left{ + dir = 1 + }, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior) +"awr" = ( +/obj/structure/vampdoor/old, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/npc, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aws" = ( +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"awt" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/style_random, +/obj/structure/railing, +/obj/machinery/light/blacklight/directional/west, +/turf/open/misc/dirt, +/area/vtm/interior/sewer/nosferatu_town) +"awu" = ( +/obj/structure/railing/wooden_fence{ + dir = 8 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"awv" = ( +/obj/structure/chair/office/darkpack/blue, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aww" = ( +/obj/structure/chair/plastic/darkpack, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"awx" = ( +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/games_store) +"awy" = ( +/obj/structure/chair/sofa/middle/brown, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"awz" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"awA" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/mess, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/light/small/directional/east, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"awB" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior) +"awC" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/hospital/doctor, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"awD" = ( +/obj/structure/glowshroom/shadowshroom, +/turf/open/misc/grass, +/area/vtm/westfield_mall/forest) +"awE" = ( +/obj/structure/guncase, +/obj/item/gun/ballistic/automatic/darkpack/huntrifle, +/obj/item/gun/ballistic/automatic/darkpack/huntrifle, +/obj/item/gun/ballistic/automatic/darkpack/huntrifle, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"awF" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"awH" = ( +/obj/structure/sink/basin/directional/west, +/obj/structure/table/countertop/black, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"awI" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = 9 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"awJ" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"awK" = ( +/obj/structure/roofstuff/alt2, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"awL" = ( +/obj/effect/decal/wallpaper/paper/darkgreen, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/shop) +"awM" = ( +/obj/structure/rack, +/obj/item/storage/medkit/darkpack/advanced, +/obj/item/storage/medkit/darkpack, +/obj/item/storage/medkit/darkpack, +/obj/item/storage/medkit/darkpack/burn, +/obj/item/storage/medkit/darkpack/brute, +/obj/item/defibrillator/loaded, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/tank/internals/anesthetic, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"awN" = ( +/obj/effect/spawner/random/trash/rat, +/turf/open/water/vamp_sewer, +/area/vtm/interior/sewer) +"awO" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/skatepark) +"awP" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"awQ" = ( +/obj/effect/turf_decal/siding/grey, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"awR" = ( +/obj/effect/turf_decal/bordur, +/obj/effect/decal/rugs, +/obj/structure/vampdoor/old, +/obj/effect/mapping_helpers/door/access/nosferatu, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"awS" = ( +/obj/structure/lattice/grate, +/turf/open/openspace, +/area/vtm/westfield_mall/skatepark) +"awT" = ( +/obj/structure/vampdoor/old, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"awU" = ( +/obj/vampire_computer, +/obj/structure/table/countertop/bubway, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"awV" = ( +/obj/structure/hedge, +/obj/effect/spawner/random/flora/flowers, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"awW" = ( +/obj/structure/coclock/grandpa, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"awX" = ( +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/plating/granite/black, +/area/vtm/interior/shop) +"awY" = ( +/obj/structure/chair/office/darkpack/red{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"awZ" = ( +/obj/effect/decal/cleanable/litter, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"axa" = ( +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"axb" = ( +/obj/structure/stairs/east, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/maintenance) +"axc" = ( +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/smokeshop) +"axd" = ( +/obj/structure/rack/clothing/rand, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"axe" = ( +/obj/structure/table/countertop/teal, +/obj/structure/retail/deli, +/turf/open/floor/city/bacotell, +/area/vtm/interior/shop) +"axf" = ( +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/access/clinic, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/clinic) +"axg" = ( +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/anarch) +"axh" = ( +/obj/structure/chair/sofa/corp/corner, +/obj/structure/sign/painting{ + pixel_y = 32; + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"axi" = ( +/obj/effect/turf_decal/bordur{ + dir = 9 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"axj" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"axk" = ( +/obj/structure/table/wood, +/obj/structure/retail/hot_ishu, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/hot_ishu) +"axl" = ( +/obj/effect/turf_decal/siding/dark/inner_corner{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"axm" = ( +/obj/structure/vampfence/rich, +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/sidewalkalt, +/area/vtm/westfield_mall/forest) +"axn" = ( +/obj/structure/fluff/sat_dish, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"axo" = ( +/obj/effect/decal/wallpaper/paper/darkred, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/littleitaly) +"axp" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/decal/cleanable/molten_object/large, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"axq" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"axs" = ( +/obj/structure/chair/sofa/city_bench/metal/right/yellow, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"axt" = ( +/turf/open/floor/iron/stairs/right{ + dir = 8 + }, +/area/vtm/westfield_mall/interior/theatre) +"axu" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"axv" = ( +/obj/structure/railing/corner, +/obj/machinery/sprinkler, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"axw" = ( +/obj/effect/decal/wallpaper, +/obj/effect/decal/wallpaper/papers/eight{ + pixel_y = -4 + }, +/turf/closed/wall/vampwall/junk/alt, +/area/vtm/interior/sewer/nosferatu_town) +"axx" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/siding/wood/light, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"axy" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"axz" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/maintenance) +"axA" = ( +/obj/item/food/popcorn{ + pixel_x = 20; + pixel_y = 10 + }, +/obj/item/food/popcorn{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/food/popcorn{ + pixel_x = 20; + pixel_y = 10 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"axB" = ( +/obj/structure/closet, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"axC" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"axD" = ( +/obj/structure/closet/cabinet, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"axE" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/grey/inner_corner{ + dir = 4 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"axF" = ( +/obj/structure/table/wood/fancy/purple, +/obj/effect/spawner/random/entertainment/dice, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"axG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/maintenance/basement) +"axH" = ( +/obj/structure/sign/poster/city/car/directional/north{ + pixel_x = 7; + pixel_y = 31 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"axI" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/grey, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"axJ" = ( +/obj/structure/table, +/obj/item/clothing/mask/gas/explorer{ + name = "endron gasmask" + }, +/obj/item/clothing/mask/gas/explorer{ + name = "endron gasmask" + }, +/obj/item/clothing/mask/gas/explorer{ + name = "endron gasmask" + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"axK" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/clinic) +"axL" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/maintenance) +"axM" = ( +/obj/structure/chair/plastic/darkpack, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"axN" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"axO" = ( +/obj/machinery/light/directional/south, +/turf/open/openspace, +/area/vtm/westfield_mall/interior) +"axP" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/cockroach/sewer, +/turf/open/floor/wood/old, +/area/vtm/interior) +"axQ" = ( +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"axR" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"axS" = ( +/obj/machinery/oven, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"axT" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker/impressa{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/storage/box/coffeepack{ + pixel_y = 6 + }, +/obj/item/storage/box/coffeepack/robusta{ + pixel_y = 5 + }, +/obj/item/storage/box/coffeepack/robusta{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/bottle/syrup_bottle/caramel{ + pixel_x = 10; + pixel_y = 19 + }, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"axU" = ( +/obj/effect/turf_decal/bordur{ + dir = 6 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"axV" = ( +/obj/structure/table, +/obj/item/vamp/keys/salubri{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/vamp/keys/salubri{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/vamp/keys/salubri{ + pixel_x = -11; + pixel_y = 12 + }, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"axW" = ( +/obj/structure/hedge, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/interior/police) +"axX" = ( +/obj/structure/chair/sofa/right/brown, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"axY" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 4 + }, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"axZ" = ( +/obj/machinery/vending/assist, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aya" = ( +/obj/structure/rack/clothing{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"ayb" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 1 + }, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"ayc" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"ayd" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/water/acid, +/area/vtm/westfield_mall/forest) +"aye" = ( +/obj/fusebox, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"ayf" = ( +/obj/item/knife/kitchen{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/kitchen/fork, +/obj/item/kitchen/fork, +/obj/item/kitchen/fork, +/obj/structure/closet, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/rice, +/obj/item/reagent_containers/condiment/sugar, +/obj/item/plate, +/obj/item/kitchen/spoon, +/obj/item/kitchen/spoon, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"ayg" = ( +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"ayh" = ( +/obj/effect/decal/coastline{ + dir = 1 + }, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"ayi" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"ayj" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/dromedaryco{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/flashlight/lantern{ + light_on = 1; + pixel_y = 15; + pixel_x = 11; + desc = "A cheap plastic lantern with eye-melting LEDs."; + name = "camping lantern"; + light_color = "#AFFFF4"; + start_on = 14 + }, +/obj/item/fishing_rod{ + pixel_y = -18 + }, +/obj/item/food/burger/plain{ + name = "stale burger"; + pixel_y = 11; + pixel_x = -8 + }, +/obj/item/food/burger/plain{ + name = "stale burger"; + pixel_x = 6; + pixel_y = 10 + }, +/obj/underplate, +/obj/item/reagent_containers/cup/glass/baggie/meth/cocaine{ + pixel_y = 13; + pixel_x = -1 + }, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"ayk" = ( +/obj/structure/table, +/obj/structure/sink/directional/east{ + icon_state = "basin" + }, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aym" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/light{ + dir = 6 + }, +/obj/item/flashlight/lamp, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"ayn" = ( +/obj/structure/chair/sofa/city_bench/metal/left/puce{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer) +"ayo" = ( +/mob/living/carbon/human/npc/bandit, +/obj/structure/chair/plastic/darkpack{ + dir = 1 + }, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"ayp" = ( +/obj/effect/landmark/start/darkpack/chantry/archivist, +/obj/structure/chair/office/darkpack/red{ + dir = 8 + }, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"ayq" = ( +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior) +"ayr" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"ays" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"ayt" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"ayu" = ( +/obj/effect/turf_decal/bordur/corner/inverse, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"ayv" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/underground_parking) +"ayw" = ( +/turf/closed/wall/vampwall/junk, +/area/vtm/westfield_mall) +"ayx" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ayy" = ( +/obj/structure/curtain/bounty, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"ayA" = ( +/obj/effect/turf_decal/siding/grey/inner_corner{ + dir = 1 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"ayB" = ( +/obj/structure/table/countertop/red, +/obj/vampire_computer/box{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"ayC" = ( +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/littleitaly) +"ayD" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"ayE" = ( +/obj/effect/mapping_helpers/door/access/camarilla, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/eight, +/obj/structure/vampdoor/reinf{ + dir = 8 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/camarilla) +"ayF" = ( +/obj/machinery/light/dim/directional/south, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"ayG" = ( +/obj/structure/table, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"ayH" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"ayJ" = ( +/obj/structure/steps{ + dir = 4; + pixel_y = -1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"ayK" = ( +/obj/effect/decal/rugs, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/dojo) +"ayL" = ( +/obj/effect/decal/pallet, +/obj/structure/table/wood, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ayM" = ( +/obj/structure/roofstuff/vent_end{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"ayN" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/railing, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"ayO" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/broken/directional/north, +/obj/machinery/light/small/blacklight/directional/east, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/skatepark) +"ayP" = ( +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"ayQ" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/obj/machinery/light/cold/directional/north, +/obj/item/reagent_containers/cup/glass/shaker, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"ayR" = ( +/obj/structure/filingcabinet/white, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"ayS" = ( +/obj/fake_platform/stone/noclimb, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"ayT" = ( +/turf/open/floor/iron/stairs/right, +/area/vtm/interior/mansion) +"ayU" = ( +/obj/structure/table/wood, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"ayV" = ( +/obj/structure/vampipe{ + icon_state = "piping3"; + pixel_y = 32 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ayW" = ( +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/lasombra, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"ayX" = ( +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"ayY" = ( +/obj/structure/coclock, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"ayZ" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/camarilla) +"aza" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"azb" = ( +/obj/machinery/light/dim/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"azc" = ( +/obj/structure/closet/secure_closet/freezer/empty, +/obj/item/storage/box/coffeepack, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/milk, +/obj/machinery/light/directional/north, +/turf/open/floor/city/bacotell, +/area/vtm/interior/bianchiBank) +"azd" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/sidewalkalt, +/area/vtm/westfield_mall/forest) +"aze" = ( +/obj/structure/coclock/grandpa{ + pixel_y = 12 + }, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/clinic) +"azf" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/light{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"azg" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 8 + }, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"azh" = ( +/obj/effect/decal/wallpaper/stone, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior) +"azi" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker/impressa{ + pixel_y = 8 + }, +/obj/structure/coclock, +/turf/open/floor/city/bacotell, +/area/vtm/interior/bianchiBank) +"azj" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/blood_hunt, +/obj/effect/turf_decal/siding/wood/light{ + dir = 8 + }, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"azk" = ( +/obj/structure/closet/jcloset, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"azl" = ( +/obj/effect/landmark/start/darkpack/chantry/gargoyle, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"azm" = ( +/obj/effect/turf_decal/siding/wood/dark/corner{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"azn" = ( +/obj/structure/roadblock{ + dir = 4 + }, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"azo" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"azp" = ( +/obj/effect/turf_decal/bordur/corner/inverse{ + dir = 1 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"azq" = ( +/obj/structure/rack/food{ + dir = 4; + pixel_x = 8; + pixel_y = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"azr" = ( +/obj/structure/table/countertop/teal, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/games_store) +"azs" = ( +/obj/structure/table/optable, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"azt" = ( +/obj/structure/mannequin/plastic/fancy{ + anchored = 1 + }, +/obj/effect/turf_decal/siding/wood/light/end, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/clothing_store) +"azu" = ( +/obj/structure/chair/darkpack, +/obj/effect/landmark/start/darkpack/supply/tech, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"azv" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"azw" = ( +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/obj/structure/filingcabinet{ + pixel_x = 7 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"azx" = ( +/obj/structure/table, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/interior/police) +"azy" = ( +/obj/structure/toilet, +/turf/open/misc/dirt, +/area/vtm/interior) +"azz" = ( +/turf/closed/wall/vampwall/brick_old, +/area/vtm/interior/sewer) +"azA" = ( +/obj/structure/flora/tree/dead, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"azB" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"azD" = ( +/obj/machinery/light/directional/east{ + pixel_y = 10 + }, +/turf/open/openspace, +/area/vtm/westfield_mall/interior) +"azE" = ( +/turf/closed/wall/vampwall/rustbad, +/area/vtm/interior/sewer) +"azF" = ( +/obj/structure/vampfence/rich, +/obj/structure/platform/lowwall/brick_old, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"azG" = ( +/obj/machinery/light/directional/north, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"azH" = ( +/obj/structure/table, +/obj/item/tattoo_kit{ + pixel_x = 8; + pixel_y = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"azI" = ( +/obj/structure/chair/sofa/city_bench/metal/right/black{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"azJ" = ( +/obj/structure/closet/crate/cardboard, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"azK" = ( +/obj/structure/chair/sofa/city_bench/metal/left/yellow, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"azL" = ( +/obj/effect/decal/wallpaper/paper/rich, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/chantry) +"azM" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"azN" = ( +/obj/structure/vampdoor{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/toreador, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"azO" = ( +/obj/structure/vampdoor, +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"azP" = ( +/obj/structure/stairs/south, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"azQ" = ( +/obj/structure/vampdoor/old{ + dir = 1 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/camarilla, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"azR" = ( +/obj/structure/table, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"azS" = ( +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/obj/structure/filingcabinet/security{ + pixel_x = 7 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"azT" = ( +/obj/effect/turf_decal/darkpack/grass{ + dir = 5 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"azU" = ( +/mob/living/carbon/human/npc/illegal, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"azV" = ( +/turf/open/floor/city/circled, +/area/vtm/interior/shop) +"azW" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"azX" = ( +/obj/structure/table/wood, +/obj/vampire_computer{ + pixel_y = 2 + }, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"azY" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aAa" = ( +/obj/structure/table, +/obj/effect/decal/pallet, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aAc" = ( +/obj/structure/rack/clothing/rand{ + dir = 4 + }, +/obj/structure/coclock, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aAd" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aAe" = ( +/obj/structure/table, +/obj/item/smartphone/emergency, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aAf" = ( +/obj/structure/table/modern, +/obj/machinery/light/blacklight/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aAg" = ( +/obj/structure/table, +/obj/structure/mirror/directional/north, +/obj/structure/sink/basin/directional/south{ + pixel_y = 2 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"aAh" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aAi" = ( +/obj/effect/decal/wallpaper/papers/two, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/anarch) +"aAj" = ( +/obj/structure/table/wood, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/siding/wood/light{ + dir = 4 + }, +/obj/item/food/poppypretzel{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/food/poppypretzel{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/item/food/poppypretzel{ + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aAk" = ( +/obj/effect/turf_decal/bordur/inverse, +/obj/darkpack_car/retro/rand{ + dir = 4; + pixel_y = -42 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aAl" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aAm" = ( +/turf/open/floor/city/bacotell, +/area/vtm/interior/shop) +"aAn" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aAo" = ( +/obj/item/card/hunter{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"aAp" = ( +/obj/structure/chair/darkpack/blue{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aAq" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/toilet{ + dir = 4; + pixel_y = 17 + }, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aAr" = ( +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/hot_ishu) +"aAs" = ( +/obj/structure/railing, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aAt" = ( +/obj/effect/decal/rugs, +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aAu" = ( +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aAv" = ( +/obj/effect/landmark/start/darkpack/citizen/citizen, +/obj/structure/chair/plastic/darkpack{ + dir = 1 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"aAw" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"aAx" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"aAz" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aAB" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/smokeshop) +"aAC" = ( +/obj/structure/vampdoor/reinf{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/eight, +/obj/effect/mapping_helpers/door/access/npc, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aAD" = ( +/obj/structure/rack, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aAE" = ( +/obj/structure/vampdoor/woodglass, +/obj/effect/mapping_helpers/door/access/chantry, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aAF" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/chantry) +"aAG" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/light/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aAH" = ( +/obj/structure/vampdoor/simple, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aAI" = ( +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aAJ" = ( +/obj/effect/turf_decal/siding/grey/corner{ + dir = 4 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"aAK" = ( +/obj/structure/railing, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall) +"aAL" = ( +/mob/living/carbon/human/npc/shop{ + resistant_to_disciplines = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"aAM" = ( +/obj/machinery/light/directional/west{ + pixel_y = 10 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/foodcourt) +"aAN" = ( +/obj/effect/decal/wallpaper/padded, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior) +"aAO" = ( +/obj/machinery/atm{ + dir = 4; + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aAP" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/entertainment/gambling, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aAQ" = ( +/obj/structure/chair/darkpack{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/supply/tech, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/westfield_mall/interior/supply) +"aAR" = ( +/obj/structure/table/modern, +/obj/item/clothing/under/vampire/gothic{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/under/vampire/gothic{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aAS" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aAT" = ( +/turf/open/floor/glass/reinforced, +/area/vtm/westfield_mall) +"aAU" = ( +/obj/structure/flora/rock/darkpack, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aAV" = ( +/turf/open/floor/carpet/darkpack/hotel, +/area/vtm/interior/shop) +"aAW" = ( +/obj/effect/turf_decal/bordur/corner/inverse, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aAX" = ( +/obj/structure/vampdoor/glass, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aAY" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/structure/sign/poster/city/vesuvius/directional/north{ + pixel_x = -6 + }, +/obj/structure/sign/poster/city/tiamat/directional/north{ + pixel_x = 8; + pixel_y = 33 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aAZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/skatepark) +"aBa" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/effect/turf_decal/bordur{ + dir = 9 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"aBb" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping25" + }, +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"aBc" = ( +/obj/structure/table/wood, +/obj/vampire_computer, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aBd" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aBe" = ( +/obj/structure/closet/crate/large{ + pixel_x = -16; + pixel_y = 10 + }, +/obj/machinery/light/directional/north{ + pixel_x = -16 + }, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aBf" = ( +/obj/structure/rack/food, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"aBg" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aBh" = ( +/obj/effect/decal/garou_glyph/wyrm, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aBi" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"aBj" = ( +/obj/structure/vampfence/rich, +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"aBk" = ( +/obj/structure/chair/sofa/city_bench/metal/middle/black, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aBl" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aBm" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"aBn" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 1 + }, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"aBo" = ( +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/games_store) +"aBp" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/vet_clinic) +"aBq" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aBr" = ( +/obj/effect/turf_decal/asphaltline/alt, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aBs" = ( +/obj/effect/decal/cleanable/blood/splatter/oil, +/obj/effect/turf_decal/caution/red, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aBt" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/figure/cmo{ + pixel_y = 14; + pixel_x = -4 + }, +/obj/item/toy/figure/hop{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/toy/figure/ian{ + pixel_x = 8 + }, +/obj/item/toy/figure/captain{ + pixel_x = -4 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"aBu" = ( +/turf/open/misc/grass, +/area/vtm/westfield_mall/forest) +"aBv" = ( +/obj/machinery/sprinkler, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aBw" = ( +/obj/structure/chair/sofa/city_bench/metal/right/black, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aBx" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 10 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aBz" = ( +/obj/darkpack_car/rand{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aBA" = ( +/obj/effect/spawner/random/bureaucracy/pen, +/obj/item/paper_bin, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/vet_clinic) +"aBB" = ( +/obj/item/reagent_containers/cup/watering_can/metal, +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior/cave) +"aBC" = ( +/obj/structure/closet, +/obj/item/clothing/under/vampire/police, +/obj/item/clothing/under/vampire/police/long, +/obj/item/clothing/under/vampire/police/pants, +/obj/item/clothing/under/vampire/police/turtleneck, +/obj/item/clothing/under/vampire/police/utility, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aBD" = ( +/obj/structure/vampdoor, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aBE" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"aBF" = ( +/obj/effect/turf_decal/bordur{ + dir = 5 + }, +/obj/effect/landmark/npcactivity, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aBG" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aBH" = ( +/obj/structure/chair/wood/darkpack, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"aBI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/old, +/area/vtm/interior) +"aBJ" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aBK" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aBL" = ( +/obj/structure/curtain/cloth/fancy, +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/dojo) +"aBM" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior) +"aBN" = ( +/obj/effect/decal/rugs, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aBO" = ( +/obj/transfer_point_vamp{ + id = "garage2" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aBP" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aBQ" = ( +/obj/machinery/light/red/directional/west, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aBR" = ( +/obj/structure/vampdoor/old, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aBS" = ( +/obj/darkpack_car/track, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aBT" = ( +/obj/structure/table/countertop/bacotell, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/city/bacotell, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aBU" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/storage/bag/books, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aBV" = ( +/obj/structure/chair/sofa/city_bench/metal/left/black{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aBW" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/handcuffs, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aBX" = ( +/obj/structure/railing/wooden_fence{ + dir = 6 + }, +/obj/structure/table/countertop, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aBY" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aBZ" = ( +/obj/effect/turf_decal/siding/white/inner_corner{ + dir = 8 + }, +/turf/open/water, +/area/vtm/interior/bianchiBank) +"aCa" = ( +/turf/closed/wall/vampwall/brick_old, +/area/awaymission/errorroom) +"aCb" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"aCc" = ( +/obj/machinery/light/small/directional/north, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/maintenance/roof) +"aCd" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/sprinkler, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aCe" = ( +/obj/fake_platform/grey/double, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aCf" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aCg" = ( +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/eighties, +/area/vtm/westfield_mall/interior/arcade) +"aCh" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 1 + }, +/obj/effect/turf_decal/asphalt, +/obj/effect/turf_decal/bordur/inverse{ + dir = 1 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aCi" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 4 + }, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aCj" = ( +/obj/structure/table/wood, +/obj/item/clothing/under/vampire/turtleneck_black, +/obj/item/clothing/under/vampire/turtleneck_black, +/obj/item/clothing/under/vampire/turtleneck_black, +/obj/item/clothing/under/vampire/turtleneck_black, +/obj/item/clothing/under/vampire/turtleneck_navy, +/obj/item/clothing/under/vampire/turtleneck_navy, +/obj/item/clothing/under/vampire/turtleneck_navy, +/obj/item/clothing/under/vampire/turtleneck_navy, +/obj/item/clothing/under/vampire/turtleneck_red, +/obj/item/clothing/under/vampire/turtleneck_red, +/obj/item/clothing/under/vampire/turtleneck_red, +/obj/item/clothing/under/vampire/turtleneck_red, +/obj/item/clothing/under/vampire/turtleneck_white, +/obj/item/clothing/under/vampire/turtleneck_white, +/obj/item/clothing/under/vampire/turtleneck_white, +/obj/item/clothing/under/vampire/turtleneck_white, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aCk" = ( +/obj/effect/decal/wallpaper/gold/alt, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/camarilla) +"aCl" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aCm" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating/granite/black, +/area/vtm/interior/shop) +"aCn" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aCo" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/theatre) +"aCp" = ( +/obj/structure/chair/wood/darkpack{ + dir = 1 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"aCq" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/city/circled, +/area/vtm/interior/shop) +"aCr" = ( +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/hot_ishu) +"aCs" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aCt" = ( +/obj/item/cardboard_cutout, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"aCu" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aCv" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/theatre) +"aCw" = ( +/obj/effect/turf_decal/siding/wood/dark, +/obj/effect/landmark/start/darkpack/hecata/famiglia, +/turf/open/floor/city/bacotell, +/area/vtm/interior/bianchiBank) +"aCx" = ( +/obj/structure/chair/wood/darkpack/red{ + dir = 1 + }, +/obj/effect/landmark/start/darkpack/primogen/banu, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aCy" = ( +/obj/effect/decal/shadow, +/obj/structure/flora/rock/darkpack, +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior) +"aCz" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/maintenance) +"aCA" = ( +/obj/machinery/light/prince/directional/east, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aCB" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping12" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aCC" = ( +/obj/structure/table/wood, +/obj/item/fish_tank{ + pixel_y = 5 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aCD" = ( +/obj/machinery/vending/boozeomat/private, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"aCE" = ( +/obj/structure/vampdoor{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/supply, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aCF" = ( +/obj/structure/curtain/bounty{ + pixel_y = -27 + }, +/obj/machinery/light/prince/directional/north, +/obj/structure/chair/wood/darkpack/red{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"aCG" = ( +/obj/effect/decal/support, +/obj/effect/decal/shadow, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"aCH" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"aCI" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/theatre) +"aCJ" = ( +/obj/structure/rack/food, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"aCK" = ( +/obj/structure/table/wood, +/obj/item/book/random{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/book/random{ + pixel_x = 10; + pixel_y = 3 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aCL" = ( +/obj/effect/spawner/random/trash/graffiti, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aCM" = ( +/obj/structure/guncase, +/obj/item/gun/ballistic/automatic/darkpack/ak74, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"aCN" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/trash/janitor_supplies{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/effect/spawner/random/trash/janitor_supplies{ + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"aCO" = ( +/obj/structure/rack/clothing/rand{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aCP" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping27" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aCQ" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aCR" = ( +/obj/structure/table/wood, +/obj/item/stack/dollar/hundred, +/obj/item/stack/dollar/hundred, +/obj/item/stack/dollar/hundred, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aCS" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aCT" = ( +/obj/structure/table/modern, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aCU" = ( +/obj/structure/vampdoor/simple{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/turf_decal/siding/grey{ + dir = 4 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aCV" = ( +/obj/effect/turf_decal/asphaltline/alt, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aCX" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aCY" = ( +/obj/effect/turf_decal/siding/grey/corner{ + dir = 8 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"aCZ" = ( +/obj/structure/railing, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aDa" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/maintenance/no_decals/two, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"aDb" = ( +/obj/structure/rack/food, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aDc" = ( +/obj/structure/hedge, +/obj/machinery/light/directional/north{ + pixel_x = -16 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aDd" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 1 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aDe" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aDf" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/effect/mapping_helpers/door/access/bank, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aDg" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping25" + }, +/obj/effect/turf_decal/asphalt, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aDh" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aDi" = ( +/obj/machinery/light/prince/directional/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aDj" = ( +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 11; + pixel_y = 2 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aDk" = ( +/obj/structure/lattice/grate{ + dir = 4 + }, +/turf/open/water/vamp_sewer, +/area/vtm/interior/sewer) +"aDl" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/table/reinforced, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aDm" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/hooded/robes/tremere{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/suit/hooded/robes/tremere{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/clothing/suit/hooded/robes/tremere{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/item/clothing/suit/hooded/robes/tremere{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/clothing/suit/hooded/robes/tremere{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/clothing/suit/hooded/robes/tremere{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/suit/hooded/robes/magister{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clothing/suit/hooded/robes/magister{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/clothing/suit/hooded/robes/magister{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aDn" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aDo" = ( +/obj/effect/turf_decal/siding/grey/inner_corner{ + dir = 8 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"aDp" = ( +/obj/structure/table/countertop/yellow, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior) +"aDq" = ( +/obj/effect/landmark/latejoin, +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aDr" = ( +/obj/structure/table, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aDs" = ( +/obj/structure/roofstuff/vent_end, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aDt" = ( +/obj/structure/fire_barrel, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aDu" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/clinic) +"aDv" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aDw" = ( +/obj/structure/table/wood, +/obj/structure/spirit_board, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aDx" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_containers/blood/random, +/obj/item/masquerade_contract, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"aDy" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aDz" = ( +/obj/effect/decal/wallpaper/grey{ + color = "#6d6d6d" + }, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/shop) +"aDA" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior) +"aDB" = ( +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/cheese/wedge, +/obj/item/food/cheese/wedge, +/obj/item/food/cheese/wedge, +/obj/item/food/cheese/wedge, +/obj/item/food/cheese/wedge, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/cannoli, +/obj/item/food/cannoli, +/obj/item/food/cannoli, +/obj/item/food/cannoli, +/obj/structure/closet/secure_closet/freezer/kitchen/all_access, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"aDC" = ( +/obj/machinery/light/prince/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aDD" = ( +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aDE" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/clothing_store) +"aDF" = ( +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"aDG" = ( +/turf/closed/indestructible/the_matrix, +/area/vtm/westfield_mall) +"aDH" = ( +/obj/effect/decal/graffiti, +/obj/effect/decal/pallet, +/obj/structure/fluff/tv{ + icon_state = "tv_nature"; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/trash, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aDI" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aDJ" = ( +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aDK" = ( +/obj/structure/chair/plastic{ + dir = 4; + pixel_y = 7 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aDL" = ( +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aDM" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/camarilla/harpy, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"aDN" = ( +/obj/effect/decal/wallpaper/blue, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/clinic) +"aDO" = ( +/obj/machinery/light/prince/directional/north, +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"aDP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aDQ" = ( +/obj/effect/landmark/start/darkpack/citizen/citizen, +/obj/structure/chair/plastic/darkpack, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"aDR" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"aDS" = ( +/obj/structure/filingcabinet/security{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/interior/police) +"aDT" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/camarilla/harpy, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"aDU" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = 10 + }, +/obj/item/camera_film{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/item/camera_film{ + pixel_x = 15; + pixel_y = 9 + }, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aDV" = ( +/obj/structure/curtain/bounty, +/obj/structure/platform/lowwall/wood/window, +/turf/open/floor/plating/rough, +/area/vtm/interior) +"aDW" = ( +/obj/structure/table, +/obj/underplate, +/obj/vampire_computer/prince, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"aDX" = ( +/obj/structure/chair/sofa/city_bench/metal/right{ + dir = 4 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"aDY" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aDZ" = ( +/obj/structure/table/reinforced, +/obj/item/food/donut/choco{ + pixel_x = -4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/underground_parking) +"aEa" = ( +/obj/structure/chair/wood/darkpack, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aEb" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/grey{ + dir = 4 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aEc" = ( +/obj/effect/turf_decal/bordur{ + dir = 6 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aEd" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/briefcase, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aEe" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aEf" = ( +/obj/effect/spawner/random/structure/crate_loot, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aEg" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aEh" = ( +/obj/structure/coclock, +/obj/structure/table/reinforced, +/obj/item/table_clock, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aEi" = ( +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "mall_elevator_1" + }, +/obj/machinery/button/elevator/directional/north{ + id = "mall_elevator_1"; + pixel_y = 35; + pixel_x = 9 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aEj" = ( +/obj/structure/closet/crate/wooden, +/obj/item/vamp/keys/banuhaqim, +/obj/item/vamp/keys/banuhaqim, +/obj/item/vamp/keys/banuhaqim, +/obj/item/knife/vamp, +/obj/item/knife/vamp, +/obj/item/knife/vamp, +/obj/item/masquerade_contract, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aEk" = ( +/obj/structure/platform/lowwall/painted/window/reinforced, +/turf/open/floor/plating/rough, +/area/vtm/interior/police) +"aEm" = ( +/obj/structure/stairs/west, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/foodcourt) +"aEn" = ( +/obj/structure/lattice/grate{ + dir = 4 + }, +/turf/open/openspace, +/area/vtm/westfield_mall) +"aEo" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/effect/decal/cleanable/trash, +/obj/structure/sign/warning/directional/north, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aEp" = ( +/obj/effect/decal/cleanable/trash, +/obj/effect/landmark/npcactivity, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aEq" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/grey/inner_corner{ + dir = 8 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aEr" = ( +/obj/effect/landmark/start/darkpack/camarilla/sheriff, +/obj/structure/chair/office/darkpack/blue{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aEs" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping22" + }, +/obj/structure/vampipe{ + pixel_y = 24; + icon_state = "piping29" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aEt" = ( +/obj/structure/closet/crate/bin{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aEu" = ( +/obj/structure/coclock, +/obj/structure/chair/sofa/right/brown, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aEv" = ( +/obj/item/plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/old, +/area/vtm/interior) +"aEw" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aEx" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/structure/sign/warning/gas_mask, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aEy" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/figure/wizard{ + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aEz" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_midori{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/storage/fancy/cigarettes/cigpack_midori{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/storage/fancy/cigarettes/cigpack_midori{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigpack_midori{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/smokeshop) +"aEA" = ( +/obj/structure/table/countertop/bubway, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aEB" = ( +/obj/effect/turf_decal/siding/wood/dark/corner{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aEC" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/obj/structure/vampipe{ + icon_state = "piping40"; + pixel_x = 27; + pixel_y = 33 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aED" = ( +/obj/structure/table/countertop/black, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aEE" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"aEF" = ( +/obj/structure/punching_bag, +/obj/effect/decal/rugs, +/obj/effect/decal/rugs, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/dojo) +"aEG" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aEH" = ( +/obj/effect/spawner/random/occult/artifact, +/obj/structure/table/wood, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aEI" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/vampire/helmet{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/clothing/head/vampire/helmet{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/clothing/suit/vampire/vest{ + pixel_x = 4 + }, +/obj/item/clothing/suit/vampire/vest{ + pixel_x = -3 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aEJ" = ( +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aEK" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aEL" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aEM" = ( +/obj/effect/decal/wallpaper/grey, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/elevator) +"aEN" = ( +/obj/machinery/light/blacklight/directional/south, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/hot_ishu) +"aEO" = ( +/obj/structure/railing/wooden_fence{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/obj/structure/lattice/grate, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/games_store) +"aEP" = ( +/obj/structure/table, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"aEQ" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/bianchiBank) +"aER" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/dojo) +"aES" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"aET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/old, +/area/vtm/interior) +"aEU" = ( +/obj/structure/vampdoor/old{ + dir = 8; + lock_id = "nosferatu"; + locked = 1; + lockpick_difficulty = 20 + }, +/obj/effect/mapping_helpers/door/access/nosferatu, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aEV" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/interior/shop) +"aEW" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/figure/dsquad, +/obj/item/toy/figure/dsquad, +/obj/item/toy/figure/dsquad{ + pixel_x = 7; + pixel_y = 20 + }, +/obj/item/toy/figure/dsquad{ + pixel_x = -9; + pixel_y = 11 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aEX" = ( +/obj/effect/decal/wallpaper/blue/low, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/police) +"aEY" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aEZ" = ( +/obj/structure/bed, +/obj/structure/coclock, +/obj/item/bedsheet/yellow, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/interior/sewer/nosferatu_town) +"aFa" = ( +/obj/fake_platform/stone/easyclimb, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aFb" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/effect/decal/rugs, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aFc" = ( +/turf/cordon, +/area/misc/cordon) +"aFd" = ( +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/access/clinic, +/turf/open/floor/plating/concrete, +/area/vtm/interior/clinic) +"aFe" = ( +/obj/machinery/chem_master, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aFf" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aFg" = ( +/obj/machinery/light/directional/west, +/obj/structure/table/wood, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"aFh" = ( +/obj/structure/table/modern, +/obj/item/toy/figure/chef{ + pixel_x = -9; + pixel_y = 13; + anchored = 1 + }, +/obj/item/toy/figure/paramedic{ + pixel_y = 11; + anchored = 1 + }, +/obj/item/toy/figure/miner{ + pixel_x = -5; + pixel_y = 4; + anchored = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aFi" = ( +/obj/effect/decal/rugs, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/interior/shop) +"aFj" = ( +/obj/structure/lattice/grate, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"aFk" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"aFl" = ( +/obj/structure/railing/wooden_fence{ + dir = 1; + pixel_y = 8 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aFm" = ( +/obj/structure/table/countertop/teal, +/obj/structure/retail/grocery_store, +/turf/open/floor/city/bacotell, +/area/vtm/interior/shop) +"aFn" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aFo" = ( +/obj/structure/chair/office/darkpack/red{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/hecata/capo, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aFp" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aFq" = ( +/turf/closed/wall/vampwall/brick, +/area/vtm/westfield_mall/interior/supply) +"aFr" = ( +/obj/effect/spawner/random/trash/mopbucket, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aFs" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 10 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"aFt" = ( +/obj/structure/noticeboard/directional/north, +/obj/item/gun/ballistic/automatic/darkpack/huntrifle{ + anchored = 1; + pixel_y = 29 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aFu" = ( +/obj/structure/railing/wooden_fence{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aFv" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aFw" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aFx" = ( +/obj/structure/rack/clothing/rand{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aFy" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aFz" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 4 + }, +/mob/living/carbon/human/npc/shop, +/obj/effect/mapping_helpers/mob_buckler, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aFA" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/syndicate/tacticool/skirt, +/obj/item/clothing/under/syndicate/tacticool/skirt, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/under/syndicate/tacticool, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aFB" = ( +/obj/structure/closet/secure_closet/chemical/heisenberg, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aFC" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aFD" = ( +/obj/item/melee/skateboard{ + pixel_y = -3; + anchored = 1 + }, +/obj/effect/decal/wallpaper/stone, +/turf/closed/wall/vampwall/brick_old, +/area/vtm/westfield_mall/interior/skatepark) +"aFE" = ( +/obj/structure/table/wood, +/obj/machinery/light/prince/broken/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aFF" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/eighties, +/area/vtm/westfield_mall/interior/arcade) +"aFG" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"aFH" = ( +/obj/effect/decal/cleanable/trash, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer/nosferatu_town) +"aFI" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aFK" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/jerrycan/opaque/yellow{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"aFL" = ( +/obj/structure/frame/machine/secured, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"aFM" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aFN" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aFO" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/fake_platform/grey/double, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aFP" = ( +/obj/structure/vampstatue, +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/water, +/area/vtm/westfield_mall/forest) +"aFQ" = ( +/obj/machinery/sprinkler, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/foodcourt) +"aFR" = ( +/turf/open/floor/carpet/lone, +/area/vtm/westfield_mall/interior/theatre) +"aFS" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/parking_lot) +"aFT" = ( +/obj/darkpack_car/endroncar{ + dir = 6 + }, +/turf/open/floor/city/light, +/area/vtm/westfield_mall/interior) +"aFU" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aFV" = ( +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aFW" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/chantry) +"aFX" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/small/dim/directional/west, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/hot_ishu) +"aFZ" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = 10 + }, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aGa" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/trash, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aGb" = ( +/mob/living/carbon/human/npc/shop, +/obj/structure/chair/darkpack, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aGc" = ( +/obj/effect/turf_decal/bordur, +/turf/open/water, +/area/vtm/westfield_mall/forest) +"aGd" = ( +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/obj/structure/filingcabinet{ + pixel_x = 7 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aGe" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"aGf" = ( +/obj/effect/turf_decal/caution/stand_clear/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aGg" = ( +/obj/effect/turf_decal/bordur, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aGh" = ( +/obj/structure/table/wood, +/obj/item/vamp/keys/clerk{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/vamp/keys/cleaning{ + pixel_x = -1; + pixel_y = 11 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"aGi" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping25" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aGj" = ( +/obj/effect/turf_decal/asphalt, +/obj/effect/landmark/npcactivity, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aGk" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aGl" = ( +/obj/structure/table/modern, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aGm" = ( +/obj/effect/spawner/random/structure/billboard, +/turf/open/misc/grass/random/grass, +/area/vtm/westfield_mall) +"aGn" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aGo" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/clinic) +"aGp" = ( +/turf/open/water/beach/vamp, +/area/vtm/westfield_mall/forest) +"aGr" = ( +/obj/effect/landmark/start/darkpack/camarilla/hound, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aGs" = ( +/obj/darkpack_car/retro/debug{ + dir = 2 + }, +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"aGt" = ( +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aGu" = ( +/obj/structure/vampdoor/wood{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/supply, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/supply) +"aGv" = ( +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/supply) +"aGw" = ( +/obj/structure/mannequin/skeleton, +/obj/vehicle/ridden/scooter/skateboard, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aGx" = ( +/obj/effect/turf_decal/siding/wood/dark, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aGy" = ( +/obj/structure/chair/sofa/city_bench/metal/middle/black{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aGz" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aGA" = ( +/obj/structure/hedge, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aGB" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/decal/rugs, +/obj/structure/railing, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aGC" = ( +/obj/structure/closet/secure_closet/freezer/fridge/all_access, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aGD" = ( +/obj/effect/spawner/random/trash/mopbucket, +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aGE" = ( +/obj/structure/table/wood/fancy/purple, +/obj/effect/spawner/random/bureaucracy/crayon, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"aGF" = ( +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aGG" = ( +/obj/effect/turf_decal/bordur/corner, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aGH" = ( +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aGI" = ( +/obj/machinery/deepfryer{ + pixel_x = -1 + }, +/obj/structure/table/countertop/red, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aGJ" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aGK" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aGL" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aGM" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/mob/living/basic/pet/dog/bullterrier, +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"aGN" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/law_enforcement/dispatcher, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aGO" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/structure/closet/crate/dumpster, +/obj/effect/decal/cleanable/garbage{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/cardboard, +/obj/effect/decal/cleanable/trash, +/obj/machinery/light/small/red/directional/west, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aGP" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/elevator) +"aGQ" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 1 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aGR" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/item/storage/box/evidence, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aGS" = ( +/obj/structure/chair/office/darkpack/blue, +/obj/effect/landmark/start/darkpack/law_enforcement/officer, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aGT" = ( +/obj/structure/table, +/obj/item/knife/vamp{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aGU" = ( +/turf/open/floor/carpet/darkpack/cyan, +/area/vtm/westfield_mall/interior/vet_clinic) +"aGV" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 9 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aGW" = ( +/obj/effect/turf_decal/darkpack/grass/corner{ + dir = 1 + }, +/obj/effect/spawner/random/flora/grass, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"aGX" = ( +/obj/structure/glowshroom, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/interior/cave) +"aGY" = ( +/turf/closed/wall/vampwall/green, +/area/vtm/westfield_mall/forest) +"aGZ" = ( +/obj/effect/turf_decal/bordur/corner/inverse{ + dir = 8 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"aHa" = ( +/obj/effect/turf_decal/siding/grey{ + dir = 4 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"aHb" = ( +/obj/machinery/light/floor, +/turf/open/misc/grass/random/bushes, +/area/vtm/westfield_mall/interior) +"aHc" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/obj/darkpack_car/rand{ + dir = 9 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aHd" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/chantry) +"aHe" = ( +/obj/effect/turf_decal/asphalt, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aHf" = ( +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/westfield_mall/interior/techshop) +"aHg" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/plating/stone, +/area/vtm/interior/sewer/nosferatu_town) +"aHh" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 8 + }, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aHi" = ( +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/obj/structure/sign/poster/city/vesuvius/directional/north{ + pixel_x = 9; + pixel_y = 33 + }, +/obj/structure/sign/poster/city/tiamat/directional/north{ + pixel_x = -7; + pixel_y = 31 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aHj" = ( +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"aHk" = ( +/obj/structure/secure_safe/directional/north, +/obj/structure/table, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"aHl" = ( +/obj/structure/lamppost/four{ + pixel_y = 8 + }, +/obj/structure/platform/lowwall/brick_old, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/parking_lot) +"aHm" = ( +/obj/structure/table/wood, +/obj/structure/retail/library, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aHn" = ( +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"aHo" = ( +/obj/effect/turf_decal/darkpack/grass/corner{ + dir = 1 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"aHp" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 10 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aHq" = ( +/obj/effect/turf_decal/darkpack/grass{ + dir = 9 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"aHr" = ( +/obj/structure/fire_barrel, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"aHs" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/spawner/random/trash/mess, +/obj/machinery/light/small/directional/west, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"aHt" = ( +/obj/structure/bed/dogbed, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aHu" = ( +/obj/structure/chair/comfy/darkpack/red{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/anarch/baron, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/anarch) +"aHv" = ( +/obj/effect/turf_decal/bordur{ + dir = 9 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aHw" = ( +/obj/structure/table/countertop/teal, +/turf/open/floor/city/bacotell, +/area/vtm/interior/shop) +"aHx" = ( +/obj/effect/turf_decal/bordur{ + dir = 9 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aHy" = ( +/obj/structure/stairs/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aHz" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/spawner/random/occult/artifact, +/obj/effect/turf_decal/siding/wood/light{ + dir = 10 + }, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"aHA" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/decal/rugs, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aHB" = ( +/obj/structure/statue/sandstone/venus{ + pixel_y = 10 + }, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/interior/bianchiBank) +"aHC" = ( +/obj/effect/landmark/npcactivity, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aHD" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/dark/corner{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"aHE" = ( +/obj/machinery/atm, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aHF" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"aHG" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aHH" = ( +/obj/machinery/hydroponics/simple/plastic, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"aHI" = ( +/obj/structure/railing, +/obj/structure/chair/comfy/darkpack/green{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aHJ" = ( +/obj/structure/fence, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aHK" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/decal/carpet{ + pixel_x = -14; + pixel_y = -7 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aHL" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/grey/inner_corner{ + dir = 1 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aHM" = ( +/obj/effect/turf_decal/darkpack/grass{ + dir = 10 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"aHN" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/cardboard, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aHO" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aHP" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aHQ" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aHR" = ( +/obj/structure/rack/food, +/obj/item/reagent_containers/cooler_jug/water, +/obj/item/reagent_containers/cooler_jug/water, +/obj/item/reagent_containers/cooler_jug/punch, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aHS" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aHT" = ( +/obj/structure/table/wood, +/obj/item/toy/katana{ + pixel_y = 7 + }, +/obj/item/toy/eldritch_book{ + pixel_x = 5 + }, +/obj/effect/spawner/random/peel_or_nana{ + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aHU" = ( +/obj/machinery/light/warm/directional/south, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"aHV" = ( +/obj/structure/sink/directional/west, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aHW" = ( +/obj/structure/curtain/bounty/start_closed, +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/chantry) +"aHX" = ( +/obj/structure/closet/crate/bin{ + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aHY" = ( +/obj/structure/table/wood, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"aHZ" = ( +/obj/structure/stairs/west, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/maintenance/atrium) +"aIa" = ( +/obj/effect/decal/wallpaper/papers/three, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/anarch) +"aIb" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/eighties, +/area/vtm/westfield_mall/interior/arcade) +"aIc" = ( +/obj/effect/turf_decal/bordur{ + dir = 9 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"aId" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/style_random, +/obj/structure/railing, +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/misc/dirt, +/area/vtm/interior/sewer/nosferatu_town) +"aIe" = ( +/obj/structure/rack/food/rand, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aIf" = ( +/obj/effect/decal/wallpaper/paper/darkgreen, +/turf/closed/wall/vampwall/junk, +/area/vtm/interior/sewer/nosferatu_town) +"aIg" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/interior/supply) +"aIh" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aIi" = ( +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer/nosferatu_town) +"aIj" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"aIk" = ( +/obj/structure/table/wood, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aIl" = ( +/obj/structure/city_map, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aIm" = ( +/obj/structure/projector{ + dir = 4 + }, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aIn" = ( +/obj/structure/table/countertop/bubway, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aIo" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aIp" = ( +/obj/structure/safe, +/obj/item/stack/dollar/hundred, +/obj/item/stack/dollar/hundred{ + pixel_y = -8; + pixel_x = 4 + }, +/obj/item/stack/dollar/hundred{ + pixel_x = -6; + pixel_y = -7 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"aIq" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/light/dim/directional/east, +/turf/open/water, +/area/vtm/interior/bianchiBank) +"aIr" = ( +/obj/structure/table, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/city/bacotell, +/area/vtm/interior/sewer) +"aIs" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aIt" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/interior/shop) +"aIu" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aIv" = ( +/obj/effect/spawner/random/structure/twelve_percent_spirit_board, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aIw" = ( +/obj/machinery/light/small/directional/south, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/maintenance/atrium) +"aIx" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aIy" = ( +/obj/effect/landmark/npcability, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aIz" = ( +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior) +"aIA" = ( +/obj/effect/decal/rugs, +/obj/structure/vampdoor/old, +/obj/effect/mapping_helpers/door/access/nosferatu, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"aIB" = ( +/obj/effect/decal/cleanable/litter, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aIC" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/obj/structure/lamppost/sidewalk, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aID" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/structure/sign/poster/city/dmc/directional/north, +/turf/open/floor/eighties, +/area/vtm/westfield_mall/interior/arcade) +"aIE" = ( +/obj/structure/vampdoor, +/obj/effect/turf_decal/siding/wood/dark, +/obj/effect/mapping_helpers/door/access/all, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/two, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aIF" = ( +/obj/transfer_point_vamp{ + id = "forestL2" + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aIG" = ( +/obj/machinery/computer/operating, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aIH" = ( +/obj/structure/flora/rock/darkpack_big, +/obj/structure/flora/rock/darkpack, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aII" = ( +/obj/structure/table/wood, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"aIJ" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aIK" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aIL" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior/theatre) +"aIM" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aIN" = ( +/obj/structure/chair/sofa/city_bench/metal/left/yellow{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aIO" = ( +/obj/structure/rack, +/obj/item/clothing/under/vampire/mechanic, +/obj/item/clothing/under/vampire/mechanic, +/obj/item/clothing/under/vampire/mechanic, +/obj/item/clothing/shoes/vampire/jackboots/work{ + pixel_y = 7; + pixel_x = -6 + }, +/obj/item/clothing/shoes/vampire/jackboots/work{ + pixel_y = 5; + pixel_x = 6 + }, +/obj/item/clothing/shoes/vampire/jackboots/work, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"aIP" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"aIQ" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/clothing_store) +"aIR" = ( +/obj/structure/sign/city/skateshop/directional/north, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aIS" = ( +/obj/effect/spawner/random/trash/rat, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer) +"aIT" = ( +/turf/open/misc/grass, +/area/vtm/westfield_mall/interior) +"aIU" = ( +/obj/item/clothing/head/cone, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aIV" = ( +/obj/structure/fake_stairs/wood/directional/south, +/obj/structure/railing/wooden_fence{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aIW" = ( +/obj/effect/decal/carpet{ + pixel_x = -14; + pixel_y = -13 + }, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aIX" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/mouse/vampire, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aIY" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/machinery/light/prince/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aJa" = ( +/obj/structure/vampipe{ + icon_state = "piping9"; + pixel_y = 32 + }, +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"aJb" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aJc" = ( +/obj/structure/fireplace, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aJd" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/cockroach/sewer, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aJe" = ( +/obj/structure/railing/wooden_fence{ + dir = 10 + }, +/obj/structure/lattice/grate, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aJf" = ( +/mob/living/basic/pet/penguin/emperor/shamebrero, +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"aJg" = ( +/obj/structure/sign/departments/restroom/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aJh" = ( +/turf/open/openspace, +/area/vtm/interior/supply) +"aJi" = ( +/obj/structure/dresser, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aJj" = ( +/obj/structure/fluff/tram_rail{ + dir = 4; + pixel_x = -8 + }, +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/skatepark) +"aJk" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/sprinkler, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aJl" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aJm" = ( +/obj/structure/vampdoor/simple, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"aJn" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/light{ + dir = 4 + }, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aJo" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aJp" = ( +/obj/structure/chair/sofa/left/brown, +/obj/structure/sign/painting{ + pixel_y = 32; + dir = 1 + }, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"aJq" = ( +/obj/effect/decal/pallet, +/obj/effect/spawner/random/maintenance, +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aJr" = ( +/obj/structure/table/countertop, +/obj/structure/fish_mount/supply/directional/north, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"aJs" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aJu" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping26" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aJw" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/skatepark) +"aJx" = ( +/obj/structure/aquarium/prefilled, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/westfield_mall/interior/supply) +"aJy" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aJA" = ( +/obj/effect/turf_decal/siding/grey/end{ + dir = 8 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall/interior) +"aJB" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"aJC" = ( +/obj/structure/table/wood, +/obj/item/surgery_tray/full, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aJD" = ( +/obj/structure/table, +/obj/item/bong{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/bong{ + pixel_x = -8; + color = "#293E7C" + }, +/obj/item/bong{ + pixel_x = 4; + pixel_y = 7; + color = "#47FF93" + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/smokeshop) +"aJE" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/market, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aJF" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping25" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aJG" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"aJH" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior) +"aJI" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aJJ" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 4 + }, +/obj/machinery/light/directional/north, +/obj/effect/landmark/start/darkpack/law_enforcement/officer, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aJK" = ( +/obj/structure/table/countertop/black, +/obj/structure/sink/basin/directional/east, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aJL" = ( +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/maintenance) +"aJM" = ( +/obj/structure/table/countertop/yellow, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aJN" = ( +/obj/structure/table/wood/fancy/purple, +/obj/item/paper_bin{ + pixel_x = 9; + pixel_y = 13 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"aJO" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/small/directional/east, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"aJP" = ( +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aJR" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/item/flashlight/lamp{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/toy/plush/goatplushie{ + pixel_y = 6; + pixel_x = 2 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior/techshop) +"aJS" = ( +/obj/structure/railing/wooden_fence{ + dir = 10 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aJT" = ( +/obj/machinery/oven, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"aJU" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/engineering/material_cheap, +/obj/effect/spawner/random/engineering/material_cheap, +/obj/effect/spawner/random/engineering/material_cheap, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aJV" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker/impressa, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aJW" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aJX" = ( +/obj/structure/fountain{ + pixel_y = 4 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"aJY" = ( +/obj/structure/noticeboard/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aJZ" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aKa" = ( +/obj/structure/chair/office/darkpack/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aKb" = ( +/obj/effect/decal/pallet, +/obj/structure/guncase, +/obj/item/gun/ballistic/automatic/darkpack/uzi, +/obj/item/gun/ballistic/automatic/darkpack/uzi, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"aKc" = ( +/mob/living/basic/zombie/darkpack, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aKd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aKe" = ( +/obj/structure/table/countertop/red, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aKf" = ( +/obj/item/stack/package_wrap/small, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aKg" = ( +/obj/structure/mop_bucket/janitorialcart, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"aKh" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/chantry) +"aKi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aKj" = ( +/obj/effect/turf_decal/siding/grey{ + dir = 1 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"aKk" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"aKl" = ( +/obj/structure/vampdoor/wood{ + lock_id = "banuhaqim" + }, +/obj/effect/mapping_helpers/door/access/clinic, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aKm" = ( +/obj/structure/railing/corner, +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aKo" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/games_store) +"aKp" = ( +/turf/closed/wall/vampwall/dirtywood, +/area/vtm/interior) +"aKq" = ( +/mob/living/carbon/human/npc/bubway, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aKr" = ( +/obj/structure/chair/plastic/darkpack, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aKs" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/grey/inner_corner, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aKt" = ( +/obj/structure/safe, +/obj/item/ammo_box/magazine/darkpack545, +/obj/item/ammo_box/magazine/darkpack545, +/obj/item/ammo_box/magazine/darkpack545, +/obj/item/ammo_box/darkpack/c545, +/obj/item/ammo_box/darkpack/c545, +/obj/item/ammo_box/magazine/darkpack556/hunt, +/obj/item/ammo_box/magazine/darkpack556/hunt, +/obj/item/ammo_box/darkpack/c556, +/obj/item/ammo_box/darkpack/c556/incendiary, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"aKu" = ( +/obj/effect/decal/graffiti, +/turf/open/floor/plating/sidewalkalt, +/area/vtm/westfield_mall/forest) +"aKv" = ( +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/spawner/random/vending/colavend, +/obj/structure/gargoyle, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/smokeshop) +"aKw" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/darkpack/plant2{ + pixel_y = 18; + pixel_x = 7 + }, +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"aKx" = ( +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"aKy" = ( +/obj/structure/cat_house, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aKz" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 8 + }, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/clinic) +"aKA" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aKB" = ( +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/misc/grass, +/area/vtm/westfield_mall/forest) +"aKC" = ( +/obj/structure/hedge, +/obj/machinery/light/prince/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aKE" = ( +/obj/structure/chair/comfy/darkpack/green{ + dir = 1 + }, +/obj/effect/landmark/start/darkpack/primogen/toreador, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/theatre) +"aKF" = ( +/obj/structure/bricks, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aKG" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 6 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aKH" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aKI" = ( +/obj/structure/noticeboard/directional/north, +/obj/item/gun/ballistic/automatic/darkpack/huntrifle{ + pixel_y = 29 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aKK" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior/chantry) +"aKL" = ( +/obj/structure/vampdoor/old{ + dir = 1 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/camarilla, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/maintenance) +"aKM" = ( +/obj/effect/landmark/start/darkpack/camarilla/hound, +/obj/structure/chair/office/darkpack/blue{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aKN" = ( +/obj/structure/closet/crate/dumpster, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aKO" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aKP" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_x = -10; + pixel_y = 18 + }, +/obj/item/reagent_containers/cup/glass/bottle/wine/blood{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/wine_glass{ + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/wine_glass{ + pixel_x = 9; + pixel_y = 6 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aKQ" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aKR" = ( +/obj/structure/destructible/cult/item_dispenser/archives/library, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aKS" = ( +/obj/machinery/vending/cola, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"aKT" = ( +/obj/structure/chair/wood/darkpack{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aKU" = ( +/obj/structure/table/wood, +/obj/item/storage/bag/books{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/storage/bag/books{ + pixel_y = 7; + pixel_x = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aKV" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aKW" = ( +/obj/lombard/blackmarket, +/obj/structure/vampfence/rich, +/obj/structure/platform/lowwall/brick_old, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer) +"aKX" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/structure/rack/clothing_hanger{ + pixel_x = -10; + density = 0 + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"aKY" = ( +/mob/living/carbon/human/npc/bandit, +/obj/structure/chair/plastic/darkpack, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"aKZ" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"aLa" = ( +/obj/structure/sign/poster/city/tiamat/directional/north, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aLb" = ( +/obj/structure/curtain/cloth{ + name = "war-game room curtain" + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aLc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/cockroach/sewer, +/turf/open/floor/wood/old, +/area/vtm/interior) +"aLd" = ( +/obj/effect/spawner/random/entertainment/gambling, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"aLe" = ( +/obj/item/trash/chips, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aLf" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aLg" = ( +/turf/closed/wall/vampwall/market, +/area/vtm/interior/shop) +"aLh" = ( +/obj/structure/table, +/obj/item/assembly/prox_sensor{ + pixel_y = 13 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = 9 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = 4 + }, +/obj/item/assembly/flash{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/item/assembly/flash{ + pixel_x = -11; + pixel_y = 15 + }, +/obj/item/assembly/flash{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/assembly/igniter{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/item/assembly/igniter{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/item/assembly/mousetrap{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/item/assembly/mousetrap{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/item/stock_parts/power_store/cell/high{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"aLi" = ( +/obj/effect/decal/wallpaper/grey, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/dojo) +"aLj" = ( +/obj/effect/decal/carpet{ + pixel_x = 16; + pixel_y = 18 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aLk" = ( +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/theatre) +"aLl" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aLm" = ( +/obj/effect/decal/coastline/corner{ + dir = 8 + }, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"aLn" = ( +/obj/structure/hedge, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aLo" = ( +/obj/machinery/vending/coffee/private, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aLq" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aLs" = ( +/turf/closed/wall/vampwall/old, +/area/vtm/westfield_mall/interior) +"aLt" = ( +/obj/effect/turf_decal/siding/grey/inner_corner{ + dir = 4 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/supply) +"aLu" = ( +/obj/effect/landmark/start/darkpack/hospital/doctor, +/obj/structure/chair/office/darkpack/blue{ + dir = 8 + }, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aLv" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"aLw" = ( +/obj/effect/decal/wallpaper/stone, +/turf/closed/wall/vampwall/brick_old, +/area/vtm/westfield_mall/interior/skatepark) +"aLx" = ( +/turf/open/floor/carpet/darkpack/old, +/area/vtm/interior/shop) +"aLy" = ( +/obj/structure/closet/crate/large, +/obj/effect/decal/pallet, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aLz" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aLA" = ( +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aLB" = ( +/obj/structure/retail/pharmacy{ + pixel_y = 10 + }, +/obj/structure/retail/gas_station, +/obj/structure/table/countertop/black, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aLC" = ( +/obj/structure/table/wood, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"aLD" = ( +/turf/open/genturf, +/area/vtm/planetgeneration) +"aLE" = ( +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/parking_lot) +"aLF" = ( +/obj/effect/turf_decal/siding/wood/dark/corner{ + dir = 4 + }, +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aLG" = ( +/obj/effect/turf_decal/siding/grey/end, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall/interior) +"aLH" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/cardboard, +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aLI" = ( +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"aLK" = ( +/obj/effect/decal/cleanable/litter, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer/nosferatu_town) +"aLL" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/entertainment/plushie{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aLM" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior) +"aLN" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/effect/turf_decal/asphalt, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aLO" = ( +/obj/structure/table/countertop, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aLP" = ( +/obj/structure/rack, +/obj/item/surgery_tray/full, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aLQ" = ( +/obj/machinery/light_switch/directional/north{ + pixel_x = -9 + }, +/turf/open/floor/carpet/darkpack/cyan, +/area/vtm/westfield_mall/interior/vet_clinic) +"aLR" = ( +/obj/structure/table/wood, +/obj/vampire_computer, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/clinic) +"aLS" = ( +/obj/effect/decal/support, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aLT" = ( +/obj/structure/table/modern, +/obj/item/clothing/under/vampire/brujah{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/clothing/under/vampire/brujah{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/clothing/under/vampire/brujah/female{ + pixel_x = 11; + pixel_y = 10 + }, +/obj/item/clothing/under/vampire/gangrel{ + pixel_x = 1 + }, +/obj/item/clothing/under/vampire/gangrel{ + pixel_x = 12; + pixel_y = -1 + }, +/obj/item/clothing/under/vampire/gangrel/female{ + pixel_x = -8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aLU" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/foodcourt) +"aLV" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer/nosferatu_town) +"aLW" = ( +/obj/machinery/sprinkler, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior) +"aLX" = ( +/obj/structure/chair/plastic, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aLY" = ( +/obj/structure/table/wood, +/obj/item/knife, +/obj/item/kitchen/rollingpin, +/turf/open/floor/city/bacotell, +/area/vtm/interior/littleitaly) +"aLZ" = ( +/obj/effect/spawner/random/structure/closet_empty/crate/with_loot, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aMa" = ( +/turf/closed/wall/vampwall/wood, +/area/vtm/interior) +"aMb" = ( +/obj/structure/chair/sofa/corp/left, +/obj/effect/landmark/start/darkpack/camarilla/harpy, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"aMc" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aMd" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aMe" = ( +/obj/effect/decal/pallet, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aMf" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"aMg" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aMh" = ( +/turf/closed/wall/vampwall/rich/old, +/area/vtm/interior/mansion) +"aMi" = ( +/obj/structure/sign/departments/restroom/directional/north, +/obj/effect/landmark/npc_spawn_point, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aMj" = ( +/obj/machinery/microwave{ + pixel_y = 9 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aMk" = ( +/obj/effect/mapping_helpers/door/access/clinic, +/obj/effect/mapping_helpers/door/lock, +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aMl" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall) +"aMm" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aMn" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/sign/city/store/gummaguts/directional/north{ + pixel_x = -16; + pixel_y = 35 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aMo" = ( +/obj/structure/railing/wooden_fence, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior) +"aMp" = ( +/obj/structure/chair/sofa/city_bench/metal/left/black{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aMq" = ( +/obj/structure/railing/wooden_fence{ + dir = 9 + }, +/obj/structure/lattice/grate, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aMr" = ( +/obj/effect/decal/rugs, +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/nosferatu, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aMs" = ( +/obj/structure/table/wood, +/obj/vampire_computer{ + pixel_y = 4 + }, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/interior/police) +"aMt" = ( +/obj/structure/stairs/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aMu" = ( +/turf/closed/indestructible/the_matrix, +/area/vtm/westfield_mall/interior/supply) +"aMv" = ( +/obj/effect/turf_decal/bordur/corner/inverse{ + dir = 4 + }, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"aMw" = ( +/obj/structure/table/wood/fancy/purple, +/obj/effect/spawner/random/entertainment/dice{ + pixel_x = 11; + pixel_y = -3 + }, +/obj/item/flashlight/lamp{ + pixel_x = -11; + pixel_y = -15 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"aMx" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/obj/structure/closet/cabinet, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aMy" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/techshop) +"aMz" = ( +/obj/structure/vampdoor/simple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/salubri, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aMA" = ( +/obj/effect/decal/pallet, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aMB" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"aMC" = ( +/obj/effect/landmark/npcwall, +/turf/open/misc/grass, +/area/vtm/westfield_mall/interior) +"aMD" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aME" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/wooden, +/obj/item/toner, +/obj/item/toner, +/obj/item/toner, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"aMF" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aMG" = ( +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer) +"aMH" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"aMI" = ( +/obj/structure/chair/comfy/brown, +/mob/living/basic/zombie/darkpack, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aMJ" = ( +/obj/structure/hedge/opaque, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aMK" = ( +/obj/structure/noticeboard/directional/north, +/obj/item/gun/ballistic/shotgun/toy/crossbow/vampire{ + anchored = 1; + pixel_y = 30 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aML" = ( +/obj/structure/vampstatue, +/obj/effect/turf_decal/bordur{ + dir = 5 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aMM" = ( +/obj/darkpack_car/retro/rand, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aMN" = ( +/obj/structure/table/wood, +/obj/vampire_computer, +/obj/machinery/light/directional/west, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aMO" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aMP" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"aMQ" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/theatre) +"aMR" = ( +/obj/structure/chair/sofa/city_bench/metal/left/yellow{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aMS" = ( +/obj/structure/rack/clothing_hanger, +/obj/item/clothing/head/vampire/beanie{ + pixel_x = -1; + pixel_y = 12 + }, +/obj/item/clothing/suit/vampire/coat/winter{ + pixel_x = -1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aMT" = ( +/obj/effect/decal/pallet, +/obj/effect/spawner/random/maintenance/no_decals/three, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aMU" = ( +/obj/structure/table/wood, +/obj/machinery/light/blacklight/directional/south, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/hot_ishu) +"aMV" = ( +/obj/structure/table/countertop/bacotell, +/obj/structure/retail/bacotell_menu{ + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/turf/open/floor/city/bacotell, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aMX" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/dojo) +"aMY" = ( +/obj/structure/rack/food/rand{ + dir = 4; + pixel_x = 8; + pixel_y = 16; + density = 0 + }, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aMZ" = ( +/obj/structure/table/countertop, +/obj/item/storage/toolbox/fishing{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/ammo_box/darkpack/c45acp{ + pixel_x = -7 + }, +/obj/item/ammo_box/darkpack/c45acp{ + pixel_x = -13 + }, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"aNa" = ( +/obj/effect/decal/rugs, +/obj/structure/vampdoor/old, +/obj/effect/mapping_helpers/door/access/nosferatu, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer/nosferatu_town) +"aNb" = ( +/obj/structure/table, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"aNc" = ( +/obj/vampire_computer, +/obj/item/toy/cards/deck/tarot{ + pixel_x = -11; + pixel_y = 16 + }, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/vet_clinic) +"aNd" = ( +/obj/structure/chair/sofa/middle/brown{ + dir = 4 + }, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aNe" = ( +/obj/structure/sign/city/order/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/foodcourt) +"aNf" = ( +/obj/structure/lattice/grate{ + dir = 4 + }, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"aNg" = ( +/obj/effect/turf_decal/bordur/inverse, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aNh" = ( +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"aNi" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping41" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aNj" = ( +/obj/effect/landmark/start, +/obj/structure/chair/plastic/darkpack, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"aNk" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aNl" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/city_map, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aNm" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aNn" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aNo" = ( +/obj/structure/rack/food/rand{ + dir = 4; + pixel_y = 16; + pixel_x = -8 + }, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aNp" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/clinic) +"aNq" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/clothing_store) +"aNr" = ( +/obj/effect/turf_decal/siding/wood/light{ + dir = 1 + }, +/obj/structure/chair/stool/bar/darkpack/red, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aNs" = ( +/obj/machinery/light/directional/west{ + pixel_y = 10 + }, +/turf/open/openspace, +/area/vtm/westfield_mall/interior) +"aNt" = ( +/obj/effect/turf_decal/bordur/inverse, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aNu" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aNv" = ( +/turf/closed/wall/vampwall/junk, +/area/vtm/interior/sewer) +"aNw" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aNx" = ( +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"aNy" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aNz" = ( +/obj/structure/vampdoor/simple{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/eight, +/obj/effect/mapping_helpers/door/access/wolftech, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aNA" = ( +/obj/structure/table/countertop/bubway, +/obj/structure/sink/directional/west{ + icon_state = "basin" + }, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aNB" = ( +/obj/effect/turf_decal/caution, +/obj/effect/decal/cleanable/blood/oil/slippery, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"aNC" = ( +/obj/structure/table, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"aND" = ( +/obj/effect/landmark/start/darkpack/camarilla/prince, +/obj/structure/chair/comfy/darkpack/dark{ + dir = 8 + }, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"aNE" = ( +/obj/structure/flora/rock/darkpack_big, +/turf/open/misc/grass, +/area/vtm/westfield_mall/forest) +"aNF" = ( +/obj/structure/rack/clothing/rand, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"aNG" = ( +/obj/structure/table/reinforced, +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aNH" = ( +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"aNI" = ( +/obj/structure/closet/secure_closet/freezer/fridge/all_access, +/obj/effect/turf_decal/siding/wood/light{ + dir = 1 + }, +/obj/item/reagent_containers/cup/glass/bottle/wine, +/obj/item/reagent_containers/blood/random, +/obj/effect/spawner/random/food_or_drink/plant_produce, +/obj/item/reagent_containers/cup/glass/bottle/wine/blood, +/obj/item/reagent_containers/cup/glass/bottle/wine/blood, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"aNJ" = ( +/obj/structure/rack/food, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aNK" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/city/circled, +/area/vtm/interior/shop) +"aNL" = ( +/obj/structure/table/wood, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aNM" = ( +/obj/effect/decal/wallpaper/blue, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"aNN" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"aNO" = ( +/obj/structure/table, +/obj/effect/decal/rugs, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"aNP" = ( +/obj/structure/chair/comfy/darkpack/dark, +/obj/effect/landmark/start/darkpack/voivode/zadruga, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aNQ" = ( +/obj/structure/table/countertop/black, +/obj/machinery/light/directional/west, +/obj/item/storage/medkit/darkpack/doctor{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aNR" = ( +/obj/structure/table/countertop/bubway, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aNS" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/obj/structure/table/optable, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aNT" = ( +/obj/structure/rack/food/rand{ + dir = 4; + pixel_x = 23; + pixel_y = 16; + density = 0 + }, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aNU" = ( +/obj/structure/chair/sofa/city_bench/metal/right/black{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aNV" = ( +/obj/structure/safe, +/obj/item/gun/ballistic/automatic/darkpack/ak74, +/obj/structure/coclock, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"aNW" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aNX" = ( +/obj/structure/ladder, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aNY" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior/techshop) +"aNZ" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + pixel_y = 9 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/church) +"aOa" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aOb" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/figure/wizard, +/obj/item/toy/figure/clown{ + pixel_x = 7 + }, +/obj/item/toy/figure/assistant{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"aOc" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/techshop) +"aOe" = ( +/turf/closed/wall/vampwall/brick_old, +/area/vtm/westfield_mall/interior/supply) +"aOf" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 7 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aOg" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping24" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aOi" = ( +/obj/machinery/vending/snack, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"aOj" = ( +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"aOk" = ( +/obj/structure/vampdoor/woodglass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/banu, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aOl" = ( +/obj/effect/mapping_helpers/door/access/clinic, +/obj/effect/mapping_helpers/door/lock, +/obj/structure/vampdoor, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aOm" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/openspace, +/area/vtm/westfield_mall/interior) +"aOn" = ( +/obj/structure/destructible/cult/item_dispenser/archives/library, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aOo" = ( +/obj/machinery/light/directional/west, +/obj/structure/chair/sofa/city_bench/metal/right{ + dir = 4 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aOp" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aOq" = ( +/obj/effect/turf_decal/siding/wood/dark/corner{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aOr" = ( +/obj/structure/flora/rock/darkpack_big, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aOs" = ( +/obj/machinery/light/prince/directional/south, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"aOt" = ( +/obj/darkpack_car/retro/rand{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aOu" = ( +/obj/effect/landmark/start/darkpack/primogen/lasombra, +/obj/structure/chair/wood/darkpack/red, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"aOv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"aOw" = ( +/obj/machinery/light/directional/west, +/obj/structure/table/countertop, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aOx" = ( +/obj/structure/flora/tree/stump, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aOy" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/trash/cigpack, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"aOz" = ( +/obj/machinery/vending/boozeomat/private, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aOA" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aOB" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/vampdoor/reinf{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/police_secure, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/ten, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aOC" = ( +/obj/structure/fence/door, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"aOD" = ( +/obj/fusebox, +/obj/item/kirbyplants/random, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"aOE" = ( +/obj/structure/table/wood/fancy/purple, +/obj/effect/spawner/random/bureaucracy/pen, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"aOF" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"aOG" = ( +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/chantry, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aOH" = ( +/obj/effect/turf_decal/siding/wood/dark, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aOI" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aOJ" = ( +/obj/item/flashlight/lantern{ + light_color = "#013220"; + pixel_y = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aOK" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"aOL" = ( +/obj/structure/rack/clothing/rand, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aOM" = ( +/obj/item/trash/popcorn, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aON" = ( +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aOO" = ( +/obj/structure/chair/sofa/city_bench/metal/right{ + dir = 1 + }, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior) +"aOP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/grey{ + dir = 8 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aOQ" = ( +/obj/structure/table/wood, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aOR" = ( +/obj/structure/table, +/obj/item/clothing/neck/stethoscope{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/storage/box/gloves{ + pixel_x = 7 + }, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aOS" = ( +/obj/item/table_clock, +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aOT" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aOU" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aOV" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aOW" = ( +/turf/open/floor/iron/stairs{ + dir = 8 + }, +/area/vtm/interior/sewer) +"aOX" = ( +/obj/structure/coclock, +/obj/machinery/photocopier/prebuilt, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aOY" = ( +/obj/transfer_point_vamp{ + id = "pentex_evil_inc" + }, +/turf/open/misc/grass/random/bushes, +/area/vtm/westfield_mall/forest) +"aOZ" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = 10; + pixel_y = 4 + }, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aPa" = ( +/obj/structure/hedge/opaque, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aPb" = ( +/obj/vampire_computer/prince, +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/turf_decal/siding/wood/light{ + dir = 8 + }, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"aPc" = ( +/obj/structure/table, +/obj/structure/retail/hardware_store, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aPd" = ( +/obj/structure/table/optable, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aPe" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/smokeshop) +"aPf" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/darkpack/plant2{ + pixel_y = 13; + pixel_x = 7 + }, +/obj/underplate, +/obj/item/clothing/mask/gas/vampire, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer/nosferatu_town) +"aPg" = ( +/obj/structure/table/countertop/teal, +/obj/structure/sink/basin/directional/west, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/games_store) +"aPh" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/vaultdoor/pincode/bank, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"aPi" = ( +/obj/structure/coclock, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aPk" = ( +/obj/structure/platform/lowwall/painted/window/reinforced, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior) +"aPl" = ( +/obj/effect/turf_decal/bordur, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aPm" = ( +/obj/structure/table/countertop/black, +/obj/structure/sink/basin/directional/west, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"aPn" = ( +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/supply, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aPo" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/griddle, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aPp" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"aPq" = ( +/obj/effect/spawner/random/trash/mopbucket, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"aPs" = ( +/obj/transfer_point_vamp/backrooms, +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"aPt" = ( +/obj/effect/turf_decal/bordur, +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aPu" = ( +/obj/structure/barricade/wooden/crude, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aPv" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/sign/city/store/bacotell/directional/north{ + pixel_x = -15; + pixel_y = 36 + }, +/turf/open/floor/city/bacotell, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aPw" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aPx" = ( +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aPy" = ( +/obj/structure/rack/clothing/rand{ + dir = 4 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"aPz" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aPA" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aPB" = ( +/obj/structure/vampdoor/wood/pentex{ + name = "Endron Tree Planting Outpost" + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aPC" = ( +/obj/structure/vampdoor/reinf, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/eight, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aPD" = ( +/obj/structure/vampfence/corner/rich{ + dir = 8 + }, +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"aPE" = ( +/obj/structure/cat_house, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aPF" = ( +/turf/open/misc/grass/random/rocks, +/area/vtm/westfield_mall/forest) +"aPG" = ( +/obj/structure/railing, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aPH" = ( +/obj/structure/table/wood, +/obj/item/flashlight/flare/candle{ + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/interior/church) +"aPI" = ( +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aPJ" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = 9; + pixel_y = 5 + }, +/obj/effect/spawner/random/entertainment/toy{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/effect/spawner/random/entertainment/toy{ + pixel_x = 2; + pixel_y = 19 + }, +/obj/effect/spawner/random/entertainment/toy{ + pixel_x = 10; + pixel_y = -1 + }, +/obj/effect/spawner/random/entertainment/toy{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/effect/spawner/random/entertainment/toy{ + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aPK" = ( +/obj/structure/vampfence/corner/rich{ + dir = 4 + }, +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/turf/open/floor/plating/sidewalkalt, +/area/vtm/westfield_mall/forest) +"aPL" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/obj/effect/spawner/random/trash/cigbutt{ + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"aPM" = ( +/obj/machinery/sprinkler, +/obj/effect/landmark/npcactivity, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aPN" = ( +/obj/machinery/stove, +/obj/structure/table/countertop/red, +/obj/machinery/light/directional/north, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aPO" = ( +/obj/darkpack_car/police{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aPP" = ( +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"aPQ" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/entertainment/plushie_delux, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aPR" = ( +/obj/structure/vampdoor/old, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/five, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/underground_parking) +"aPS" = ( +/obj/effect/decal/cleanable/cardboard, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aPT" = ( +/obj/structure/vampdoor/old{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aPU" = ( +/obj/item/storage/box/syringes/variety{ + pixel_y = 8; + pixel_x = -5 + }, +/obj/structure/table/wood, +/obj/item/clothing/suit/apron/surgical{ + pixel_y = 11; + pixel_x = 7 + }, +/obj/item/clothing/mask/surgical{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aPV" = ( +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"aPW" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random{ + pixel_y = 2 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/graffiti, +/turf/open/misc/dirt, +/area/vtm/interior/sewer/nosferatu_town) +"aPX" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aPY" = ( +/obj/structure/chair/sofa/corp/corner, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aPZ" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/npc, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aQa" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aQb" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aQc" = ( +/obj/structure/sink/oil_well, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"aQd" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/interior/shop) +"aQe" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/chantry/archivist, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/chantry) +"aQf" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/roofwalk/cobblestones, +/area/vtm/westfield_mall) +"aQg" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aQh" = ( +/obj/structure/bed/dogbed, +/obj/item/toy/plush/beeplushie, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aQi" = ( +/obj/machinery/iv_drip, +/obj/machinery/light/directional/west, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aQj" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/entertainment/musical_instrument, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/interior/shop) +"aQk" = ( +/obj/structure/vampdoor/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/nosferatu, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aQl" = ( +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aQm" = ( +/obj/item/flashlight/lamp/bananalamp, +/obj/structure/table/countertop/bubway, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"aQn" = ( +/obj/structure/vampdoor/simple{ + dir = 4 + }, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"aQo" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/darkpack/plant4{ + pixel_x = 9; + pixel_y = 16 + }, +/obj/effect/spawner/random/food_or_drink/three_course_meal, +/obj/item/flashlight/lamp/green{ + pixel_y = 13; + pixel_x = -10 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aQp" = ( +/obj/effect/spawner/random/trash/deluxe_garbage, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aQq" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall) +"aQr" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aQs" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/bianchiBank) +"aQt" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aQu" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aQv" = ( +/obj/structure/filingcabinet{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"aQw" = ( +/obj/effect/landmark/npc_spawn_point, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aQx" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/littleitaly) +"aQy" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/anarch) +"aQz" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/structure/closet/crate/dumpster, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aQA" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/westfield_mall/interior/techshop) +"aQC" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aQD" = ( +/obj/structure/roadblock{ + dir = 8 + }, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"aQE" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 1 + }, +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"aQF" = ( +/obj/structure/hedge/opaque, +/obj/effect/turf_decal/siding/wood/dark/end{ + dir = 8 + }, +/turf/open/floor/plating/granite/black, +/area/vtm/interior/shop) +"aQG" = ( +/obj/structure/vampipe{ + icon_state = "piping35"; + pixel_y = 32 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aQH" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aQI" = ( +/obj/structure/table, +/obj/vampire_computer, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior/techshop) +"aQJ" = ( +/obj/effect/landmark/npcactivity, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/parking_lot) +"aQK" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aQL" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/littleitaly) +"aQM" = ( +/obj/machinery/food_cart, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aQN" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/maintenance/roof) +"aQO" = ( +/obj/structure/table/countertop/black, +/obj/machinery/light/small/directional/east, +/obj/structure/sink/basin/directional/west, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"aQP" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/clothing_store) +"aQQ" = ( +/turf/open/genturf/blue, +/area/vtm/planetgeneration/woodland) +"aQR" = ( +/obj/structure/mannequin/plastic/fancy{ + anchored = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aQS" = ( +/obj/effect/turf_decal/bordur, +/obj/structure/railing, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aQT" = ( +/obj/structure/stairs/east, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aQU" = ( +/obj/structure/closet/secure_closet/freezer/empty, +/obj/item/food/pizzaslice/square, +/obj/item/food/pizzaslice/square, +/obj/item/food/pizzaslice/moldy, +/obj/item/food/pizzaslice/moldy, +/obj/item/reagent_containers/cup/soda_cans/pwr_game, +/obj/item/reagent_containers/cup/soda_cans/pwr_game, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"aQV" = ( +/obj/structure/table/wood, +/obj/item/pet_carrier/small/mouse{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/pet_carrier/small/mouse{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pet_carrier/small/mouse{ + pixel_y = 14 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/vet_clinic) +"aQW" = ( +/obj/effect/decal/wallpaper/stone, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/bianchiBank) +"aQX" = ( +/obj/structure/table/wood, +/obj/structure/closet/mini_fridge, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/maintenance) +"aQY" = ( +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"aQZ" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aRa" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aRb" = ( +/obj/structure/chair/wood/darkpack{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aRc" = ( +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/access/coggie, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aRd" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/obj/transfer_point_vamp{ + id = "garage1" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aRe" = ( +/obj/structure/table/wood, +/obj/item/screwdriver{ + pixel_y = -2; + anchored = 1 + }, +/obj/item/storage/toolbox{ + pixel_y = 8 + }, +/obj/item/scooter_frame{ + pixel_x = 5; + pixel_y = -8; + anchored = 1 + }, +/obj/structure/sign/poster/city/genitorturers/directional/north{ + pixel_x = 6; + pixel_y = 34 + }, +/obj/structure/sign/poster/city/tiamat/directional/north{ + pixel_x = -9; + pixel_y = 30 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"aRf" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"aRg" = ( +/obj/structure/fireplace, +/turf/open/floor/wood/old, +/area/vtm/interior) +"aRh" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/effect/landmark/npcactivity, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aRi" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"aRj" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/interior/church) +"aRk" = ( +/obj/structure/railing/wooden_fence{ + dir = 10 + }, +/obj/structure/table/countertop, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aRl" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aRm" = ( +/obj/structure/vampdoor/old{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aRn" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/interior/littleitaly) +"aRo" = ( +/obj/structure/chair/wood/darkpack{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aRp" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 1 + }, +/turf/open/floor/eighties, +/area/vtm/westfield_mall/interior/arcade) +"aRq" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aRr" = ( +/obj/structure/table/wood, +/obj/item/book/random{ + pixel_x = 16; + pixel_y = 11 + }, +/obj/item/book/random{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/book/random{ + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aRs" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 5 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aRt" = ( +/obj/item/kirbyplants/darkpack/plant4{ + pixel_y = 16; + pixel_x = 11 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aRu" = ( +/obj/effect/decal/shadow, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aRv" = ( +/obj/structure/sign/poster/city/blade/directional/north, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"aRw" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/maintenance) +"aRx" = ( +/obj/darkpack_car/rand, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aRy" = ( +/obj/structure/vampdoor/simple, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/games_store) +"aRz" = ( +/obj/item/stack/sheet/cardboard/fifty, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aRA" = ( +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/anarch/sweeper, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"aRB" = ( +/obj/structure/vampipe{ + pixel_y = 32 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aRC" = ( +/obj/structure/secure_safe/directional/north, +/obj/structure/table, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"aRF" = ( +/obj/effect/spawner/random/trash/rat, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aRG" = ( +/obj/structure/table/countertop/yellow, +/obj/vampire_computer, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aRH" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aRI" = ( +/obj/item/mop, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/structure/mop_bucket/janitorialcart{ + dir = 4 + }, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"aRJ" = ( +/obj/item/table_clock, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aRK" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"aRL" = ( +/obj/structure/vampfence/rich, +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/plating/sidewalkalt, +/area/vtm/westfield_mall/forest) +"aRM" = ( +/obj/structure/table, +/obj/structure/frame/machine/secured, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"aRN" = ( +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aRO" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aRP" = ( +/obj/structure/rack/clothing/rand, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/smokeshop) +"aRQ" = ( +/obj/structure/vampfence/rich{ + dir = 4 + }, +/obj/effect/turf_decal/bordur{ + dir = 10 + }, +/turf/open/floor/plating/sidewalkalt, +/area/vtm/westfield_mall/forest) +"aRR" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aRS" = ( +/obj/machinery/sprinkler, +/obj/effect/landmark/npcability, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aRT" = ( +/obj/machinery/light/prince/directional/north, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/camarilla) +"aRU" = ( +/obj/structure/railing/wooden_fence{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aRV" = ( +/obj/effect/turf_decal/bordur{ + dir = 5 + }, +/obj/effect/turf_decal/bordur{ + dir = 5 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aRW" = ( +/obj/structure/vampstatue, +/obj/effect/turf_decal/bordur{ + dir = 10 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aRX" = ( +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/market, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aRZ" = ( +/obj/structure/closet/crate/dumpster, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"aSa" = ( +/obj/structure/table/optable, +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/anarch) +"aSb" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/anarch/sweeper, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/anarch) +"aSc" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/arcade) +"aSe" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aSg" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/turf/open/water, +/area/vtm/westfield_mall/forest) +"aSh" = ( +/obj/structure/table, +/obj/effect/decal/rugs, +/obj/machinery/light/blacklight/directional/west, +/obj/item/vamp/keys/nosferatu, +/obj/item/vamp/keys/nosferatu, +/obj/item/vamp/keys/nosferatu, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"aSi" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aSj" = ( +/obj/structure/chair/comfy/darkpack/red{ + dir = 4 + }, +/turf/open/floor/carpet/darkpack/bluesilver, +/area/vtm/westfield_mall/interior/theatre) +"aSk" = ( +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -5; + pixel_y = 20; + linked_elevator_id = "mall_elevator_1" + }, +/obj/machinery/button/elevator/directional/north{ + id = "mall_elevator_1"; + pixel_y = 35; + pixel_x = 9 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aSl" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/carpet/lone, +/area/vtm/westfield_mall/interior/theatre) +"aSm" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/east, +/obj/item/reagent_containers/cup/glass/coffee/vampire{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aSn" = ( +/obj/structure/table/countertop/red, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aSo" = ( +/obj/item/clothing/head/vampire/skull, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aSp" = ( +/obj/structure/bonfire/prelit/alt, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/forest) +"aSq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = -4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aSr" = ( +/obj/machinery/vending/coffee/private, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aSs" = ( +/obj/structure/chair/plastic, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aSt" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/dim/directional/east, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/techshop) +"aSu" = ( +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aSv" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aSw" = ( +/obj/effect/spawner/random/flora/all, +/turf/open/misc/grass/nosmooth, +/area/vtm/westfield_mall) +"aSx" = ( +/turf/open/misc/grass/random/grass, +/area/vtm/westfield_mall/forest) +"aSy" = ( +/obj/structure/chair/wood/darkpack{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/anarch/emissary, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/anarch) +"aSz" = ( +/obj/structure/chair/darkpack/blue{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aSA" = ( +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/effect/mapping_helpers/door/access/chantry, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aSB" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/clothing_store) +"aSD" = ( +/turf/open/floor/city/bacotell, +/area/vtm/interior/sewer) +"aSE" = ( +/obj/structure/flora/tree/vamp/pine, +/turf/open/misc/grass, +/area/vtm/westfield_mall/forest) +"aSF" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"aSG" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/turf/open/water, +/area/vtm/westfield_mall/forest) +"aSH" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aSI" = ( +/obj/effect/spawner/random/maintenance/five, +/turf/open/floor/plating/concrete, +/area/vtm/interior/sewer) +"aSJ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/flashlight/lamp{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"aSK" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aSL" = ( +/turf/open/water/acid, +/area/vtm/westfield_mall/forest) +"aSM" = ( +/obj/structure/table/countertop, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/westfield_mall/interior/supply) +"aSN" = ( +/turf/open/floor/mineral/titanium/white, +/area/vtm/westfield_mall) +"aSO" = ( +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aSP" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aSQ" = ( +/obj/effect/turf_decal/bordur/corner/inverse{ + dir = 8 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aSR" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/hot_ishu) +"aSS" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aST" = ( +/obj/structure/closet/crate/bin{ + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aSU" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"aSV" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aSW" = ( +/obj/structure/stairs/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aSX" = ( +/obj/effect/decal/pallet, +/obj/structure/closet/crate/large, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aSY" = ( +/obj/structure/table/modern, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"aSZ" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/effect/landmark/npcactivity, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aTa" = ( +/obj/effect/decal/carpet, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aTb" = ( +/obj/machinery/sprinkler, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aTc" = ( +/obj/effect/decal/shadow, +/obj/effect/decal/shadow, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"aTd" = ( +/obj/structure/flora/rock/darkpack, +/obj/effect/decal/support, +/obj/effect/decal/shadow, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"aTe" = ( +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/cave) +"aTg" = ( +/obj/structure/platform/lowwall/brick_old, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall) +"aTh" = ( +/obj/structure/hedge, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"aTi" = ( +/obj/structure/hedge/opaque, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 5 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aTj" = ( +/turf/closed/wall/vampwall/rock, +/area/vtm/interior/sewer/nosferatu_town) +"aTk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"aTl" = ( +/turf/closed/wall/vampwall/bar, +/area/vtm/westfield_mall/interior/techshop) +"aTm" = ( +/obj/structure/fake_stairs/wood/directional/west, +/obj/structure/fake_stairs/wood/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aTn" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/interior/shop) +"aTo" = ( +/obj/structure/table/modern, +/obj/structure/desk_bell, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"aTp" = ( +/obj/structure/railing, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aTq" = ( +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aTr" = ( +/obj/effect/decal/wallpaper, +/turf/closed/wall/vampwall/junk, +/area/vtm/interior/sewer/nosferatu_town) +"aTs" = ( +/obj/darkpack_car/track, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aTt" = ( +/obj/structure/table/reinforced, +/obj/item/masquerade_contract, +/obj/item/masquerade_contract, +/obj/item/masquerade_contract, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aTu" = ( +/obj/structure/chair/wood/darkpack/red{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aTv" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aTw" = ( +/obj/structure/platform/lowwall/market/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/arcade) +"aTx" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"aTy" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aTz" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aTA" = ( +/obj/machinery/autolathe, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"aTB" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior/supply) +"aTC" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 7 + }, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/interior/police) +"aTD" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/obj/structure/lamppost/sidewalk, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aTE" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 5 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aTF" = ( +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aTG" = ( +/obj/machinery/light/blacklight/directional/north, +/obj/structure/chair/plastic/darkpack{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aTH" = ( +/obj/structure/table/countertop/black, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aTI" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/lasombra, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"aTJ" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/clinic) +"aTK" = ( +/obj/darkpack_car/track/volkswagen, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"aTL" = ( +/obj/structure/noticeboard/directional/north, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/anarch) +"aTM" = ( +/obj/structure/vampfence/rich{ + dir = 4; + pixel_y = 8; + name = "bars" + }, +/obj/effect/decal/wallpaper/blue/low, +/obj/structure/platform/lowwall/painted/window/reinforced, +/turf/open/floor/plating/rough, +/area/vtm/interior/police) +"aTO" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + pixel_y = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aTP" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/foodcourt) +"aTR" = ( +/obj/machinery/light/directional/north, +/turf/open/openspace, +/area/vtm/westfield_mall/interior) +"aTS" = ( +/obj/structure/vampstatue, +/obj/effect/turf_decal/bordur{ + dir = 9 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aTT" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/supply) +"aTU" = ( +/obj/effect/decal/shadow, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior) +"aTV" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping2" + }, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/maintenance) +"aTW" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aTX" = ( +/obj/structure/sign/flag/usa/directional/north{ + pixel_y = 29 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aTY" = ( +/obj/machinery/light/prince/directional/north, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aTZ" = ( +/obj/effect/decal/cleanable/blood/splatter/oil, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"aUb" = ( +/obj/effect/landmark/start, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aUc" = ( +/obj/structure/vampdoor/simple/anarch, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"aUd" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plating/stone, +/area/vtm/westfield_mall/interior/endron_logging) +"aUe" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aUf" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aUg" = ( +/obj/item/plate, +/obj/structure/table/reinforced, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aUh" = ( +/obj/structure/rack/food, +/obj/item/stack/sheet/cardboard/fifty, +/turf/open/floor/plating/concrete, +/area/vtm/interior/shop) +"aUi" = ( +/obj/structure/closet/crate, +/obj/item/melee/vamp/brick{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/melee/vamp/brick{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/melee/baseball_bat/vamp{ + pixel_y = -4 + }, +/obj/item/chainsaw/vamp, +/obj/item/wirecutters, +/obj/item/storage/box/bodybags{ + pixel_y = 6 + }, +/obj/item/vamp/keys/old_clan_tzimisce, +/obj/item/vamp/keys/old_clan_tzimisce, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aUj" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aUk" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aUl" = ( +/obj/machinery/light/prince/directional/east, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/chantry) +"aUm" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aUn" = ( +/turf/open/floor/iron/stairs/black{ + dir = 4 + }, +/area/vtm/interior/police) +"aUp" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/police) +"aUq" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/vtm/westfield_mall) +"aUr" = ( +/obj/structure/table/countertop/bubway, +/obj/structure/retail/bubway_menu{ + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aUs" = ( +/obj/darkpack_car/retro/rand/camarilla, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aUt" = ( +/obj/structure/chair/plastic/darkpack, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aUu" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"aUv" = ( +/obj/transfer_point_vamp/backrooms/map, +/turf/open/openspace, +/area/vtm/westfield_mall) +"aUw" = ( +/obj/item/instrument/eguitar/vamp{ + pixel_y = -10; + anchored = 1 + }, +/obj/item/instrument/eguitar/vamp{ + pixel_y = 1; + anchored = 1 + }, +/obj/effect/decal/wallpaper/stone, +/turf/closed/wall/vampwall/brick_old, +/area/vtm/westfield_mall/interior/skatepark) +"aUx" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aUy" = ( +/obj/effect/landmark/start/darkpack/chantry/regent, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aUz" = ( +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/interior/police) +"aUA" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/effect/turf_decal/siding/wood/light, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"aUB" = ( +/obj/effect/decal/wallpaper/paper/darkgreen/low, +/obj/structure/table/wood, +/obj/structure/bookcase/random/fiction{ + pixel_y = 23; + density = 0 + }, +/obj/underplate, +/obj/item/kirbyplants/darkpack/plant3{ + pixel_y = 15; + pixel_x = 11 + }, +/obj/item/toy/figure/ian, +/obj/structure/platform/lowwall/junk, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer/nosferatu_town) +"aUC" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt) +"aUD" = ( +/obj/effect/turf_decal/siding/white/inner_corner, +/turf/open/floor/city/circled, +/area/vtm/interior/shop) +"aUE" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/roof) +"aUF" = ( +/obj/structure/vampdoor/old, +/obj/effect/mapping_helpers/door/access/clerk, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aUG" = ( +/turf/closed/wall/vampwall/bar, +/area/vtm/westfield_mall/interior/anarch) +"aUH" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/accessory/medal/gold, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aUI" = ( +/obj/structure/table, +/obj/machinery/fax/camarilla, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"aUJ" = ( +/obj/machinery/shower/directional/west, +/obj/structure/bath, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"aUK" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall) +"aUL" = ( +/obj/effect/turf_decal/caution/red, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aUM" = ( +/obj/machinery/light/directional/east{ + pixel_y = 9 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/foodcourt) +"aUN" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/roof) +"aUO" = ( +/obj/effect/decal/kopatich{ + pixel_x = -13; + pixel_y = 14 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aUP" = ( +/obj/item/supplypod_beacon{ + anchored = 1 + }, +/turf/open/misc/dirt/rails, +/area/vtm/westfield_mall/interior/supply) +"aUQ" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aUR" = ( +/obj/structure/table, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aUS" = ( +/obj/structure/curtain/bounty/start_closed{ + pixel_y = 16 + }, +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"aUT" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/any/double, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aUU" = ( +/obj/structure/platform/lowwall/painted/window/reinforced, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/camarilla) +"aUV" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aUW" = ( +/obj/structure/chair/plastic/darkpack, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aUX" = ( +/obj/effect/turf_decal/bordur/corner, +/obj/structure/lamppost/sidewalk, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"aUY" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/camarilla/towerwork, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/maintenance) +"aUZ" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aVa" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aVb" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aVc" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/sign/city/store/bubway/directional/north{ + pixel_x = -14; + pixel_y = 37 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aVd" = ( +/obj/effect/turf_decal/bordur{ + dir = 10 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aVe" = ( +/obj/structure/table/countertop/red, +/obj/machinery/griddle, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aVf" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/light, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/clothing_store) +"aVg" = ( +/obj/structure/ladder/manhole/down, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aVh" = ( +/obj/effect/turf_decal/siding/wood/light/end{ + dir = 1 + }, +/obj/structure/mannequin/plastic/fancy{ + anchored = 1 + }, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/clothing_store) +"aVi" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 1 + }, +/obj/effect/landmark/start/darkpack/hospital/doctor, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"aVj" = ( +/obj/structure/vampfence/rich{ + dir = 4 + }, +/obj/effect/turf_decal/bordur, +/turf/open/floor/plating/sidewalkalt, +/area/vtm/westfield_mall/forest) +"aVk" = ( +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"aVl" = ( +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aVm" = ( +/obj/structure/chair/comfy/darkpack/dark{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/supply/dealer, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"aVn" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/fake_platform/grey/double, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aVo" = ( +/turf/open/floor/plating/sidewalkalt, +/area/vtm/westfield_mall/forest) +"aVp" = ( +/obj/structure/vampdoor, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"aVq" = ( +/obj/machinery/camera/motion/directional/west, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"aVr" = ( +/obj/structure/chair/sofa/city_bench/metal/left{ + dir = 4 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"aVs" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aVt" = ( +/obj/structure/table/wood, +/obj/item/seeds/cannabis, +/obj/item/seeds/cannabis, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aVu" = ( +/obj/structure/table/countertop/bubway, +/obj/item/food/fudgedice{ + pixel_y = 7 + }, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"aVv" = ( +/turf/open/misc/dirt, +/area/vtm/interior/sewer) +"aVw" = ( +/obj/structure/flora/rock/darkpack_big, +/turf/open/misc/grass/random/bushes, +/area/vtm/westfield_mall/forest) +"aVx" = ( +/obj/effect/landmark/latejoin_masquerade, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aVy" = ( +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"aVz" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aVA" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aVB" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aVC" = ( +/obj/structure/closet/crate/large, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aVD" = ( +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall) +"aVE" = ( +/obj/structure/table/wood, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aVF" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating/stone, +/area/vtm/interior/sewer) +"aVG" = ( +/turf/closed/wall/vampwall/market, +/area/vtm/westfield_mall/interior/foodcourt) +"aVI" = ( +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/chantry) +"aVJ" = ( +/obj/structure/chair/sofa/city_bench/metal/left/black{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"aVK" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aVL" = ( +/obj/structure/chair/wood/darkpack/red, +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"aVM" = ( +/obj/structure/table/reinforced, +/obj/item/ammo_box/darkpack/c12g{ + pixel_x = 4 + }, +/obj/item/ammo_box/magazine/darkpack556, +/obj/item/ammo_box/magazine/darkpack556, +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/camarilla) +"aVN" = ( +/obj/structure/table/wood, +/obj/vampire_computer{ + pixel_y = 4 + }, +/obj/item/kirbyplants/darkpack/plant2{ + pixel_y = 19; + pixel_x = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aVO" = ( +/obj/structure/chair/sofa/corp/right, +/obj/effect/landmark/start/darkpack/chantry/archivist, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aVP" = ( +/obj/structure/table/countertop, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aVQ" = ( +/obj/effect/turf_decal/bordur, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/forest) +"aVR" = ( +/obj/structure/table, +/obj/effect/spawner/random/engineering/material, +/obj/effect/spawner/random/engineering/material, +/obj/effect/spawner/random/engineering/material, +/obj/effect/spawner/random/engineering/material, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"aVS" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"aVT" = ( +/turf/closed/wall/vampwall/rock, +/area/vtm/westfield_mall/interior/supply) +"aVU" = ( +/obj/structure/bookcase, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aVV" = ( +/obj/machinery/light/directional/south, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aVW" = ( +/obj/structure/table/modern, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aVX" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aVY" = ( +/obj/machinery/recycler/lumbermill, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aVZ" = ( +/obj/structure/table/modern, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aWa" = ( +/obj/structure/table/countertop/teal, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/games_store) +"aWb" = ( +/obj/structure/bed, +/obj/structure/bed{ + pixel_y = 11 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aWc" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/chantry) +"aWd" = ( +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall/interior/cave) +"aWe" = ( +/obj/effect/decal/cleanable/trash, +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/machinery/camera/directional/west, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer/nosferatu_town) +"aWf" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"aWg" = ( +/obj/structure/reagent_dispensers/fueltank/large{ + anchored = 1 + }, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"aWh" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/cup/glass/trophy/gold_cup{ + pixel_y = 9; + anchored = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aWi" = ( +/obj/structure/platform/lowwall/junk/alt/window, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer/nosferatu_town) +"aWj" = ( +/obj/effect/turf_decal/bordur, +/obj/structure/railing, +/obj/machinery/iv_drip, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aWk" = ( +/obj/machinery/camera/directional/east, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aWl" = ( +/obj/effect/landmark/start/darkpack/chantry/archivist, +/obj/structure/chair/wood/darkpack/red{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aWm" = ( +/obj/structure/chair/sofa/corp/right, +/obj/fake_platform/grey/easyclimb, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aWn" = ( +/obj/effect/decal/pallet, +/obj/effect/spawner/random/maintenance/no_decals, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aWo" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/decal/wallpaper/papers/random{ + pixel_y = 25 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aWp" = ( +/obj/structure/table/wood, +/obj/machinery/light/prince/directional/north, +/obj/machinery/computer/libraryconsole, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"aWq" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aWr" = ( +/obj/darkpack_car/retro/rand{ + dir = 1 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aWs" = ( +/obj/structure/table, +/obj/machinery/coffeemaker{ + pixel_y = 12 + }, +/obj/item/coffee_cartridge{ + pixel_y = 1 + }, +/obj/item/coffee_cartridge/decaf{ + pixel_x = -6 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"aWt" = ( +/obj/structure/chair/wood/darkpack/red, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aWu" = ( +/obj/structure/hedge, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aWv" = ( +/obj/effect/turf_decal/asphalt, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aWw" = ( +/obj/structure/guncase, +/obj/item/gun/ballistic/automatic/darkpack/thompson, +/obj/item/gun/ballistic/automatic/darkpack/thompson, +/turf/open/floor/carpet/darkpack/orangesilver, +/area/vtm/interior/supply) +"aWx" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping24" + }, +/turf/open/floor/plating/canal, +/area/vtm/interior/sewer) +"aWy" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aWz" = ( +/obj/item/chair/plastic, +/obj/item/chair/plastic{ + pixel_y = 2 + }, +/obj/item/chair/plastic{ + pixel_y = 4 + }, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"aWA" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aWB" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/turf/open/floor/city/circled, +/area/vtm/interior/shop) +"aWC" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aWD" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/pen/fourcolor{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"aWE" = ( +/obj/structure/closet/crate/cardboard, +/obj/effect/decal/pallet, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aWF" = ( +/obj/effect/mapping_helpers/door/lock, +/obj/structure/vampdoor/reinf{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock_difficulty/nine, +/obj/effect/mapping_helpers/door/access/wolftech, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"aWG" = ( +/obj/structure/table, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/maintenance) +"aWH" = ( +/obj/structure/vampfence/rich, +/obj/structure/platform/lowwall/painted, +/turf/open/floor/plating/rough, +/area/vtm/interior/shop) +"aWI" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/underground_parking) +"aWJ" = ( +/obj/effect/turf_decal/bordur{ + dir = 5 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aWK" = ( +/obj/fake_platform/lightpadded, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aWL" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/supply) +"aWM" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + elevator_mode = 1; + transport_linked_id = "mall_elevator_1" + }, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/elevator) +"aWN" = ( +/obj/effect/turf_decal/siding/wood/light, +/turf/open/floor/plating/granite/black, +/area/vtm/westfield_mall/interior/camarilla) +"aWO" = ( +/obj/structure/table/modern, +/obj/structure/mannequin/plastic/punk{ + anchored = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aWQ" = ( +/obj/vampire_computer{ + pixel_y = 3; + pixel_x = 4 + }, +/obj/effect/decal/pallet, +/obj/structure/table/wood, +/obj/underplate, +/obj/item/flashlight/lamp{ + pixel_y = 13; + pixel_x = -11 + }, +/turf/open/floor/city/industrial, +/area/vtm/interior/sewer/nosferatu_town) +"aWS" = ( +/obj/effect/turf_decal/crosswalk{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aWT" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/skatepark) +"aWU" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet, +/area/awaymission/errorroom) +"aWV" = ( +/obj/effect/turf_decal/asphalt, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aWW" = ( +/obj/structure/table, +/obj/item/stack/dollar/thousand{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/stack/dollar/thousand{ + pixel_x = -9; + pixel_y = 1 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"aWX" = ( +/obj/effect/turf_decal/siding/grey{ + dir = 1 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/church) +"aWY" = ( +/obj/structure/curtain/cloth/fancy/mechanical/luxurious{ + pixel_y = 16 + }, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/theatre) +"aWZ" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/westfield_mall/interior/anarch) +"aXa" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/snack{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/wine_glass{ + pixel_x = -9 + }, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"aXb" = ( +/turf/closed/wall/vampwall/brick, +/area/vtm/interior/supply) +"aXc" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aXd" = ( +/obj/structure/vampdoor, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/hot_ishu) +"aXe" = ( +/turf/open/floor/plating/granite/black, +/area/vtm/interior/shop) +"aXf" = ( +/obj/effect/spawner/random/structure/shipping_container/blank, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"aXg" = ( +/obj/machinery/light/directional/north, +/obj/structure/rack/food/rand, +/turf/open/floor/city/plating_mono, +/area/vtm/interior/shop) +"aXh" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/maintenance) +"aXi" = ( +/obj/structure/chair/wood/darkpack{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/forest_wolves/wyrmfoe, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aXj" = ( +/obj/effect/turf_decal/bordur, +/obj/structure/railing, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"aXk" = ( +/obj/machinery/light/directional/east{ + pixel_y = 9 + }, +/turf/open/openspace, +/area/vtm/westfield_mall/interior) +"aXl" = ( +/obj/structure/chair/sofa/city_bench/metal/right/black{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aXm" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/carpet/darkpack/cyan, +/area/vtm/westfield_mall/interior/vet_clinic) +"aXn" = ( +/obj/structure/coclock/grandpa, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aXo" = ( +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall) +"aXp" = ( +/obj/structure/sign/poster/city/dmc/directional/north{ + pixel_x = -8; + pixel_y = 33 + }, +/obj/structure/sign/poster/city/blade/directional/north{ + pixel_x = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aXq" = ( +/obj/structure/railing/wooden_fence{ + dir = 1; + pixel_y = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aXr" = ( +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aXs" = ( +/obj/structure/flora/rock/darkpack, +/obj/structure/flora/rock/darkpack, +/obj/item/clothing/mask/animal/frog, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer) +"aXt" = ( +/turf/closed/wall/vampwall/junk/alt, +/area/vtm/interior/sewer/nosferatu_town) +"aXu" = ( +/obj/structure/table/countertop/red, +/obj/structure/sink/basin/directional/east{ + pixel_x = -10 + }, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aXv" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer/nosferatu_town) +"aXw" = ( +/obj/structure/table/reinforced, +/obj/item/gun/ballistic/automatic/darkpack/huntrifle, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aXx" = ( +/obj/effect/decal/wallpaper/gold, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/camarilla) +"aXy" = ( +/obj/structure/table/wood, +/obj/structure/sign/poster/city/genitorturers/directional/north{ + pixel_x = 8; + pixel_y = 31 + }, +/obj/structure/sign/poster/city/darlingvioletta/directional/north{ + pixel_x = -7 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/hot_ishu) +"aXz" = ( +/obj/structure/chair/sofa/left/brown, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aXA" = ( +/obj/structure/vampdoor/simple, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/turf_decal/siding/grey, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aXB" = ( +/mob/living/carbon/human/npc/shop, +/obj/structure/chair/office, +/obj/effect/mapping_helpers/mob_buckler, +/obj/machinery/light/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aXC" = ( +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/theatre) +"aXD" = ( +/obj/item/clothing/head/cone, +/turf/open/misc/dirt, +/area/vtm/westfield_mall/interior/supply) +"aXE" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping23" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aXF" = ( +/obj/structure/table/wood, +/obj/machinery/fax/tremere, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aXG" = ( +/obj/structure/table/wood, +/obj/machinery/radio_tranceiver/police{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"aXH" = ( +/obj/effect/turf_decal/darkpack/grass{ + dir = 6 + }, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"aXI" = ( +/turf/open/water/beach/vamp/deep, +/area/vtm/westfield_mall/forest) +"aXJ" = ( +/obj/effect/turf_decal/bordur/corner, +/turf/open/water, +/area/vtm/westfield_mall/forest) +"aXK" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 5 + }, +/turf/open/floor/city/industrial/large, +/area/vtm/interior/shop) +"aXL" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"aXM" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aXN" = ( +/obj/darkpack_car/retro/rand, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"aXO" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aXP" = ( +/obj/structure/vampfence/rich, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer) +"aXQ" = ( +/obj/structure/table/optable, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aXR" = ( +/obj/structure/railing/wooden_fence, +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/wizrobe/fake, +/obj/item/clothing/head/wizard, +/obj/item/clothing/head/costume/knight, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aXS" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aXT" = ( +/turf/open/openspace, +/area/vtm/westfield_mall/interior/techshop) +"aXU" = ( +/obj/effect/decal/cleanable/trash, +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/sewer/nosferatu_town) +"aXV" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/maintenance/atrium) +"aXW" = ( +/obj/structure/vampdoor/simple, +/obj/effect/turf_decal/siding/white, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/salubri, +/turf/open/floor/city/circled, +/area/vtm/westfield_mall/interior/vet_clinic) +"aXX" = ( +/turf/open/water/beach/vamp, +/area/vtm/westfield_mall/interior/cave) +"aXY" = ( +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aXZ" = ( +/obj/effect/landmark/latejoin, +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aYa" = ( +/mob/living/carbon/human/npc/shop, +/obj/effect/decal/carpet, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aYb" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"aYc" = ( +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/skatepark) +"aYd" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/whiskey_shot{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/whiskey_shot{ + pixel_x = -8 + }, +/turf/open/floor/carpet/lone, +/area/vtm/westfield_mall/interior/theatre) +"aYe" = ( +/obj/effect/turf_decal/siding/wood/dark, +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/clinic) +"aYf" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/obj/structure/chair/plastic/darkpack, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/clinic) +"aYg" = ( +/mob/living/basic/bat{ + name = "Tim"; + gender = "female" + }, +/turf/open/floor/plating/stone, +/area/vtm/interior/sewer) +"aYh" = ( +/obj/structure/sign/flag/usa/directional/north{ + pixel_y = 29 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aYi" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite{ + pixel_y = 5 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite{ + pixel_y = 5 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aYj" = ( +/obj/structure/table/countertop/black, +/obj/structure/sink/basin/directional/west, +/obj/machinery/light/small/directional/east, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"aYk" = ( +/obj/machinery/light/prince/directional/north, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/interior/church) +"aYl" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior) +"aYm" = ( +/obj/structure/table/wood, +/obj/structure/retail/coffee_shop, +/obj/effect/turf_decal/siding/wood/light{ + dir = 4 + }, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aYn" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aYo" = ( +/obj/structure/fake_stairs/wood/directional/north, +/obj/structure/railing/wooden_fence{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aYp" = ( +/obj/effect/decal/coastline/corner, +/turf/open/misc/beach/vamp, +/area/vtm/westfield_mall/forest) +"aYq" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/dojo) +"aYr" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 7 + }, +/obj/item/kirbyplants/darkpack/plant4{ + pixel_y = 7; + pixel_x = 11 + }, +/obj/item/kirbyplants/darkpack/plant1{ + pixel_y = 17; + pixel_x = -12 + }, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/interior/police) +"aYs" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aYt" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aYu" = ( +/obj/machinery/photocopier/prebuilt, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aYv" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/arcade) +"aYw" = ( +/obj/effect/turf_decal/siding/wood/dark, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior) +"aYx" = ( +/obj/structure/table/countertop/teal, +/obj/effect/turf_decal/siding/white/corner, +/turf/open/floor/city/bacotell, +/area/vtm/interior/shop) +"aYy" = ( +/obj/structure/table/countertop/bubway, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"aYz" = ( +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"aYA" = ( +/obj/structure/table/wood, +/obj/vampire_computer, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aYB" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/turf/open/water, +/area/vtm/westfield_mall/forest) +"aYC" = ( +/obj/vehicle/ridden/atv, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/endron_logging) +"aYD" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aYE" = ( +/obj/item/melee/skateboard/pro{ + pixel_y = -3; + anchored = 1 + }, +/obj/effect/decal/wallpaper/stone, +/turf/closed/wall/vampwall/brick_old, +/area/vtm/westfield_mall/interior/skatepark) +"aYF" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"aYG" = ( +/turf/open/floor/plating/sidewalk, +/area/vtm/westfield_mall) +"aYH" = ( +/obj/structure/vampipe{ + icon_state = "piping3"; + pixel_y = 32 + }, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"aYI" = ( +/obj/machinery/sprinkler, +/turf/open/floor/eighties, +/area/vtm/westfield_mall/interior/arcade) +"aYJ" = ( +/obj/structure/rack/food, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aYK" = ( +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"aYL" = ( +/obj/structure/safe, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/dollar/thousand, +/obj/item/stack/sheet/mineral/gold/fifty, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor/city/plating, +/area/vtm/interior/bianchiBank) +"aYM" = ( +/obj/structure/hedge, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"aYN" = ( +/obj/structure/rack/clothing_hanger, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aYO" = ( +/obj/effect/decal/wallpaper/red, +/turf/closed/wall/vampwall/painted, +/area/vtm/interior/elevator) +"aYP" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"aYQ" = ( +/obj/structure/chair/stool/bar/darkpack/red, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aYR" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/smokeshop) +"aYS" = ( +/obj/structure/roofstuff/vent/autotiling, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall) +"aYT" = ( +/obj/effect/turf_decal/caution/stand_clear/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/endron_logging) +"aYU" = ( +/obj/structure/vampfence/rich{ + dir = 4; + name = "window bars" + }, +/obj/structure/platform/lowwall/junk/window, +/turf/open/floor/plating/rough, +/area/vtm/interior/sewer/nosferatu_town) +"aYV" = ( +/mob/living/carbon/human/npc/shop{ + resistant_to_disciplines = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aYW" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping2" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance) +"aYX" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping25" + }, +/obj/machinery/microwave, +/obj/machinery/light/small/directional/north{ + pixel_x = 2 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aYY" = ( +/obj/structure/rack/clothing_hanger/rand, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aYZ" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/city/toilet, +/area/vtm/interior/shop) +"aZa" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/city/toilet/large, +/area/vtm/westfield_mall/interior/smokeshop) +"aZb" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/city/gummaguts, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aZc" = ( +/obj/structure/chair/sofa/city_bench/metal/right/yellow{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aZd" = ( +/obj/structure/flora/tree/vamp/pine, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/misc/grass, +/area/vtm/westfield_mall/forest) +"aZe" = ( +/mob/living/carbon/human/npc/shop, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/mapping_helpers/mob_buckler, +/turf/open/floor/carpet/darkpack/cyan, +/area/vtm/westfield_mall/interior/vet_clinic) +"aZf" = ( +/turf/open/misc/dirt, +/area/vtm/westfield_mall/interior/supply) +"aZg" = ( +/obj/machinery/light/floor, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"aZh" = ( +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aZi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/mouse/vampire, +/turf/open/floor/wood/old, +/area/vtm/interior) +"aZj" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/hot_ishu) +"aZk" = ( +/obj/structure/coclock, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"aZl" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aZm" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"aZn" = ( +/obj/machinery/light/directional/south, +/obj/structure/chair/office/darkpack/blue{ + dir = 1 + }, +/obj/effect/landmark/start/darkpack/law_enforcement/chief, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/interior/police) +"aZo" = ( +/obj/structure/railing/wooden_fence{ + dir = 8 + }, +/obj/structure/table/countertop, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aZp" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aZq" = ( +/obj/structure/rack/food/rand{ + dir = 4; + pixel_y = 16; + pixel_x = -24 + }, +/turf/open/floor/city/circled/large, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"aZr" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/games_store) +"aZs" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/nosferatu, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/plating/canalplating, +/area/vtm/interior/sewer/nosferatu_town) +"aZt" = ( +/obj/structure/closet, +/obj/item/clothing/under/vampire/police, +/obj/item/clothing/under/vampire/police/long, +/obj/item/clothing/under/vampire/police/pants, +/obj/item/clothing/under/vampire/police/turtleneck, +/obj/item/clothing/under/vampire/police/utility, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/item/lighter/greyscale, +/turf/open/floor/city/plating, +/area/vtm/interior/police) +"aZu" = ( +/obj/structure/table/wood, +/obj/structure/retail/clothing_store, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/clothing_store) +"aZv" = ( +/mob/living/carbon/human/npc/shop, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/mapping_helpers/mob_buckler, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aZw" = ( +/obj/structure/sign/poster/contraband/dream/directional/north{ + pixel_x = -1; + pixel_y = 31 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aZx" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8; + pixel_x = -3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"aZy" = ( +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/interior/church) +"aZz" = ( +/obj/structure/chair/sofa/city_bench/metal/middle/black{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/rich, +/area/vtm/westfield_mall) +"aZA" = ( +/obj/structure/bookcase, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aZB" = ( +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/bianchiBank) +"aZC" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/wallpaper/grey{ + pixel_y = 32 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/north, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/smokeshop) +"aZD" = ( +/obj/structure/table/countertop, +/obj/structure/mannequin/plastic, +/turf/open/floor/plating/concrete, +/area/vtm/interior/supply) +"aZE" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aZF" = ( +/obj/structure/weightmachine, +/obj/effect/decal/rugs, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/city/plating_stone, +/area/vtm/westfield_mall/interior) +"aZG" = ( +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping13" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/maintenance/basement) +"aZH" = ( +/obj/structure/table, +/obj/effect/decal/rugs, +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/plating/rough{ + icon_state = "carpet_black" + }, +/area/vtm/interior/sewer/nosferatu_town) +"aZI" = ( +/obj/machinery/vending/games, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"aZJ" = ( +/obj/structure/table/reinforced, +/obj/structure/fluff/tv{ + pixel_y = 14; + pixel_x = 16 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aZK" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"aZL" = ( +/obj/effect/turf_decal/siding/wood/dark, +/obj/structure/vampdoor/wood, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/effect/mapping_helpers/door/access/bank, +/obj/effect/mapping_helpers/door/lock, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"aZM" = ( +/obj/structure/table/wood, +/obj/item/flashlight/flare/candle{ + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/interior/church) +"aZN" = ( +/obj/effect/decal/painting{ + pixel_y = 32 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aZO" = ( +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior) +"aZP" = ( +/obj/item/flashlight/flare/candle/infinite, +/obj/structure/table/wood, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior) +"aZQ" = ( +/mob/living/carbon/human/npc/shop, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"aZR" = ( +/obj/machinery/bookbinder, +/obj/structure/coclock, +/obj/machinery/light_switch/directional/north{ + pixel_x = -10; + pixel_y = 31 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"aZS" = ( +/obj/structure/dresser, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"aZT" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/coffee/vampire/robust{ + pixel_x = -7 + }, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"aZU" = ( +/obj/structure/glowshroom, +/turf/open/misc/grass, +/area/vtm/westfield_mall/forest) +"aZV" = ( +/obj/effect/landmark/npcability, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/parking_lot) +"aZW" = ( +/obj/machinery/light/prince/broken/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/mansion) +"aZX" = ( +/obj/effect/decal/wallpaper/red, +/obj/item/food/chocolatebar{ + pixel_x = -12; + pixel_y = -10 + }, +/obj/item/food/chocolatebar{ + pixel_x = -1; + pixel_y = -10 + }, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"aZY" = ( +/turf/closed/wall/vampwall/wood, +/area/vtm/westfield_mall/forest) +"aZZ" = ( +/turf/open/floor/iron/stairs/left{ + dir = 8 + }, +/area/vtm/westfield_mall/interior/theatre) +"baf" = ( +/obj/structure/rack/food, +/obj/effect/spawner/random/bureaucracy/crayon{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/effect/spawner/random/bureaucracy/crayon{ + pixel_y = 9 + }, +/obj/effect/spawner/random/bureaucracy/crayon{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/effect/spawner/random/bureaucracy/crayon{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"bfr" = ( +/obj/structure/desk_bell{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/food/cake/berry_chocolate_cake{ + pixel_y = 27 + }, +/obj/structure/table/countertop/green, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"bkw" = ( +/obj/effect/decal/rugs, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"brv" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"buD" = ( +/obj/structure/vampstatue/cloaked, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"bvD" = ( +/obj/effect/mapping_helpers/door/access/ventrue, +/obj/structure/vampdoor{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"bzR" = ( +/obj/machinery/sprinkler, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"bAt" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall) +"bOf" = ( +/obj/vehicle/ridden/scooter{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"bPq" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = -10 + }, +/obj/machinery/light/directional/north, +/obj/effect/spawner/random/entertainment/dice{ + pixel_x = -7 + }, +/obj/effect/spawner/random/entertainment/dice{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/effect/spawner/random/entertainment/deck{ + pixel_x = -8; + pixel_y = 18 + }, +/obj/effect/spawner/random/entertainment/deck{ + pixel_x = 5; + pixel_y = 18 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"bPr" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/coclock, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"bPH" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -6 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"bSD" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"bSP" = ( +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/structure/table/modern, +/obj/item/phone_book{ + pixel_x = -3 + }, +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/law_office) +"bVB" = ( +/obj/structure/table/wood, +/obj/item/key/golfcart, +/obj/item/clothing/head/vampire/hardhat{ + pixel_x = 7 + }, +/obj/item/clothing/head/vampire/hardhat{ + pixel_x = -8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"bXd" = ( +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/skatepark) +"bZg" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = -23; + pixel_y = 2 + }, +/obj/item/food/candy_corn{ + pixel_x = -23; + pixel_y = 5 + }, +/obj/item/food/candy_corn{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/item/food/candyheart{ + pixel_y = 15; + pixel_x = -19 + }, +/obj/item/food/candyheart{ + pixel_y = 15; + pixel_x = -9 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"cbl" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"cdr" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/pet/cat/darkpack{ + gender = "male"; + name = "Abel"; + desc = "Because he's 'Abel' to catch so many mice!" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"ciB" = ( +/obj/transfer_point_vamp{ + id = "forestR2" + }, +/turf/open/misc/dirt, +/area/vtm/interior/caves) +"ckt" = ( +/obj/machinery/sprinkler, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"clH" = ( +/obj/machinery/light/dim/directional/east, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"clL" = ( +/obj/structure/chair/sofa/corner/maroon, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"cnl" = ( +/obj/structure/table/wood/fancy, +/obj/machinery/light/prince/directional/north, +/obj/effect/spawner/random/decoration/flower, +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/law_office) +"ctM" = ( +/obj/effect/mapping_helpers/door/access/supply, +/obj/structure/vampdoor/woodglass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"cuV" = ( +/obj/structure/chair/sofa/middle/brown{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"cER" = ( +/obj/structure/closet/crate/bin{ + pixel_x = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"cHl" = ( +/obj/item/kirbyplants/darkpack/random, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"cID" = ( +/obj/effect/landmark/start/darkpack/hecata/squadra, +/turf/open/floor/city/plating_stone, +/area/vtm/interior/bianchiBank) +"cLl" = ( +/turf/closed/wall/vampwall/market, +/area/vtm/westfield_mall/interior/bathroom) +"cLU" = ( +/turf/open/floor/plating/rough/cave, +/area/vtm/interior/caves) +"dan" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/camarilla/clerk, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"dll" = ( +/obj/structure/railing/wooden_fence{ + dir = 1; + pixel_y = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/supply) +"drk" = ( +/obj/structure/rack/food, +/obj/item/paint_palette, +/obj/item/paint_palette{ + pixel_y = 11 + }, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"dsE" = ( +/obj/item/storage/fancy/donut_box{ + pixel_y = 19 + }, +/obj/structure/table/countertop/green, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"duz" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior) +"dvM" = ( +/obj/structure/bed/double, +/obj/structure/railing/wooden_fence{ + dir = 4 + }, +/obj/item/bedsheet/rd/double, +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/law_office) +"dwx" = ( +/obj/item/camera_film{ + pixel_x = -18; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/trash, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"dwM" = ( +/obj/structure/closet/secure_closet/freezer/fridge/all_access, +/obj/item/storage/box/ingredients/american, +/obj/item/storage/box/ingredients/carnivore, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/grains, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/reagent_containers/condiment/milk, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"dFh" = ( +/obj/effect/mapping_helpers/door/access/ventrue, +/obj/structure/vampdoor{ + dir = 4 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"dGP" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/chantry, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"dJS" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/trash, +/obj/effect/decal/cleanable/blood/splatter/oil, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"dMM" = ( +/obj/structure/vampdoor/woodglass, +/obj/effect/mapping_helpers/door/access/lasombra, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/carpet/darkpack/blackgold, +/area/vtm/interior/church) +"dQG" = ( +/obj/structure/vampdoor/wood/apartment, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"dTh" = ( +/obj/structure/chair/office/darkpack/red, +/obj/effect/landmark/start/darkpack/law_enforcement/fbi, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/art_store) +"dYz" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/wolftech, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/techshop) +"ebf" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"eel" = ( +/obj/machinery/light/floor, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"eeN" = ( +/mob/living/carbon/human/npc/shop, +/obj/structure/chair/darkpack/blue, +/obj/effect/mapping_helpers/mob_buckler, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior) +"efX" = ( +/obj/machinery/light/directional/east, +/obj/item/paint/paint_remover{ + pixel_x = 6; + pixel_y = -9 + }, +/obj/item/paint/yellow{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/item/paint/red, +/obj/item/paint/white{ + pixel_x = 9 + }, +/obj/item/paint/violet{ + pixel_x = -9 + }, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"emu" = ( +/obj/machinery/light/directional/east, +/turf/open/openspace, +/area/vtm/westfield_mall/interior) +"enr" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = -13; + pixel_y = 2 + }, +/obj/item/food/donut/jelly/choco{ + pixel_y = 11; + pixel_x = -11 + }, +/obj/item/food/chocoorange{ + pixel_x = 4; + pixel_y = 21 + }, +/obj/item/food/chocoorange{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/item/food/chocoorange{ + pixel_x = -14; + pixel_y = 21 + }, +/obj/item/food/donut/jelly/choco{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/food/donut/jelly/caramel{ + pixel_y = -2; + pixel_x = -11 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"esn" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/structure/vampdoor/wood/apartment, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"ewS" = ( +/obj/machinery/photocopier/prebuilt, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"eyv" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/flashlight/lamp{ + pixel_x = -9; + pixel_y = 11 + }, +/obj/effect/spawner/random/bureaucracy/folder{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"eBu" = ( +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/law_office) +"eBB" = ( +/obj/machinery/sprinkler, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"eJa" = ( +/obj/structure/rack/food{ + dir = 8; + pixel_x = -34; + pixel_y = 2 + }, +/obj/item/food/chocoorange{ + pixel_x = 4; + pixel_y = 21 + }, +/obj/item/food/chocoorange{ + pixel_x = 10; + pixel_y = 21 + }, +/obj/item/food/donut/jelly/choco{ + pixel_y = 11; + pixel_x = 7 + }, +/obj/item/food/donut/jelly/caramel{ + pixel_y = -2; + pixel_x = 35 + }, +/obj/item/food/donut/jelly/caramel{ + pixel_y = -2; + pixel_x = 7 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"eKL" = ( +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"eNH" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"eRr" = ( +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"eXm" = ( +/obj/structure/vampdoor/old{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/toreador, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/theatre) +"eYT" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 4 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"feh" = ( +/obj/structure/table/wood, +/obj/item/carpenter_hammer{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/item/assembly/mousetrap{ + pixel_x = 11; + pixel_y = 11 + }, +/obj/item/assembly/mousetrap{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"fgJ" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/obj/item/soil_sack{ + pixel_x = -6 + }, +/obj/item/soil_sack{ + pixel_x = 10 + }, +/obj/item/soil_sack{ + pixel_x = 2 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"fjk" = ( +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/skatepark) +"fmw" = ( +/obj/structure/table/glass, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"foj" = ( +/obj/structure/table/wood, +/obj/item/crowbar{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/item/wirecutters{ + pixel_x = -7 + }, +/obj/item/wirecutters{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/hatchet/wooden{ + pixel_x = -13; + pixel_y = 7 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"fqc" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"fwG" = ( +/obj/effect/decal/wallpaper/grey, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"fxg" = ( +/obj/effect/turf_decal/caution/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"fxB" = ( +/obj/machinery/sprinkler, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/theatre) +"fGB" = ( +/obj/effect/decal/wallpaper/papers/seven, +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/games_store) +"fJW" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 1 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"fLp" = ( +/obj/effect/decal/wallpaper/papers/random{ + pixel_x = 1; + pixel_y = 26 + }, +/turf/open/openspace, +/area/vtm/westfield_mall/interior/games_store) +"fLs" = ( +/obj/structure/platform/lowwall/market/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/law_office) +"fMu" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/seclite{ + pixel_y = 5 + }, +/obj/item/flashlight/seclite, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"fSa" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/flashlight/lamp{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"fVR" = ( +/obj/structure/vampdoor/woodglass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"gcK" = ( +/obj/structure/table/countertop/red, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"gfm" = ( +/obj/structure/table/wood, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "these_are_here_for_show_do_not_assign_me_a_button"; + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"gfJ" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"ggn" = ( +/obj/structure/table/wood, +/obj/vampire_computer{ + pixel_y = 4 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"giN" = ( +/obj/effect/turf_decal/siding/white/corner, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"gjo" = ( +/obj/structure/vampdoor/glass, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/foodcourt/restaurant) +"glA" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/candy_store) +"gqS" = ( +/obj/effect/decal/wallpaper/red, +/obj/effect/decal/wallpaper/paper/darkred, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/law_office) +"gqY" = ( +/obj/structure/table/modern, +/obj/structure/retail/gun_store, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior) +"gsP" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/food/vampire/icecream/chocolate, +/obj/item/food/vampire/icecream/chocolate{ + pixel_y = 1; + pixel_x = -4 + }, +/obj/item/food/vampire/icecream/chocolate{ + pixel_y = -7 + }, +/obj/item/food/vampire/icecream/berry{ + pixel_x = -4 + }, +/obj/item/food/vampire/icecream/berry, +/obj/item/food/vampire/icecream/berry{ + pixel_x = 5 + }, +/obj/item/food/vampire/icecream/berry{ + pixel_y = -8 + }, +/obj/item/food/vampire/icecream/chocolate{ + pixel_y = -7 + }, +/obj/item/food/vampire/icecream/chocolate{ + pixel_y = -8; + pixel_x = -4 + }, +/obj/item/food/icecreamsandwich{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/food/icecreamsandwich{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/structure/sign/poster/contraband/jumbo_bar/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"gwV" = ( +/obj/structure/sign/city/skateshop/four/directional/north, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"gyy" = ( +/obj/structure/rack/food, +/obj/item/paint/anycolor{ + pixel_x = 8 + }, +/obj/item/paint/green, +/obj/item/paint/black{ + pixel_x = -6 + }, +/obj/item/paint/blue{ + pixel_y = 12 + }, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"gKJ" = ( +/obj/structure/vampdoor/simple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"gPI" = ( +/obj/structure/closet/crate/bin{ + pixel_x = 8 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"gPN" = ( +/obj/effect/landmark/start/darkpack/law_enforcement/sergeant, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/interior/police) +"gTj" = ( +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = 5 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = -6 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = -1 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = -10; + pixel_y = -13 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = -10; + pixel_y = -13 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = 5; + pixel_y = -13 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = -3; + pixel_y = -13 + }, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"gWV" = ( +/obj/item/smartphone/payphone{ + pixel_y = 20 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/parking_lot) +"gXS" = ( +/obj/machinery/hydroponics/simple/wooden, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"haB" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/old, +/area/vtm/westfield_mall/interior/chantry) +"hdo" = ( +/obj/effect/decal/wallpaper/padded, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"hjz" = ( +/obj/effect/decal/wallpaper/red/low, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "these_are_here_for_show_do_not_assign_me_a_button" + }, +/obj/structure/platform/lowwall/painted/window/reinforced, +/turf/open/floor/plating/rough, +/area/vtm/interior/bianchiBank) +"hkP" = ( +/obj/structure/chair/sofa/corp/corner, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/skatepark) +"hmf" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"hnO" = ( +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/obj/structure/filingcabinet{ + pixel_x = 7 + }, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"hnS" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/obj/structure/roadblock{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"hyM" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"hzk" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/obj/item/clothing/shoes/vampire/jackboots/work{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/clothing/shoes/vampire/jackboots/work{ + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"hBm" = ( +/obj/weapon_showcase, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"hFN" = ( +/obj/structure/easel, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"hIc" = ( +/obj/structure/table/wood, +/obj/item/shovel/spade{ + pixel_x = 14; + pixel_y = 5 + }, +/obj/item/cultivator{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping12" + }, +/obj/effect/spawner/random/engineering/toolbox{ + pixel_x = -7 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"hOS" = ( +/obj/effect/turf_decal/bordur{ + dir = 6 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"hRX" = ( +/obj/structure/noticeboard/directional/north, +/obj/item/gun/ballistic/automatic/darkpack/ar15{ + pixel_y = 29 + }, +/obj/structure/table/reinforced, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"hSR" = ( +/obj/machinery/shower/directional/south, +/obj/structure/curtain, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/siding/white/end, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior) +"hSW" = ( +/obj/structure/chair/comfy/darkpack/dark{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/primogen/ventrue, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"hTf" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "these_are_here_for_show_do_not_assign_me_a_button" + }, +/obj/structure/vampdoor/woodglass, +/obj/effect/mapping_helpers/door/lock_difficulty/five, +/obj/effect/mapping_helpers/door/access/bank, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/carpet/darkpack/redsilver, +/area/vtm/interior/bianchiBank) +"hTH" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs{ + pixel_x = -3 + }, +/obj/item/toner/large{ + pixel_y = 11 + }, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"hUx" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/phone{ + pixel_y = 7 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/theatre) +"hXh" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"hXE" = ( +/obj/structure/table/modern, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"iaz" = ( +/obj/structure/sign/painting{ + pixel_y = 32; + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"ifk" = ( +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"ikv" = ( +/obj/effect/decal/wallpaper/papers/two, +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/games_store) +"ilt" = ( +/obj/structure/sign/poster/city/vesuvius{ + pixel_x = 4 + }, +/obj/effect/decal/wallpaper/grey, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"itd" = ( +/obj/structure/table, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"iyu" = ( +/obj/transfer_point_vamp{ + id = "forestL1" + }, +/turf/open/misc/dirt, +/area/vtm/interior/caves) +"izc" = ( +/obj/structure/noticeboard/directional/north, +/obj/item/gun/ballistic/automatic/darkpack/huntrifle{ + pixel_y = 29 + }, +/obj/structure/table/reinforced, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"iAN" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"iHZ" = ( +/obj/structure/table, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"iKw" = ( +/obj/effect/landmark/start/darkpack/hecata/famiglia, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"iRP" = ( +/obj/structure/vampdoor/woodglass, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/carpet/darkpack, +/area/vtm/interior/littleitaly) +"iUQ" = ( +/obj/structure/noticeboard/directional/north, +/obj/item/claymore/machete{ + pixel_x = 9; + pixel_y = 29 + }, +/obj/structure/table/reinforced, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"iWj" = ( +/obj/effect/decal/pallet, +/turf/open/water/vamp_sewer, +/area/vtm/interior/sewer) +"jdP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/structure/vampdoor/reinf{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/police, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/art_store) +"jfA" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/south, +/obj/item/storage/fancy/donut_box{ + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 11; + pixel_y = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"jjQ" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"jnN" = ( +/obj/structure/closet/crate/bin{ + pixel_x = 8 + }, +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"jtP" = ( +/obj/item/toy/crayon/spraycan{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = 1; + pixel_y = -6 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"jxp" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"jzn" = ( +/obj/structure/table/wood, +/obj/item/table_clock{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/effect/spawner/random/bureaucracy/briefcase{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"jCI" = ( +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"jFz" = ( +/obj/transfer_point_vamp{ + id = "garage4" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"jFU" = ( +/obj/weapon_showcase, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior) +"jJP" = ( +/obj/structure/closet/crate/large{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"jQE" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs/black{ + dir = 4 + }, +/area/vtm/westfield_mall/interior/art_store) +"jQW" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"jVB" = ( +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/art_store) +"jWP" = ( +/obj/structure/sink/directional/south, +/obj/effect/decal/cleanable/trash, +/obj/structure/mirror/directional/north, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"kcy" = ( +/mob/living/carbon/human/npc/shop, +/obj/structure/chair/darkpack/blue, +/obj/effect/mapping_helpers/mob_buckler, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"kis" = ( +/obj/machinery/shower/directional/west, +/obj/structure/curtain, +/obj/effect/turf_decal/siding/white/inner_corner{ + dir = 8 + }, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"kmc" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"kno" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/flashlight/lamp{ + pixel_x = -9; + pixel_y = 11 + }, +/obj/effect/spawner/random/bureaucracy/folder{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"kpL" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/art_store) +"kpP" = ( +/obj/structure/table/countertop/bubway, +/obj/structure/desk_bell{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/carpet/darkpack/greengold, +/area/vtm/westfield_mall/interior/games_store) +"ktE" = ( +/obj/structure/table/wood, +/obj/item/ritual_tome/arcane, +/obj/item/ritual_tome/arcane, +/obj/item/ritual_tome/arcane, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/chantry) +"kzc" = ( +/obj/machinery/light/small/dim/directional/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"kPZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"lav" = ( +/obj/structure/vampdoor{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/director, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"lra" = ( +/obj/effect/turf_decal/bordur, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"lyX" = ( +/obj/structure/table/modern, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior) +"lzq" = ( +/obj/structure/vampdoor/glass, +/obj/effect/turf_decal/siding/wood/dark, +/obj/effect/mapping_helpers/door/access/police, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"lAO" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/structure/coclock, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"lBO" = ( +/obj/machinery/photocopier/prebuilt, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"lBR" = ( +/obj/structure/easel, +/obj/item/canvas/nineteen_nineteen, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"lCz" = ( +/obj/effect/decal/wallpaper/paper/green, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/maintenance/atrium) +"lDl" = ( +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/games_store) +"lDD" = ( +/obj/structure/vampdoor/woodglass, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/shop) +"lEt" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/entertainment/cigarette_pack{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/effect/spawner/random/entertainment/cigarette_pack{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/effect/spawner/random/entertainment/cigarette_pack{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/effect/spawner/random/entertainment/lighter{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/effect/spawner/random/entertainment/lighter{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"lWC" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/access/cleaning, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/janitor) +"lXz" = ( +/obj/effect/landmark/start/darkpack/hecata/squadra, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"mbi" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/obj/structure/vampdoor/glass, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/interior) +"mcL" = ( +/obj/machinery/light/warm/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"mfI" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"mjJ" = ( +/obj/item/kirbyplants/darkpack/random, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"mlg" = ( +/obj/structure/table, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"mpc" = ( +/obj/structure/vampdoor/woodglass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/banu, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/dojo) +"mqH" = ( +/obj/structure/table/wood, +/obj/vampire_computer, +/obj/item/phone_book{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/theatre) +"mrg" = ( +/obj/structure/chair/wood/darkpack{ + dir = 4 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"mtZ" = ( +/obj/structure/rack/clothing_hanger, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"mws" = ( +/obj/structure/filingcabinet/white{ + pixel_x = -6 + }, +/obj/structure/filingcabinet/white{ + pixel_x = 8 + }, +/obj/effect/decal/wallpaper/papers/random{ + pixel_x = 1; + pixel_y = 26 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/art_store) +"mwU" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/autoname, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/access/clerk, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"mys" = ( +/obj/structure/vampdoor/simple, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"mEC" = ( +/obj/structure/vampdoor/glass, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"mFb" = ( +/obj/machinery/door/poddoor/shutters{ + id = "keepershutters" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"mFc" = ( +/obj/item/smartphone/payphone{ + pixel_y = 20 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"mGq" = ( +/obj/machinery/sprinkler, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"mGY" = ( +/obj/structure/railing{ + dir = 8 + }, +/mob/living/carbon/human/npc/shop, +/obj/structure/chair/office/darkpack/red{ + dir = 8 + }, +/obj/effect/mapping_helpers/mob_buckler, +/turf/open/floor/carpet/darkpack/bluegold, +/area/vtm/westfield_mall/interior/theatre) +"mPi" = ( +/obj/structure/safe, +/obj/item/stack/dollar/hundred{ + pixel_y = -8; + pixel_x = 4 + }, +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/law_office) +"nbK" = ( +/obj/structure/table, +/obj/machinery/light/cold/directional/west{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"ncK" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/rank/civilian/lawyer/black, +/obj/item/clothing/under/rank/civilian/lawyer/black/skirt, +/obj/item/storage/belt/sheath/vamp/rapier, +/obj/item/reagent_containers/cup/glass/bottle/wine/blood, +/obj/item/vamp/keys/ventrue, +/obj/item/vamp/keys/ventrue, +/obj/item/vamp/keys/ventrue, +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/law_office) +"ngU" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"nph" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/storage/fancy/coffee_cart_rack{ + pixel_x = -11; + pixel_y = 1 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/police) +"nqd" = ( +/obj/effect/spawner/random/entertainment/dice{ + pixel_x = 12 + }, +/obj/effect/spawner/random/entertainment/deck{ + pixel_x = 9; + pixel_y = 18 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"nAq" = ( +/obj/structure/noticeboard/directional/north, +/obj/item/gun/ballistic/shotgun/vampire{ + pixel_y = 29 + }, +/obj/structure/table/reinforced, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"nEn" = ( +/obj/effect/landmark/start/darkpack/voivode/zadruga, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"nEH" = ( +/obj/item/flashlight/lamp/green{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/item/phone{ + pixel_x = 7 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"nFJ" = ( +/obj/effect/turf_decal/bordur, +/obj/structure/railing, +/obj/effect/landmark/start/darkpack/voivode/bogatyr, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"nHO" = ( +/obj/effect/mapping_helpers/door/access/ventrue, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/seven, +/obj/structure/vampdoor{ + dir = 4 + }, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"nML" = ( +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/skatepark) +"nRx" = ( +/obj/structure/vampdoor/simple, +/obj/effect/mapping_helpers/door/access/cleaning, +/obj/effect/mapping_helpers/door/lock, +/obj/effect/mapping_helpers/door/lock_difficulty/two, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"nRM" = ( +/obj/effect/turf_decal/asphaltline/alt{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"nUH" = ( +/obj/structure/table, +/obj/machinery/chem_heater/withbuffer, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"nZe" = ( +/obj/structure/platform/lowwall/market/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/candy_store) +"ofr" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "these_are_here_for_show_do_not_assign_me_a_button" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"ofB" = ( +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/law_office) +"okz" = ( +/obj/structure/sign/city/skateshop/three/directional/north, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"okM" = ( +/obj/effect/decal/rugs, +/obj/structure/detectiveboard/directional/north, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"olG" = ( +/obj/transfer_point_vamp{ + id = "forestR1" + }, +/turf/open/misc/dirt, +/area/vtm/interior/caves) +"ooV" = ( +/obj/transfer_point_vamp{ + id = "forestL2" + }, +/turf/open/misc/dirt, +/area/vtm/interior/caves) +"oqv" = ( +/obj/structure/coclock, +/obj/machinery/light_switch/directional/north{ + pixel_x = -12 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/art_store) +"oqU" = ( +/obj/machinery/coffeemaker/impressa{ + pixel_y = 8; + pixel_x = -2 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 13 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 13; + pixel_y = 10 + }, +/obj/item/storage/box/coffeepack{ + pixel_x = 13; + pixel_y = 17 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"osE" = ( +/obj/structure/vampdoor/woodglass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/autoname, +/obj/effect/mapping_helpers/door/access/npc, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"otF" = ( +/obj/structure/vampdoor/woodglass, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/plating/granite/black, +/area/vtm/interior/shop) +"oux" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/hot_ishu) +"oGX" = ( +/obj/effect/spawner/random/trash/box, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"oQx" = ( +/obj/structure/table/countertop/beige, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/vampire_computer/box{ + dir = 4 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/art_store) +"oUI" = ( +/obj/structure/chair/office/darkpack/red{ + dir = 1 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"oWC" = ( +/obj/structure/fluff/tv{ + pixel_y = 14; + pixel_x = 16 + }, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/ripped/directional/north, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"paE" = ( +/obj/structure/table/wood, +/obj/item/cultivator/rake{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/extinguisher{ + pixel_x = -6; + pixel_y = 18 + }, +/obj/item/flashlight{ + pixel_x = 8 + }, +/obj/item/vamp/keys/cleaning{ + pixel_x = -10 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"pcJ" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/parking_lot) +"pmd" = ( +/obj/structure/table/countertop/beige, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/item/paper_bin, +/obj/structure/fluff/paper/stack{ + pixel_x = -4 + }, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"pnj" = ( +/obj/machinery/light/small/dim/directional/north, +/obj/structure/closet/cabinet, +/obj/item/gun/ballistic/automatic/pistol/darkpack/beretta/toreador, +/obj/item/clothing/under/dress/tango, +/obj/item/clothing/under/suit/tuxedo, +/obj/item/ammo_box/magazine/semi9mm/toreador, +/obj/item/ammo_box/magazine/semi9mm/toreador, +/obj/item/bouquet/rose, +/obj/item/vamp/keys/toreador, +/obj/item/vamp/keys/toreador, +/obj/item/vamp/keys/toreador, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/theatre) +"pxk" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/obj/structure/vampdoor/glass, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/interior) +"pxB" = ( +/obj/effect/landmark/start/darkpack/hospital/doctor, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"pAp" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/parking_lot) +"pAs" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"pHD" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 1 + }, +/obj/structure/vampdoor/glass, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/plating/sidewalk/old, +/area/vtm/westfield_mall/interior) +"pPg" = ( +/obj/structure/table/modern, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/skatepark) +"pPB" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/herring, +/area/vtm/interior/littleitaly) +"qae" = ( +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"qbw" = ( +/obj/effect/decal/wallpaper/papers/one, +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/games_store) +"qbP" = ( +/obj/structure/chair/sofa/corner/maroon{ + dir = 4 + }, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"qgO" = ( +/obj/effect/decal/cleanable/trash, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"qhs" = ( +/obj/structure/chair/office, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/skatepark) +"qtc" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/art_store) +"qNv" = ( +/obj/effect/turf_decal/siding/wood/dark{ + dir = 8 + }, +/obj/structure/curtain/bounty{ + pixel_y = 16 + }, +/turf/open/floor/iron/stairs{ + dir = 8 + }, +/area/vtm/westfield_mall/interior/law_office) +"qNS" = ( +/obj/structure/vampdoor/simple, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"qOC" = ( +/obj/transfer_point_vamp{ + id = "garage1" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"qUY" = ( +/obj/transfer_point_vamp{ + id = "garage3" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"qVZ" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/arcade) +"rfA" = ( +/obj/effect/decal/carpet{ + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"rne" = ( +/obj/effect/decal/rugs, +/obj/effect/decal/rugs, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"rus" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"rvt" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 4 + }, +/obj/effect/landmark/start/darkpack/citizen/janitor, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"rvI" = ( +/obj/structure/vampdoor/glass, +/obj/effect/turf_decal/bordur, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"rAl" = ( +/obj/machinery/light/dim/directional/east, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"rDj" = ( +/obj/item/kirbyplants/darkpack/random, +/obj/effect/landmark/start/darkpack/hecata/squadra, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/bianchiBank) +"rGI" = ( +/obj/structure/chair/office/darkpack/blue{ + dir = 8 + }, +/obj/effect/landmark/start/darkpack/law_enforcement/fbi, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"rHM" = ( +/obj/effect/decal/pallet, +/obj/item/kirbyplants/darkpack/random, +/turf/open/water/vamp_sewer, +/area/vtm/interior/sewer) +"rIb" = ( +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"rMN" = ( +/obj/effect/turf_decal/bordur{ + dir = 9 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"rSN" = ( +/obj/effect/turf_decal/bordur{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"rZM" = ( +/obj/structure/chair/sofa/left/maroon{ + dir = 8 + }, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"seO" = ( +/obj/machinery/sprinkler, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/techshop) +"sjB" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"soC" = ( +/obj/structure/chair/plastic/darkpack{ + dir = 1 + }, +/obj/effect/landmark/start/darkpack/citizen/janitor, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"spN" = ( +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/structure/table/glass, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"sqE" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/machinery/light/small/dim/directional/north, +/turf/open/floor/city/toilet, +/area/vtm/westfield_mall/interior/bathroom) +"stb" = ( +/obj/effect/landmark/start/darkpack/voivode/bogatyr, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"stw" = ( +/obj/effect/decal/rugs, +/obj/effect/decal/rugs, +/obj/structure/closet, +/obj/item/clothing/suit/vampire/jacket/fbi, +/obj/item/storage/belt/holster/detective/darkpack/fbi, +/obj/item/clothing/glasses/vampire/sun, +/obj/item/clothing/under/rank/civilian/lawyer/bluesuit, +/obj/item/clothing/under/rank/civilian/lawyer/bluesuit/skirt, +/obj/item/clothing/under/suit/waiter, +/obj/item/clothing/shoes/vampire/jackboots/work{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/item/clothing/head/beret, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"sQh" = ( +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"sWK" = ( +/obj/structure/sign/city/skateshop/two/directional/north, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/westfield_mall/skatepark) +"taO" = ( +/obj/machinery/button{ + id = "keepershutters" + }, +/obj/effect/decal/wallpaper/grey, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"tef" = ( +/obj/machinery/sprinkler, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/anarch) +"tey" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"tiu" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = -9; + pixel_y = 11 + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/fluff/paper/stack, +/obj/effect/decal/cleanable/litter, +/turf/open/floor/city/factory, +/area/vtm/westfield_mall/interior/theatre) +"tna" = ( +/obj/structure/noticeboard/directional/north, +/obj/item/gun/ballistic/automatic/darkpack/ak74{ + pixel_y = 29 + }, +/obj/structure/table/reinforced, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"toJ" = ( +/obj/structure/chair/sofa/right/maroon{ + dir = 4 + }, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"toY" = ( +/obj/transfer_point_vamp, +/obj/transfer_point_vamp{ + id = "garage3" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/parking_lot) +"tpN" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"tzb" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 4 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"tAm" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"tBz" = ( +/obj/structure/lattice/grate, +/obj/effect/decal/pallet, +/turf/open/water/vamp_sewer/border, +/area/vtm/interior/sewer) +"tFK" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/skatepark) +"tJK" = ( +/obj/effect/landmark/start/darkpack/pentex/employee, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"tJW" = ( +/obj/machinery/light/directional/south, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior) +"tMt" = ( +/obj/fake_platform/stone/double, +/turf/open/misc/dirt, +/area/vtm/westfield_mall) +"tPa" = ( +/obj/structure/chair/wood/darkpack/red{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/donut_corp/directional/north, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"tRn" = ( +/obj/structure/closet/crate/bin, +/obj/item/stack/dollar/five, +/obj/item/paper/crumpled, +/obj/item/paper/crumpled, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"tRQ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/watering_can/metal{ + pixel_y = 7; + pixel_x = 8 + }, +/obj/item/wrench{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping2" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"tSb" = ( +/obj/structure/table, +/obj/vampire_computer/box{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"tTU" = ( +/obj/structure/chair/darkpack/blue{ + dir = 1 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/skatepark) +"tUy" = ( +/obj/structure/vampdoor/woodglass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/lock_difficulty/eight, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"tUH" = ( +/obj/structure/chair/sofa/middle/maroon, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"uas" = ( +/obj/effect/spawner/random/structure/table_fancy, +/obj/effect/turf_decal/siding/wood/dark{ + dir = 1 + }, +/obj/item/toy/plush/shark, +/turf/open/floor/carpet/darkpack, +/area/vtm/westfield_mall/interior/games_store) +"udy" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_x = 5; + pixel_y = 15 + }, +/obj/item/reagent_containers/cup/soda_cans/beer{ + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"ued" = ( +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/law_office) +"ueY" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"uhk" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 17 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/cardboard, +/turf/open/floor/city/toilet, +/area/vtm/interior/sewer) +"ukE" = ( +/obj/effect/decal/wallpaper/red, +/obj/effect/decal/wallpaper/paper/darkred, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"urj" = ( +/obj/machinery/light/prince/directional/south, +/turf/open/floor/wood/smooth/old, +/area/vtm/interior/church) +"uuB" = ( +/turf/closed/wall/vampwall/rock, +/area/vtm/interior/caves) +"uwo" = ( +/obj/effect/turf_decal/bordur, +/obj/structure/vampdoor/wood/apartment, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"uwH" = ( +/obj/effect/decal/wallpaper/red, +/obj/effect/decal/wallpaper/paper/darkred, +/obj/effect/decal/wallpaper/light, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/law_office) +"uBf" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"uCH" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/old_clan_tzimisce, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"uGu" = ( +/obj/structure/table/countertop/beige, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/desk_bell{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/art_store) +"uGN" = ( +/obj/structure/easel, +/obj/item/canvas/twentyfour_twentyfour, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"uGY" = ( +/obj/structure/curtain/bounty{ + pixel_y = 16 + }, +/obj/structure/platform/lowwall/market/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/art_store) +"uHj" = ( +/obj/effect/landmark/start/darkpack/citizen/janitor, +/turf/open/floor/carpet/darkpack/old, +/area/vtm/westfield_mall/interior/janitor) +"uLP" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior) +"uMr" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/bordur{ + dir = 1 + }, +/turf/open/floor/plating/sidewalk/poor, +/area/vtm/interior/sewer) +"uPd" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/skatepark) +"uQN" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/skatepark) +"uTV" = ( +/obj/structure/sign/painting{ + pixel_y = 32; + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/law_office) +"uVj" = ( +/obj/effect/decal/wallpaper/paper/green, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/candy_store) +"uZK" = ( +/obj/transfer_point_vamp{ + id = "garage2" + }, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/underground_parking) +"veF" = ( +/obj/effect/decal/carpet{ + pixel_y = -5 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior) +"vix" = ( +/obj/effect/turf_decal/bordur{ + dir = 4 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"viX" = ( +/obj/item/food/candy_corn{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/food/candyheart{ + pixel_y = 15; + pixel_x = -4 + }, +/obj/item/food/candyheart{ + pixel_y = 15; + pixel_x = 4 + }, +/obj/item/food/lollipop{ + pixel_y = -6; + pixel_x = 25 + }, +/obj/item/food/lollipop{ + pixel_y = -6; + pixel_x = 17 + }, +/obj/item/food/lollipop{ + pixel_y = -6; + pixel_x = 9 + }, +/obj/item/food/lollipop{ + pixel_y = -6; + pixel_x = 17 + }, +/obj/item/food/lollipop{ + pixel_y = -6; + pixel_x = -2 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"vjV" = ( +/obj/structure/closet/crate/cardboard, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/maintenance/basement) +"vsC" = ( +/obj/machinery/light/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"vsO" = ( +/obj/structure/lattice/grate, +/turf/open/water/vamp_sewer, +/area/vtm/interior/sewer) +"vxJ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/flashlight/lamp{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = -16; + pixel_y = 9 + }, +/obj/effect/spawner/random/bureaucracy/folder{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"vzM" = ( +/obj/structure/table, +/obj/item/smartphone/emergency{ + pixel_y = 8; + pixel_x = -4 + }, +/obj/item/phone_book{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor/iron/dark, +/area/vtm/westfield_mall/interior/art_store) +"vAL" = ( +/turf/open/floor/plating/rough/cave, +/area/vtm/westfield_mall) +"vHC" = ( +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"vPZ" = ( +/obj/structure/table/wood, +/obj/vampire_computer{ + pixel_y = 4 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = -16; + pixel_y = 9 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"vSo" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"wbJ" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"wdK" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth, +/area/vtm/interior/shop) +"wfK" = ( +/obj/item/target, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior) +"whm" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 6 + }, +/obj/effect/decal/cleanable/rubble, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"whz" = ( +/obj/structure/chair/sofa/middle/maroon, +/obj/effect/decal/wallpaper/paper/darkred, +/obj/machinery/light/prince/directional/north, +/turf/open/floor/wood/herring, +/area/vtm/westfield_mall/interior/law_office) +"wlm" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/kirbyplants/darkpack/random{ + pixel_x = 11; + pixel_y = 17 + }, +/obj/item/ammo_casing/rebar/paperball{ + pixel_x = -19; + pixel_y = -13 + }, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"wnk" = ( +/obj/vehicle/ridden/golfcart/loaded{ + pixel_x = 17; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/asphalt, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"wqy" = ( +/obj/item/storage/fancy/cigarettes/cigpack_candy{ + pixel_x = -13; + pixel_y = 21 + }, +/obj/item/storage/fancy/cigarettes/cigpack_candy{ + pixel_x = -4; + pixel_y = 21 + }, +/obj/item/storage/fancy/cigarettes/cigpack_candy{ + pixel_x = 6; + pixel_y = 21 + }, +/obj/item/food/fudgedice{ + pixel_y = 7; + pixel_x = -16 + }, +/obj/item/food/fudgedice{ + pixel_y = 7; + pixel_x = -2 + }, +/obj/item/food/fudgedice{ + pixel_y = 7; + pixel_x = 13 + }, +/obj/item/food/chocolatebar{ + pixel_x = -14; + pixel_y = -7 + }, +/obj/item/food/chocolatebar{ + pixel_x = 14; + pixel_y = -7 + }, +/obj/item/food/chocolatebar{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/item/food/chocolatebar{ + pixel_y = -7 + }, +/obj/item/food/chocolatebar{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/food/chocolatebar{ + pixel_x = -22; + pixel_y = -7 + }, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/candy_store) +"wsj" = ( +/obj/machinery/light/warm/directional/south, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"wwh" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"wCv" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/bar, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior/anarch) +"wEs" = ( +/obj/structure/chair/sofa/corp, +/turf/open/floor/carpet/darkpack/blacksilver, +/area/vtm/westfield_mall/interior/skatepark) +"wFu" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/city/plating, +/area/vtm/interior/shop) +"wGE" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/ornate, +/area/vtm/westfield_mall/interior/camarilla) +"wHz" = ( +/obj/structure/table/wood, +/obj/item/shovel/vamp, +/obj/item/shovel/vamp{ + pixel_y = 9 + }, +/obj/structure/vampipe{ + pixel_y = 32; + icon_state = "piping25" + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"wJt" = ( +/obj/structure/vampdoor/glass{ + dir = 8 + }, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"wKQ" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/salubri, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/vet_clinic) +"wKZ" = ( +/obj/structure/sign/poster/city/redlady{ + pixel_x = -13 + }, +/obj/effect/decal/wallpaper/grey, +/turf/closed/wall/vampwall/painted, +/area/vtm/westfield_mall/interior/theatre) +"wMx" = ( +/obj/structure/curtain/cloth/fancy/mechanical/luxurious{ + pixel_y = 16 + }, +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/law_office) +"wNa" = ( +/obj/structure/vampdoor/old{ + dir = 8 + }, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/games_store) +"wWP" = ( +/obj/structure/table, +/obj/effect/decal/pallet, +/obj/machinery/radio_tranceiver/anarch{ + pixel_x = -4; + pixel_y = 13 + }, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/anarch) +"xjy" = ( +/obj/effect/landmark/start/darkpack/hospital/clinic_director, +/turf/open/floor/wood/smooth, +/area/vtm/interior/clinic) +"xmh" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"xpz" = ( +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) +"xrs" = ( +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/art_store) +"xrY" = ( +/obj/structure/vampdoor/glass{ + dir = 4 + }, +/obj/effect/mapping_helpers/door/access/npc, +/obj/effect/mapping_helpers/door/autoname, +/turf/open/floor/city/plating, +/area/vtm/westfield_mall/interior/smokeshop) +"xzM" = ( +/obj/machinery/sprinkler, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/camarilla) +"xBq" = ( +/obj/machinery/light/directional/east, +/obj/weapon_showcase, +/turf/open/floor/city/plating_mono, +/area/vtm/westfield_mall/interior) +"xBD" = ( +/obj/effect/turf_decal/bordur/corner, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"xEn" = ( +/obj/effect/turf_decal/bordur/corner{ + dir = 8 + }, +/turf/open/floor/plating/roofwalk, +/area/vtm/westfield_mall) +"xIe" = ( +/obj/structure/platform/lowwall/painted/window, +/turf/open/floor/plating/rough, +/area/vtm/westfield_mall/interior/arcade) +"xQL" = ( +/obj/effect/spawner/random/entertainment/deck{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/table/modern, +/turf/open/floor/carpet/green, +/area/vtm/westfield_mall/interior/law_office) +"xRE" = ( +/obj/structure/sign/painting{ + pixel_y = 32; + dir = 1 + }, +/turf/open/floor/iron/grimy, +/area/vtm/westfield_mall/interior/art_store) +"yfx" = ( +/obj/structure/table/countertop/beige, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/smooth, +/area/vtm/westfield_mall/interior/art_store) +"yfF" = ( +/obj/effect/spawner/random/entertainment/plushie{ + pixel_x = 3; + pixel_y = -12 + }, +/obj/effect/spawner/random/entertainment/plushie{ + pixel_x = 3; + pixel_y = -12 + }, +/turf/open/floor/wood/smooth/old, +/area/vtm/westfield_mall/interior/games_store) +"yiH" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/darkpack/purplegold, +/area/vtm/westfield_mall/interior/law_office) +"ykT" = ( +/obj/effect/turf_decal/bordur/inverse{ + dir = 4 + }, +/turf/open/floor/plating/concrete, +/area/vtm/westfield_mall/interior/groundskeeper_garage) + +(1,1,1) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} +(2,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aNv +aNv +aNv +aNv +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +adY +adY +adY +azz +aeW +aeW +aeW +aeW +aeW +azz +adY +adY +adY +adY +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(3,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aNv +cHl +tzb +asE +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aiN +aVx +apP +azz +aeW +aeW +aeW +aeW +aeW +azz +apf +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(4,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +aNv +oWC +rfA +cuV +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aiN +aco +asT +azz +aeW +aeW +aeW +aeW +aeW +azz +apf +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(5,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +asT +asT +asT +aNv +aQZ +axa +brv +aSs +ada +aNn +axa +aNv +anN +aAq +aHX +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aKk +aco +asT +azz +aeW +aeW +aeW +aeW +aeW +azz +aBj +aXP +asx +agy +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(6,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aco +aco +aNv +aBP +axa +axa +axa +axa +axa +axa +aAH +aGH +aGH +aUJ +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aiN +aco +asT +azz +aeW +aeW +aeW +aeW +aeW +azz +apf +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(7,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +aNv +axa +giN +aMg +aMg +aMg +aMg +aFN +aNv +aNv +aNv +aNv +aNv +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aYH +aco +asT +azz +azz +azz +azz +azz +azz +azz +aBb +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(8,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +aNv +axa +gPI +aGH +aEA +ajZ +asX +apY +aNv +apx +aNn +axa +axa +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aiN +aco +asT +azz +aco +aco +aco +aco +aco +azz +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(9,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +aNv +rSN +aNv +aGH +aGH +aGH +aGH +apY +aaR +axa +axa +axa +axa +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aKk +aco +asT +azO +asT +asT +asT +asT +asT +azO +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(10,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aFj +vsO +esn +axa +aNv +dwM +aNR +aog +aNA +ayf +aNv +alq +axa +aHK +aZS +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aiN +aco +asT +azz +azz +azz +azz +azz +azz +azz +asT +aco +aPP +adV +azz +azz +azz +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(11,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +rHM +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +adV +adV +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(12,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +aNv +jWP +uhk +aNv +alT +ayk +aoP +aNG +aaE +aep +aiI +aiI +anL +aNv +aTd +avG +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +azz +azz +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(13,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +aNv +kis +aGH +aNv +aiu +aGH +apY +axa +axa +aep +aiI +axa +axa +ahQ +aTc +aIH +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(14,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +aNv +aNv +gKJ +aNv +aqE +aGH +apY +axa +aUZ +aep +axD +axa +axa +ahQ +aCG +aXs +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aFc +"} +(15,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +eNH +aNv +qgO +tpN +aEt +amR +agr +axa +axa +aaR +axa +axa +axa +ahQ +aTc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aPP +adV +adV +adV +aDk +adV +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aFc +"} +(16,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aFj +vsO +eNH +dQG +axa +axa +axa +axa +aLX +aUg +aNn +aep +axa +aUT +aZS +aNv +aTd +adV +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +aWx +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(17,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +jnN +aNv +dJS +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +apf +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(18,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +eNH +aNv +aNv +aNv +aIr +alM +ail +apY +aST +aep +alq +aaT +aZS +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +apf +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(19,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +iWj +eNH +cHl +aNv +mjJ +amq +aSD +aSD +apY +axa +aaR +axa +axa +axa +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asV +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(20,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +tBz +vsO +eNH +axa +uwo +tpN +amR +amR +amR +agr +axa +aep +aBP +axa +aNv +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asV +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(21,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +eNH +ngU +aNv +axa +axa +aSi +ajr +aal +aZJ +aep +axa +axa +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +apf +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(22,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +kPZ +mlg +aNv +aNv +ant +aNv +ake +aSi +aQZ +aep +anL +aiI +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aJa +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(23,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +uMr +cER +aNv +jWP +aPS +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aBb +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +asT +aco +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(24,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +aNv +aNv +aNv +kis +aQC +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +asT +aco +aPP +adV +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +arn +ahc +aco +azz +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(25,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +aNv +aeW +aNv +aNv +aNv +aNv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +aco +aPP +adV +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +aco +azz +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(26,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +asT +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aRF +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aRF +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aNf +aDk +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +azz +azz +azz +azz +azz +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(27,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +aDk +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +aDk +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +aVv +aVv +aVv +aLD +aLD +aLD +aLD +aFc +"} +(28,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +aDk +adV +adV +adV +adV +adV +adV +adV +adV +awN +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +awN +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +aDk +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +aVv +aVv +aVv +aVv +aVv +aLD +aLD +aLD +aLD +aFc +"} +(29,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +aco +aDh +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +aco +asT +aco +aPP +adV +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +aXt +aXt +aXt +aXt +aXt +aXt +ass +ass +ass +ass +ass +ass +ass +ass +ass +ass +ass +ass +ass +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +aco +aPP +adV +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(30,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +afy +ajQ +aSh +aok +arC +aXt +aTj +aTj +aLV +akX +akX +abF +asB +abi +aki +aki +akX +aeK +aTj +aTj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +abj +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +azn +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(31,1,1) = {" +aFc +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +afy +aZH +agI +afG +aHU +aXt +aTj +aki +akX +akX +aki +aki +akX +akX +akX +aki +aki +akX +akX +aTj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(32,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +aGF +amx +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +aGF +aeW +aeW +aeW +aeW +aeW +aeW +afy +aNO +afN +afG +arC +aXt +aId +akX +akX +aLK +akX +aTj +auw +auw +auw +auw +aTj +aki +akX +aTj +aTj +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(33,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aYg +aGF +aGF +avf +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +avf +amx +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aXt +aXt +aXt +afy +aQk +aXt +aWi +aZs +aXt +aTj +aTj +aTj +ahi +amk +arN +auw +aTj +aLV +akX +akX +aTj +aeW +aeW +aeW +aeW +azz +azz +acb +aeA +axQ +azE +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(34,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +amx +aGF +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +avf +aeW +aeW +aeW +aeW +aeW +adR +aqu +aNd +aCi +aaz +asc +asc +asc +aXt +aTj +aTj +aTj +ajl +arw +aIi +auw +aTj +aTj +akX +akX +aTj +aeW +aeW +aeW +aeW +azz +aeA +axQ +axQ +axQ +azE +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(35,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +avf +aGF +aGF +aGF +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +afy +aJp +asR +aDr +asc +aaz +asc +acn +aXt +aTj +auw +auw +auw +ahi +aAt +auw +auw +auw +aki +akX +aTj +aeW +aeW +aeW +aeW +azz +axQ +axQ +aHr +axQ +alS +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(36,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +amx +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +afy +aOX +aaz +aaz +aaz +aaz +aaz +aDr +aXt +aTj +aoi +aDH +ahI +aaz +aaz +aKX +arC +auw +aHg +akX +aTj +aeW +aeW +aeW +aeW +azz +acb +axQ +axQ +axQ +alS +aco +aPP +adV +azz +aeW +azE +aeW +azz +azz +azz +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(37,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +azz +azz +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +amx +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +axw +amB +ayb +aeN +ayb +aaz +aaz +aNC +aXt +aTj +aoi +aEu +aPf +aaz +aIi +ahs +arC +awR +aki +akX +aTj +aeW +aeW +aeW +aeW +azz +aeA +axQ +axQ +axQ +azE +aco +aPP +adV +azz +aeW +azE +aGF +ajf +aGF +azz +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(38,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aBJ +aco +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +amx +amx +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aGF +aGF +aGF +afy +aDW +aBn +agE +aBn +asc +asc +aYz +aXt +aTj +aoi +adp +aHh +aIW +aIi +auw +auw +auw +aki +akX +aTj +aeW +aeW +aeW +aeW +azz +azz +aov +akh +axQ +azE +aco +aPP +adV +azz +aeW +azE +aGF +aGF +aGF +aPC +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(39,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aBJ +aco +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +azz +aeW +aeW +amx +aGF +aeW +aeW +aGF +amx +amx +aXt +aWi +aWi +aXt +aXt +aXt +aXt +aXt +aXt +aTj +auw +aTr +aUB +aaz +aaz +auw +awt +aWe +akX +akX +aTj +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +aco +aPP +adV +azz +aeW +aeW +aGF +azU +azz +azz +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(40,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +auJ +aco +abd +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +azz +aeW +aeW +amx +aGF +aeW +amx +aGF +aGF +amx +amx +amx +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aIf +aEZ +arF +aaz +aWQ +aYU +amC +aXU +akX +aTj +aTj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aPP +adV +azz +azz +azz +azF +aKW +azz +aGF +aDt +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(41,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +atQ +aco +aco +abd +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +azz +aeW +aeW +amx +aeW +aeW +amx +amx +aGF +aGF +aGF +avf +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +auc +aqK +arF +aaz +aFH +auw +aPW +aXv +akX +aTj +aeW +aqM +aGF +amx +aVF +amx +aGF +aeW +aeW +aeW +azz +aco +aPP +adV +aBR +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(42,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aco +aco +abd +aPP +adV +adV +azz +aPP +adV +adV +azz +aPP +adV +adV +azz +aPP +adV +adV +azz +aPP +adV +adV +azz +aPP +adV +adV +azz +aeW +aeW +amx +aGF +aeW +aeW +amx +amx +amx +amx +aGF +aGF +aeW +aGF +aGF +aGF +aeW +aeW +aeW +auw +auw +auw +auw +auw +auw +auo +akX +aLV +aTj +aqM +aGF +aGF +aGF +amx +aGF +amx +aGF +aeW +aeW +azz +aco +aPP +adV +azz +aVl +aGF +aGF +aGF +aGF +aGF +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(43,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aco +aco +abd +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +azz +aeW +aeW +aGF +aGF +aeW +aeW +amx +amx +amx +amx +amx +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aTj +aki +akX +aTj +aTj +aGF +amx +amx +amx +aGF +aGF +aGF +amx +amx +aeW +azz +aco +aPP +adV +azz +azz +azz +avT +azF +azz +aGF +aGF +aVv +auK +aVv +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(44,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aco +aco +abd +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +azz +aeW +aeW +aeW +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aTj +aki +akX +aTj +aqo +aqo +aEU +aqo +aqo +aeW +amx +amx +amx +amx +aeW +azz +aco +aPP +adV +azz +abd +aGF +aGF +azU +azz +azz +aGF +aVv +auK +aVv +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(45,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +asT +aco +aPP +adV +azz +aco +aco +abd +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +azz +aeW +aeW +aeW +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +amx +amx +aGF +aeW +aeW +aeW +aqo +aTj +akX +akX +aTj +aqo +aGO +aco +aTF +aqo +aeW +aeW +amx +aGF +amx +aeW +azz +aco +aPP +adV +azz +abd +aGF +aGF +aGF +aGF +azz +aGF +aVv +auK +aVv +aGF +ajV +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(46,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +azz +aco +aco +abd +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +azz +aeW +aeW +aeW +amx +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +amx +aGF +avf +aeW +aeW +aqo +aTj +akX +akX +akX +aqo +aEo +aco +aco +aqo +aeW +aeW +aGF +amx +amx +abq +aco +aco +aPP +adV +azz +aeW +azE +acZ +aGF +aGF +azz +aGF +aVv +auK +aVv +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(47,1,1) = {" +aFc +aeW +aOe +aMu +aMu +aMu +aOe +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aco +abd +aPP +adV +adV +azz +aPP +adV +adV +azz +aPP +adV +adV +azz +aPP +adV +adV +azz +aPP +adV +adV +azz +aPP +adV +adV +azz +aeW +aeW +aeW +aGF +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aGF +aNa +akX +aki +aki +akX +aIA +aFb +aco +aco +aqo +aeW +aeW +aeW +aGF +amx +abq +aco +aco +aPP +adV +azz +aeW +aeW +azE +azE +aGF +aPC +aGF +aVv +auK +aVv +aGF +arL +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(48,1,1) = {" +aFc +aOe +aOe +aMu +aMu +aMu +aOe +aOe +aOe +aOe +aOe +aOe +aOe +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aco +abd +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +azz +aeW +aeW +aeW +aGF +amx +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aqo +aTj +aTj +aki +akX +aqo +aQz +aco +apy +aqo +aeW +aeW +aeW +aeW +amx +abq +aco +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aGF +abd +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(49,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +agx +ars +aNJ +ars +aNJ +aOe +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aco +abd +aPP +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +adV +azz +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aqo +aeW +aeW +aeW +aeW +aqo +ahK +aWk +aTF +aqo +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aGF +arL +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(50,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +ars +ars +ars +ars +ars +aOe +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aRm +azz +azz +aOW +azz +azz +azz +azz +azz +azz +azz +azz +azz +akL +akL +akL +akL +akL +akL +azz +azz +azz +aOW +azz +azz +azz +azz +aeW +aeW +aeW +aeW +aGF +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aqo +aqo +aqo +aqo +aqo +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aGF +aOZ +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(51,1,1) = {" +aFc +aOe +aeP +aZf +aaV +aZf +ars +ars +ars +aNJ +ars +aNJ +aOe +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aco +aco +aco +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ajc +asz +aht +aht +aht +ajc +aSI +aMG +aqz +akG +aqz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aVv +auK +aVv +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(52,1,1) = {" +aFc +aOe +aeP +aZf +aaV +aZf +aWn +aOe +aOe +aOe +aCE +aOe +aOe +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +azz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ajc +asz +aht +aht +aht +ajc +aor +abg +aqz +aMG +aqz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aAF +aAF +aAF +aAF +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aPP +adV +azz +aeW +aeW +aeW +aeW +aeW +anx +aGF +aVv +auK +aVv +aGF +aGn +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(53,1,1) = {" +aFc +aOe +aeP +aZf +aaV +aZf +aeP +aOe +aeW +aVT +ars +aVT +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ajc +asz +aht +aht +aht +ajc +aiO +aIS +aqz +aMG +aqz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aAF +azl +ajy +aWc +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +azz +aco +aPP +adV +azz +azz +aeW +aeW +aeW +aeW +aGF +aGF +aVv +auK +aVv +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(54,1,1) = {" +aFc +aOe +aMT +aZf +aaV +aZf +aeP +aOe +aeW +aVT +ars +aVT +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ajc +adn +aht +aht +aht +ajc +aMG +abg +aIS +aMG +aqz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aAF +aaQ +aaQ +aaQ +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aGw +aco +aFj +aco +aco +azz +aeW +aeW +aeW +aeW +aGF +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(55,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aSX +aOe +aeW +aVT +ars +aVT +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ajc +aNW +aht +aht +aht +amW +aMG +aIS +abg +aMG +aqz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aAF +aAF +aaQ +aaQ +azl +aAF +aAF +aAF +aAF +aAF +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +apy +aPP +adV +adV +aco +azz +aeW +aeW +aeW +aeW +aGF +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(56,1,1) = {" +aFc +aOe +aXf +aZf +aaV +aZf +aSX +aOe +aeW +aVT +ars +aVT +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ajc +asz +aht +aht +aht +ajc +aMG +aMG +ayn +amh +aqz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +amx +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aAF +ayi +aaQ +aaQ +aaQ +aaQ +aaQ +aSA +aaQ +aaQ +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aPP +adV +adV +apy +azz +aeW +aeW +aeW +aeW +aGF +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(57,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aiq +aOe +aeW +aVT +ars +aVT +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ajc +asz +aht +aht +aqm +ajc +aqz +aqz +aqz +aqz +aqz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aAF +aks +azl +aaQ +aaQ +aaQ +aaQ +aSA +aaQ +aaQ +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aPP +adV +adV +apy +azz +aeW +aeW +aeW +aeW +aGF +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(58,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aMF +aOe +aeW +aVT +ars +aVT +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ajc +aJF +aht +aht +aKQ +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aAF +aqU +aaQ +aaQ +aaQ +aaQ +aOn +aAF +aaQ +aaQ +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +apy +aPP +adV +adV +apy +azz +aeW +aeW +aeW +aeW +aeW +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(59,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +aOe +aeW +auY +aCE +auY +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aii +aii +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aMr +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aAF +aAF +aaQ +aaQ +azl +aaQ +aOQ +aAF +anp +aaQ +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +aco +aco +ano +aco +aco +azz +aeW +aeW +aeW +aeW +aeW +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(60,1,1) = {" +aFc +aOe +aiq +aZf +aaV +aZf +ars +aOe +aeW +ajc +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aEG +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aAF +aDI +aaQ +aaQ +aaQ +aDm +aAF +aaQ +aaQ +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azz +azz +azz +azz +azz +azz +azz +aeW +aeW +aeW +aeW +aeW +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(61,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +aOe +aeW +ajc +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +adq +aQG +aQG +aQG +aQG +aQG +aQG +aQG +aNi +aht +aht +aht +adq +aQG +aQG +aQG +aQG +aQG +aQG +aQG +aNi +aht +aAF +azl +aDi +aaQ +aaQ +aCj +aAF +awP +awP +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(62,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +aOe +aeW +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +ajc +aht +amj +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +ahu +aic +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +asz +aht +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aQD +auK +aQD +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(63,1,1) = {" +aFc +aOe +aiq +aZf +aaV +aZf +ars +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aYl +aYl +aYl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aiX +aht +aht +aKQ +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +asz +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(64,1,1) = {" +aFc +aOe +aWn +aZf +aaV +aZf +ars +aOe +aeW +aeW +aeW +aFq +aFq +aFq +aFq +aFq +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aTl +aTl +aTl +aTl +aTl +aTl +aTl +aht +aht +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aEC +aQG +aQG +aQG +aQG +aQG +aQG +aQG +aQG +aNi +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aLD +aFc +"} +(65,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aeP +aOe +aeW +aeW +aeW +aFq +axR +ars +ars +aJZ +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aTl +amH +amH +aWs +ayG +aQU +aTl +anM +aht +amj +amj +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +avt +ajc +asz +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(66,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aeP +aOe +aeW +aeW +aeW +aFq +ars +ars +ars +aJZ +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aTl +aTl +aTl +aKZ +aKZ +aKZ +aKZ +aKZ +aTl +aWF +aTl +aTl +ajc +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aLD +aFc +"} +(67,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aiq +aOe +aeW +aeW +aeW +aFq +aLq +ars +ars +aJZ +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aTl +asj +aKZ +aKZ +aKZ +aKZ +aKZ +aKZ +aKZ +aKZ +aZx +aTl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(68,1,1) = {" +aFc +aOe +aeP +aZf +aaV +aZf +ars +aOe +aeW +aeW +aeW +aFq +ars +ars +ars +aDl +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aTl +aqd +aHf +aHf +aQA +aKZ +seO +aKZ +aKZ +aKZ +apA +aTl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(69,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aWy +aOe +aFq +aFq +aFq +aFq +ahw +ars +aFq +aFq +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aTl +atG +aHf +aHf +aoW +aKZ +aVR +aTA +aKZ +aKZ +aLh +aTl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aiX +aht +ajc +ayV +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aLD +aFc +"} +(70,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +ars +ars +ars +ars +ars +ars +ars +aJZ +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aTl +ace +aHf +aHf +aqq +aKZ +akf +aFL +aKZ +aKZ +awk +aTl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aJF +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +adY +adY +adY +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aLD +aFc +"} +(71,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +ars +ars +ars +ars +ars +ars +ars +aBG +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aKQ +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aTl +aTl +aTl +aTl +aTl +aTl +aTl +aTl +aTl +aTl +aTl +aTl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +amj +amj +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(72,1,1) = {" +aFc +aOe +aIU +asY +aaV +asY +aWy +aOe +aFq +aFq +aFq +aFq +aJZ +alA +ahP +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +ajc +ajc +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(73,1,1) = {" +aFc +aOe +ars +aZf +aUP +aZf +ars +aOe +aeW +aeW +aeW +aFq +aFq +aFq +aFq +aFq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(74,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +aOe +aOe +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(75,1,1) = {" +aFc +aOe +ars +aZf +aaV +aIg +ars +apX +aOe +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aNS +aht +aJU +aht +ahr +aht +alx +aVC +aNw +aNw +agp +agS +agj +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(76,1,1) = {" +aFc +aOe +ars +aZf +aaV +aIg +ars +apX +aOe +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(77,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +aOe +aOe +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aaf +aht +aYJ +aht +aYJ +aht +aYJ +avL +avL +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(78,1,1) = {" +aFc +aOe +ars +aXD +aaV +aZf +aiq +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aYX +aWq +aht +aht +aHR +aht +aYJ +agS +agj +agS +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(79,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aqn +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aVB +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(80,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aqn +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aiX +aht +ajc +afi +ayL +aql +aht +aYJ +aht +aYJ +ajc +avH +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(81,1,1) = {" +aFc +aOe +aiq +aZf +aaV +aZf +aeP +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +aVE +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(82,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aeP +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +atI +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(83,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aeP +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(84,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(85,1,1) = {" +aFc +aOe +aeP +aZf +aaV +aZf +ars +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +aht +aht +aiC +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aiC +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(86,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(87,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aiq +aOe +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(88,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +aOe +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aZl +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(89,1,1) = {" +aFc +aOe +aqn +aZf +aaV +aZf +aiQ +aOe +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aLs +aLs +aLs +aLs +aLs +aLs +aCy +ayq +ayq +ayq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(90,1,1) = {" +aFc +aOe +aqn +aZf +aaV +aZf +aeP +aOe +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aLs +stb +akW +akW +akW +nFJ +adx +aIz +aIz +ayq +ayq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(91,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +ars +aOe +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aLs +aLs +aLs +aLs +aTY +aJC +akW +ask +aQS +ahl +aIz +aIz +aIz +ayq +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(92,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aiQ +aOe +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +aUG +aUG +aUG +aUG +aUG +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aLs +aMt +aQH +atq +akW +akW +nEn +aPd +aQS +apv +ayq +ayq +aIz +aIz +aeH +aeH +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +avt +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(93,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aiQ +aOe +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +ath +aRA +aSb +aHF +aUG +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aLs +aLs +aLs +aLs +aTY +akW +akW +akW +aWj +arR +aIz +aIz +aIz +aIz +aeH +aeH +ajc +aGD +aht +aXM +aht +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(94,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aiQ +aOe +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +aaF +amM +amM +aHF +aUG +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aLs +aUi +aPU +auU +aHV +nFJ +agk +aIz +aIz +ayq +ayq +aeH +aeH +ajc +avI +aht +aht +aht +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(95,1,1) = {" +aFc +aOe +ars +aZf +aaV +aZf +aiQ +aOe +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +atx +aft +aft +atx +aUG +aUG +aUG +aUG +aUG +aUG +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aLs +aLs +aLs +aLs +aLs +aLs +aTU +atY +ayq +ayq +aeH +aeH +aeH +ajc +aJq +atD +aht +aMA +agj +ahj +aht +ayx +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(96,1,1) = {" +aFc +aOe +aOe +aMu +aMu +aMu +aOe +aOe +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +aHF +aft +aft +atx +acy +aIs +aGT +atx +atx +aUG +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +adu +aIz +aeH +aeH +aeH +aeH +ajc +aLH +ayX +aht +aeC +agj +aVz +aht +aVz +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(97,1,1) = {" +aFc +aeW +aOe +aMu +aMu +aMu +aOe +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +atx +aft +aft +aHF +atx +aHF +alU +atx +ame +aUG +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aJF +aht +aht +aht +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +asO +aeW +asO +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(98,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +atx +aft +aft +aft +aft +aft +aft +aft +agm +aUG +aUG +aUG +aUG +aUG +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aYJ +agj +atD +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(99,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +atx +aft +aft +aft +aft +aft +aft +aft +aeo +aUG +axg +axg +axg +axg +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aYJ +acH +aqm +aht +aLy +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(100,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +aME +aft +aft +aHF +mGq +aIB +aft +aft +aAa +aUG +axg +aHu +axg +ato +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +ajm +aht +aht +aht +aht +ajc +avt +ajc +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(101,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +aam +aft +aft +ara +aUG +aec +aft +aft +avE +aUG +aaO +aWZ +aWZ +axg +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aVz +aht +aYJ +asS +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +adY +adY +adY +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(102,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aUG +axB +aft +aft +ara +aUG +aec +aft +aft +atL +aUG +aTL +aSy +axg +axg +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(103,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +ajc +ajc +ajc +aeH +aUG +aUG +aUG +aUG +aUG +aUG +azR +aft +aft +adD +aUG +axg +axg +axg +axg +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(104,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +aEG +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aUG +aec +aft +aft +aft +amN +aft +aft +aft +atx +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(105,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +adq +aNi +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aUG +aHH +awZ +atx +atx +aUG +ahV +aft +aft +akI +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(106,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aUG +aUG +aUG +aUG +aUG +aUG +acw +aft +aft +aij +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(107,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aUG +wWP +aft +aft +aCM +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +amW +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aGF +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(108,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aZG +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aUG +aoX +aft +aft +aKb +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aVv +auK +aVv +aGF +aGF +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(109,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aZl +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aUG +aUG +aUG +aUG +aUG +aUG +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aGF +aGF +aGF +aGF +aGF +aVv +auK +aVv +aGF +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(110,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aGF +aGF +aVv +auK +aVv +aGF +aGF +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(111,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aiX +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aGF +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(112,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azE +azE +aeW +aVv +auK +aVv +aGF +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(113,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aev +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aKY +aVv +ayo +aVv +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(114,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aht +aht +aht +aht +aht +aht +aht +agp +aht +aht +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azE +aVv +aVv +aVv +aVv +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(115,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +asz +aht +ajc +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azE +aVv +aVv +aaS +azE +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(116,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +amj +amj +ajc +asz +aht +ave +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +ajc +aii +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +adr +aVv +aVv +azE +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(117,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +ajc +ajc +ajc +auT +aht +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +aop +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +aVk +aZK +aVk +aVk +apj +aVk +aJB +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +acO +aQE +aVv +aVv +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(118,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aEs +aht +aXM +aht +aht +aht +ave +aht +aht +aht +aht +aht +aht +aht +ave +aVk +auI +alK +aXN +alK +apb +alK +aVk +alK +aVk +aVk +aVk +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +aVk +aZK +aVk +aVk +aVk +aVk +aMH +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aaX +atV +aVv +aVv +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(119,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +amD +aht +aht +aht +aht +aht +ajc +aht +aht +aht +aht +aht +aht +aht +ajc +agF +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aFk +apj +agF +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +aFk +apj +agF +aVk +aVk +aVk +aMH +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +azE +azE +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(120,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +amD +aht +agS +atD +aMe +aMA +ajc +aht +aht +ajc +ajc +ajc +ajc +ajc +ajc +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +apj +aNH +aNH +apj +apj +apj +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(121,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +amD +aht +aqx +vjV +aFr +aht +ajc +ajc +ajc +ajc +agv +agv +agv +agv +ofr +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aMP +qOC +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(122,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +amD +aht +aht +aht +aht +aht +ajc +aeH +aeH +ajc +agv +agv +agv +agv +ofr +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +uZK +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(123,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +amD +aht +aqJ +aht +agS +agj +ajc +aeH +aeH +ajc +agv +agv +agv +agv +ofr +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +qUY +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(124,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +amD +aht +aeC +agj +acH +aLZ +ajc +aeH +aeH +ajc +aHG +agv +agv +amK +apj +agF +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aFk +apj +agF +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +aVk +aVk +aVk +aVk +atc +jFz +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(125,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +amD +aht +aht +aht +aht +aht +ajc +aeH +aeH +ajc +agv +agv +agv +agW +apj +aVk +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +alK +aVk +alK +akT +alK +aVk +aVk +aVk +aVk +apj +ahN +ahN +apj +apj +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(126,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aCP +aht +ajc +ajc +ajc +ajc +ajc +aeH +aeH +ajc +agv +agv +agv +agW +apj +aVk +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +aVk +ahN +ayv +aDZ +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(127,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aUs +agv +agv +agW +apj +apj +apj +aGP +aGP +aGP +aGP +aGP +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +aVk +aVk +aVk +aVk +ahN +aju +aWI +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(128,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +agv +agv +agv +agW +aht +aht +apZ +aGP +acR +acC +ans +aGP +agv +agv +apj +aVk +aVk +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +aVk +apj +aju +agP +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(129,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +wfK +nRM +wfK +nRM +wfK +nRM +wfK +aYl +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +agv +agv +agv +agW +aht +aht +apZ +aGP +ans +ans +ans +aGP +aBS +agv +apj +aVk +aVk +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +aFk +apj +acV +ahN +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(130,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +eel +nRM +eel +nRM +eel +nRM +eel +aYl +aeH +aeH +aeH +ajc +aht +aZl +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +agv +agv +agv +agW +ajc +aSk +aKN +aGP +ala +ala +ala +aGP +agv +agv +apj +agF +aVk +alK +aVk +alK +aVk +alK +aVk +aVk +aVk +aVk +aVk +aVk +aVk +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(131,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +aAw +nRM +aAw +nRM +aAw +nRM +aAw +aYl +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +aHG +agv +agv +acL +aon +aon +aon +aon +aht +aht +aht +aEY +agv +aeO +apj +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(132,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aYl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +aAw +nRM +aAw +nRM +aAw +nRM +aAw +aYl +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +agv +agv +agv +agv +agv +agv +agv +agv +axG +axG +axG +agv +agv +agv +apj +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(133,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aYl +aYl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +aAw +nRM +aAw +nRM +aAw +nRM +aAw +aYl +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +apj +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(134,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +gfm +aYl +gfm +aYl +gfm +aYl +gfm +aYl +aeH +aeH +aeH +ajc +aht +aht +ajc +aeH +aeH +aeH +aeH +aeH +aeH +ajc +agv +agc +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +aKF +aKF +apj +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +aVk +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(135,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +fxg +aYl +fxg +aYl +fxg +aYl +fxg +aYl +aYl +aYl +aYl +ajc +aht +aht +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +apj +agF +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aFk +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(136,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +qNS +aAw +gfJ +ajc +aht +aht +aht +aht +aht +aht +aht +aSS +aht +aht +aht +aht +aht +aht +aht +aSS +aht +aht +aht +aht +aht +aht +aht +aht +aPR +aVk +aVk +alK +aVk +alK +akT +alK +aVk +alK +aVk +alK +akT +alK +aVk +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(137,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aYl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +aAw +aAw +aAw +aAw +aAw +aAw +aAw +aAw +qNS +kzc +gfJ +ajc +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +apj +aVk +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aVk +alK +aVk +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(138,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aYl +aYl +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aeH +aYl +itd +nbK +itd +nbK +itd +nbK +itd +aAw +aYl +aYl +aYl +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(139,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aqz +aqz +aqz +aqz +aqz +aqz +aqz +aqz +aqz +aqz +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(140,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(141,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(142,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(143,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(144,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(145,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(146,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(147,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aVv +auK +aVv +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(148,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +adY +adY +adY +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(149,1,1) = {" +aFc +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +adY +adY +adY +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aFc +"} +(150,1,1) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} + +(1,1,2) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} +(2,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ayw +ayw +ayw +ayw +aDG +aDG +aDG +aDG +aDG +aDG +aDG +ayw +aDG +aDG +aDG +aDG +aDG +aDG +aDG +ayw +ayw +ayw +ayw +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(3,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSw +aDq +aXZ +aXZ +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(4,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +avJ +aQw +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aQw +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(5,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +adg +adg +adg +adg +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aca +ags +aSZ +anl +anl +aNg +aXo +aeS +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +anl +anl +anl +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(6,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +iyu +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +aSw +avZ +aPI +aPI +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aPI +aPI +aPI +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(7,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +ooV +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +ags +avJ +aHe +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(8,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aeS +aMO +aeS +aXo +aXo +alB +aXo +aXo +aDd +afj +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(9,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +olG +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSw +avJ +afj +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(10,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +ciB +uuB +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +avJ +aYG +afj +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(11,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +adg +adg +adg +adg +adg +aLD +adg +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +avJ +aYG +aHe +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(12,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +adg +aLD +adg +aLD +aLD +aLD +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSw +asW +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(13,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aHe +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(14,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aat +aat +aat +aat +aat +aat +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aeS +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ahY +aFc +"} +(15,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aat +aat +aat +aat +aat +adg +adg +adg +aat +aat +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSw +aLN +aYG +afj +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ahY +aFc +"} +(16,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aat +aat +aat +aat +aat +aat +adg +adg +aat +adg +adg +adg +aat +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aHe +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(17,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +adg +adg +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSw +avJ +afj +aYG +aNg +aeS +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(18,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +adg +aat +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(19,1,2) = {" +aFc +uuB +uuB +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aat +aat +aat +aat +aat +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +aat +adg +adg +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aca +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aeS +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +afj +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(20,1,2) = {" +aFc +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aLD +aLD +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +aLD +aLD +aLD +aat +aat +aat +aat +aat +aat +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +aat +adg +aat +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(21,1,2) = {" +aFc +uuB +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +adg +adg +aat +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +aSw +avJ +aHe +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(22,1,2) = {" +aFc +uuB +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +adg +adg +adg +adg +aat +aat +aat +aat +aat +aat +adg +adg +adg +adg +adg +aat +aat +aat +aat +adg +adg +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aHe +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(23,1,2) = {" +aFc +uuB +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +aat +aat +aat +aat +aat +adg +adg +adg +adg +aat +aat +aat +aat +adg +aat +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +asW +aYG +aYG +aNg +aXo +aXo +alB +aXo +aeS +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(24,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +aat +aat +adg +adg +adg +adg +adg +adg +aat +aat +aat +adg +adg +adg +aat +aat +aat +adg +adg +aat +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ags +avJ +aYG +aHe +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aVg +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(25,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +adg +adg +aat +aat +aat +aat +aat +aat +aat +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aLD +aLD +aLD +aLD +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(26,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +adg +adg +aat +aat +aat +aat +aat +aat +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aLD +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(27,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aLD +aSw +avJ +aYG +aEn +aGV +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aHp +aEn +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(28,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +adg +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aLD +aSw +avJ +aYG +aEn +aRs +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aeS +arK +aEn +aYG +aHe +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(29,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +adg +adg +adg +adg +aat +aat +aat +aat +aat +aat +aat +aat +aat +adg +aat +aat +aat +aat +aat +arG +aat +aat +aat +adg +adg +adg +adg +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(30,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +adg +aat +aat +aat +aat +arG +aat +aat +aat +aat +aat +aat +aat +arG +aat +adg +adg +adg +ags +avJ +aYG +afj +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +afj +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(31,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +adg +adg +aat +aat +aat +aat +adg +adg +adg +adg +adg +adg +adg +aat +aat +aat +aat +adg +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(32,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aqX +aqX +aqX +aqX +aqX +aqX +aHq +aat +aat +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aat +aHo +arG +aHM +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(33,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aqX +ahL +ahL +ahL +ahL +aoR +arp +arG +aat +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +azT +aHo +ajx +aup +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(34,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aqX +ahL +agM +ahL +ahL +aoR +azT +aXH +adg +adg +adg +aSw +aSw +ags +aSw +ags +ags +aSw +ags +ags +aSw +azT +aGW +aat +avJ +aYG +aHe +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aeS +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(35,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +aqX +aqX +aqX +aqX +ahL +ahL +ahL +agM +aqX +aqX +aqX +aqX +aqX +aqX +aqX +anz +anz +anz +anz +anz +anz +anz +anz +anz +alm +azT +aHo +avJ +afj +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aHe +afj +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(36,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +aqX +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +axq +ahL +ahL +agM +ahL +ahL +ahL +ahL +ahL +ahL +aoR +ags +azT +aLN +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(37,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +aqX +ahL +ahL +amy +amy +amy +amy +amy +amy +amy +amy +amy +amy +amy +amy +aIR +aSQ +anE +axy +anE +axy +anE +ayu +ahL +aoR +aSw +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(38,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aqX +agM +ahL +aLw +adz +aAZ +aJw +aJw +aUc +aow +uQN +aow +aow +fqc +amy +sWK +aes +aWT +aMM +aWT +ajN +aWT +abc +ahL +aPt +ags +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(39,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aqX +ahL +ahL +aLw +qhs +awO +tTU +aJw +aFD +aow +aow +aow +aow +aow +amy +okz +akm +aWT +ajN +aWT +ajN +aWT +abc +ahL +aoR +ags +aSw +avJ +aYG +aHe +aNg +aeS +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aHe +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(40,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aqX +ahL +adU +aLw +aJw +awO +aJw +aJw +aYE +aow +aow +aHY +aow +aow +amy +gwV +akm +ajN +ajN +ajN +ajN +ajN +abc +ahL +aoR +aSw +ags +avZ +aPI +aod +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(41,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqX +ahL +ahL +aLw +aJw +aJw +aJw +aJw +acI +aow +kcy +arP +aow +aow +rvI +ahL +akm +ajN +ajN +ado +aWv +ajN +abc +ahL +agn +anz +anz +aqe +anl +anl +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aPI +aPI +aPI +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(42,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqX +ahL +agM +amy +amy +amy +amy +amy +aLw +aRe +aHY +aHY +aow +aow +amy +avS +anU +aBr +aBr +ajN +ajN +ajN +abc +ahL +ahL +ahL +ahL +aPI +aPI +aPI +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +anl +anl +anl +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(43,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqX +ahL +ahL +aLw +aOD +aow +aow +aow +aow +aow +aow +aow +aow +aow +aek +ahL +akm +aWr +ajN +ajN +ajN +ajN +aoU +axy +axy +axy +axy +aOI +aps +aLz +aGV +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aod +aPI +ali +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(44,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqX +ahL +adU +aLw +amA +aow +aow +aow +aow +aow +aow +aow +aow +aow +aek +ahL +anU +aBr +aBr +aWv +ajN +ado +atH +avp +aOp +aOp +aOp +ayD +aWS +ayD +aRs +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(45,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqX +ahL +ahL +amy +amy +aUw +aow +aow +aow +bXd +pPg +pPg +fjk +amy +amy +ahL +aqw +aOp +aOp +aOp +aOp +aOp +aka +ahL +ahL +ahL +ahL +aPI +aPI +aPI +aNg +aXo +aXo +alB +aXo +aeS +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(46,1,2) = {" +aFc +aLD +aLD +aLD +aLD +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqX +ahL +amy +aLw +asF +aLw +abr +aow +aow +wEs +pPg +pPg +fjk +amy +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +aEc +aFV +aqB +aqB +aBF +aEp +anl +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aCh +aYG +aYG +afj +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(47,1,2) = {" +aFc +aLD +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqX +ahL +aLw +ayO +auz +aVp +aow +aow +aow +hkP +nML +tFK +uPd +amy +mFc +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +aoR +ags +aSw +ags +avZ +aPI +aPI +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(48,1,2) = {" +aFc +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqX +ahL +amy +amy +amy +amy +amy +amy +amy +amy +amy +amy +amy +amy +ahL +ahL +agM +ahL +ahL +ahL +agM +ahL +ahL +aoR +aSw +adg +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(49,1,2) = {" +aFc +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aqX +ahL +cbl +ahL +ahL +bOf +bOf +bOf +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +agM +ahL +ahL +ahL +ahL +aoR +ags +adg +aSw +avJ +aHe +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(50,1,2) = {" +aFc +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aqX +ahL +ahL +ahL +agM +ahL +ahL +ahL +agM +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +aoR +aSw +adg +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(51,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aqX +ahL +ahL +ahL +ahL +agM +ahL +ahL +ahL +acK +aJj +aJj +aJj +anu +ayS +ahL +ahL +ahL +ahL +agM +ahL +ahL +agM +aoR +ags +adg +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(52,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aqX +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +agM +ahL +agM +ahL +ahL +ahL +ahL +ahL +aoR +aSw +adg +ags +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aHe +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(53,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +ahL +ahL +ahL +ahL +ahL +agM +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +aoR +aSw +adg +ags +avJ +aYG +aYG +aNg +aeS +aXo +alB +aXo +aeS +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(54,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +ahL +ahL +agM +aEc +aqB +aqB +aqB +aWJ +agM +ahL +ahL +ahL +ahL +ahL +ahL +ahL +agM +ahL +ahL +aNX +ahL +ahL +aoR +aSw +adg +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aeS +aDd +afj +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(55,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +ahL +ahL +aEc +aYF +alQ +ajN +ajN +aUQ +aWJ +ahL +ahL +ahL +agM +ahL +apt +adB +aYc +aYc +avn +apt +ahL +ahL +aoR +ags +adg +aSw +aLN +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(56,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +ahL +ahL +aoR +alQ +ajN +ajN +ajN +ado +aWA +ahL +ahL +ahL +ahL +ahL +apt +adB +aYc +aYc +avn +apt +ahL +ahL +aoR +ags +adg +ags +avJ +aYG +aHe +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aHe +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(57,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +ahL +ahL +aoR +alQ +ado +awS +ajN +ajN +aWA +ahL +agM +ahL +ahL +ahL +apt +adB +aYc +aYc +avn +apt +ahL +ahL +aoR +aSw +adg +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aeS +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(58,1,2) = {" +aFc +adg +adg +adg +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +ahL +agM +aoR +alQ +ajN +ajN +ajN +ajN +aWA +ahL +ahL +ahL +ahL +ahL +apt +adB +aYc +aYc +avn +apt +ahL +agM +aoR +aSw +adg +aSw +avJ +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(59,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +auY +aZj +aZj +aZj +aZj +aZj +aZj +aZj +aZj +aZj +aRw +aBp +aBp +aBp +aBp +aBp +aBp +aBp +aBp +aBp +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +ahL +ahL +agn +alm +alQ +ado +ajN +aVA +axi +ahL +ahL +ahL +agM +ahL +apt +adB +aYc +aYc +avn +apt +ahL +ahL +aoR +ags +adg +aSw +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(60,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +auY +atC +atC +atC +atC +atC +aFq +aKI +aQu +azu +aLO +ars +ars +ars +ars +ars +ars +aQu +ars +ars +ars +ars +ars +ars +ars +auY +atZ +aFX +ahz +aWo +aoe +ahz +aTG +aiF +aZj +auQ +anR +ayH +agu +alO +alO +alO +aQi +aej +aBp +aeU +aMD +aEy +aWz +asr +aiT +aEW +agG +ady +and +azL +alI +aFI +aFI +aFI +aFI +alI +aJs +asa +aqb +asa +asa +asa +aOG +asa +asa +ayN +aKK +aKK +aAF +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +agM +ahL +ahL +agn +anz +anz +anz +axi +ahL +agM +ahL +ahL +ahL +ahL +apt +adB +aYc +aYc +avn +apt +ahL +ahL +aPt +aSw +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aeS +aXo +aDd +aYG +aYG +afj +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(61,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +auY +atC +aAQ +aAQ +atC +atC +aFq +aFt +ars +ars +aLO +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +auY +afD +aCr +aXd +abD +abD +aeE +abD +abD +aZj +auQ +anR +axV +alO +alO +alO +alO +alO +aXQ +aBp +aPi +aEJ +aEJ +aEJ +aEJ +aEJ +aEJ +afR +and +and +azL +asa +asa +asa +asa +asa +asa +aJs +asa +aqN +asa +asa +asa +azL +aZR +asa +aCZ +aKK +aKK +aAF +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +ahL +ahL +ahL +ahL +ahL +agM +ahL +ahL +ahL +ahL +cbl +agM +ahL +ahL +apt +adB +aYc +aYc +avn +apt +agM +ahL +aoR +ags +adg +aSw +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aHe +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(62,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +auY +aJx +aSM +aSM +atC +atC +aFq +aMK +ars +aGb +aLO +ars +ars +axd +axd +axd +axd +ars +ars +ayA +arE +aDo +aFa +ars +ars +auY +aZj +aZj +ahz +aoF +abD +aZj +aZj +aZj +aZj +auQ +anR +aoK +alO +aBv +aur +aOR +ahk +aUR +aBp +aEJ +aEJ +aEJ +aEJ +aEJ +aEJ +aEJ +agG +aOc +aSt +azL +asa +asa +asa +asa +asa +asa +aJs +asa +aBc +afn +asa +aYu +azL +aUf +asa +aYt +asa +asa +aAF +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +ahL +agM +ahL +ahL +ahL +ahL +ahL +ahL +agM +ahL +ahL +ahL +ahL +ahL +apt +adB +aYc +aYc +avn +apt +ahL +ahL +aoR +aSw +adg +ags +anb +aoA +aoA +aNg +aeS +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(63,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +auY +atC +aim +aim +atC +atC +aFq +aoD +aFq +aFq +aFq +aLq +ars +axd +axd +axd +axd +ars +ayA +acT +aVT +aCY +aDo +aFa +aWy +awf +ajg +abD +abD +abD +abD +arT +aAr +aAr +aZj +aJl +anR +aiL +alO +alO +aBp +aBp +aBp +aBp +aBp +aNz +aNz +agG +aLb +agG +agG +agG +agG +agG +agG +azL +aKC +aFI +aFI +aFI +aFI +alI +aJs +asa +aqN +jQW +asa +arH +azL +aXF +asa +asa +asa +aDC +aAF +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +abR +aSw +adg +aSw +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(64,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +auY +ars +ars +ars +ars +ars +ars +ars +ars +aFq +ars +ars +ars +ars +ars +ars +ars +ars +aKj +aVT +aVT +aVT +awQ +aFa +ars +awf +aXy +abD +abD +abD +abD +axk +aSR +aAr +aZj +aJl +anR +aue +arx +alO +aXW +aGU +aGU +afS +aBp +aEJ +aEJ +agG +aEJ +aEJ +aEJ +aEJ +agG +auQ +auQ +azL +alI +aKV +aKV +aKV +aKV +alI +aJs +asa +aBc +asa +asa +aGd +azL +adw +afn +asa +asa +asa +aAF +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aSw +anb +aoA +aoA +aNg +aXo +aeS +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +afj +aYG +aHe +aTg +tMt +aLD +aLD +aLD +aLD +ahY +ahY +ahY +ahY +aFc +"} +(65,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +auY +aQr +aQr +aTB +dll +ars +ars +akV +ars +aui +ars +ars +ars +ars +ars +ars +ars +ars +aLt +aAJ +aVT +avz +atj +aFa +ars +awf +afq +abD +anv +anv +anv +arT +aAr +aAr +avq +aJl +aBp +aBp +aBp +aMz +aBp +aLQ +aZe +aXm +aBp +aXT +aXT +agG +axH +aEJ +aQI +aNY +agG +auQ +auQ +azL +amE +asa +asa +asa +asa +asa +aJs +asa +aqN +aZv +asa +atb +azL +aBU +aCn +aKR +aHy +aHy +aAF +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aSw +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(66,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +auY +auY +auY +aTB +dll +auY +auY +auY +auY +auY +aGu +auY +auY +auY +ahw +ars +ars +ars +ars +aLt +aHa +atj +aFa +ars +ars +awf +aaw +abD +anv +anv +anv +arT +aMU +aZj +aZj +aJl +aBp +afV +aLA +aLA +aBp +aNc +akl +aBA +aBp +aXT +aXT +agG +agt +aEJ +asH +akn +agG +aJl +aJl +azL +asa +asa +asa +asa +asa +asa +aJs +asa +aff +aHm +aCl +aIY +aAF +aAF +aAF +aAF +aAF +aAF +aAF +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aeS +aMO +aXo +aXo +aXo +alB +aXo +aeS +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +ahY +ahY +ahY +aFc +"} +(67,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aLI +auY +auY +auY +auY +aLI +aLI +auY +aTT +aGv +akw +auY +aEL +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +awf +adA +abD +abD +abD +abD +aAr +aAr +aZj +aJl +aJl +aBp +aMc +aLA +aLA +aLA +aLA +aLA +aGK +aBp +agG +agG +agG +aEJ +aEJ +aqH +aJR +agG +aWV +aJl +azL +alI +aKV +aKV +aKV +aCK +agi +azm +asa +asa +asa +asa +asa +asa +asa +asa +aAF +aTV +auQ +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aeS +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(68,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aLI +aLI +aLI +aLI +aLI +aLI +aLI +auY +aut +aGv +aGv +auY +aEL +ars +ars +ars +ars +ars +aLO +aLO +ars +aLO +aLO +ars +awf +ajg +abD +abD +abD +abD +aAr +aAr +aZj +asG +aJl +aBp +aad +aLA +aLA +aGL +aLA +aLA +aLA +aBp +aoz +aoz +axZ +aEJ +aEJ +aEJ +aqC +agG +aJl +aJl +azL +alI +aqN +aqN +aqN +apU +agH +aOq +asa +asa +asa +asa +asa +asa +asa +asa +aAF +aaA +auQ +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +aGm +aSw +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aHe +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(69,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aLI +aLI +aLI +avF +adE +adE +adE +auY +auY +auY +auY +auY +auY +aLq +ars +ars +ars +ars +aLO +aEw +ars +aLO +aEw +aWy +awf +ajg +abD +aAR +atT +aLT +aAr +aAr +aZj +aJl +aJl +aBp +aQh +aLA +aLA +ast +ast +aLA +aLA +aBp +aoz +aoz +axZ +aEJ +aEJ +aEJ +aEJ +agG +aJl +aWV +azL +aix +asa +asa +asa +asa +asa +aJs +asa +asa +asa +asa +aRr +aKU +asa +asa +aAF +aaA +auQ +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +ahY +ahY +aFc +"} +(70,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aLI +aLI +aLI +adE +aws +aws +aws +aws +aws +aws +aws +aws +auY +ars +ars +ars +ars +ars +aLO +ars +ars +aLO +ars +ars +awf +afq +abD +aWO +aWO +aWO +aAr +aEN +aZj +aJl +aJl +aBp +aKy +aLA +aLA +aCC +auW +aLA +aLA +aBp +aiD +aEJ +aEJ +aEJ +aEJ +aEJ +aHS +agG +aJl +aJl +azL +abk +asa +asa +asa +asa +asa +aJs +asa +asa +asa +jQW +aqN +aRr +asa +asa +aAF +aaA +auQ +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aHe +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +ahY +aFc +"} +(71,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aLI +aLI +aLI +adE +aws +aws +aws +aws +aws +aws +aws +aws +auY +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +awf +aFx +abD +aAr +aAr +aAr +aAr +aAr +aZj +aJl +aJl +aBp +aPE +aLA +aLA +aCC +aar +aLA +aGK +aBp +aEJ +aEJ +aEJ +aEJ +aEJ +aEJ +aEJ +agG +aJl +aJl +azL +asa +asa +asa +asa +asa +asa +azL +aSW +asa +asa +asa +avo +aqN +asa +asa +aAF +aaA +arS +aRw +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aSw +aOA +aem +aem +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aPI +aPI +aPI +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(72,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +alr +adE +adE +adE +aws +aws +aws +aws +aws +avi +avi +asp +auY +ars +ars +aCs +ars +ars +ars +ars +ars +ars +ars +ars +awf +aFx +abD +aAr +abU +aAr +aAr +aAr +aZj +asd +asd +aBp +aKy +aLA +aiA +awg +aQV +akQ +akQ +aBp +atR +ade +aAD +all +aAD +aAD +aAD +agG +asd +asd +azL +alI +aKV +aKV +aKV +aKV +alI +azL +aSW +ahH +abY +asa +asa +asa +asa +asa +aAF +aRB +aJl +aRw +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aGm +ags +aRh +adh +adh +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +anl +anl +aEp +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(73,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aXg +avi +avi +avi +aws +aws +aws +aws +aws +avi +avi +asp +auY +auY +auY +ctM +ctM +auY +aCb +aCb +aCb +aCb +aCb +auY +auY +akA +akA +akA +oux +akA +akA +akA +aZj +akW +akW +aBp +acm +acm +wKQ +acm +acm +acm +acm +aBp +aMy +aMy +aMy +dYz +aMy +aMy +aMy +agG +akW +akW +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +dGP +dGP +ahZ +ahZ +ahZ +ahZ +aAF +aRB +aJl +aRw +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +ags +aOA +aem +aem +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aPI +aPI +aPI +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(74,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +akW +akW +akW +akW +aUk +akW +akW +akW +akW +akW +akW +aUk +akW +akW +akW +akW +akW +akW +akW +aUk +akW +akW +aUk +akW +akW +akW +akW +akW +akW +akW +aUk +akW +akW +akW +akW +akW +akW +akW +aUk +akW +akW +aUk +akW +akW +akW +akW +akW +akW +akW +aUk +akW +akW +akW +akW +akW +akW +akW +aYl +aCB +aJl +aRw +aRw +aRw +aRw +aRw +aRw +aRw +aRw +aRw +aRw +aRw +aRw +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(75,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aJW +aPM +aIy +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aUb +aXr +aXr +aTb +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aHC +aIy +aXr +aUb +aXr +aXr +aXr +aXr +aXr +aTb +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aHC +aIy +aXr +aIy +aPM +akW +aYl +aRB +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aRw +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aSw +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(76,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +avi +avi +asp +avF +akW +aIy +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aXr +aXr +aXr +aIy +aXO +aYl +aRB +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aGm +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(77,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +ary +avF +apw +apw +avF +aKA +aws +aws +aws +avi +avi +asp +avF +aky +aXr +aXr +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aaB +auC +akW +auC +aaB +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aXr +aXr +agZ +aIl +aXr +aXr +akW +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aQP +aDE +aDE +aJl +aJl +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aHe +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(78,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aAm +avF +avF +avF +avF +aKA +aws +aws +aws +aws +aws +aws +avF +avg +aXr +aXr +aMC +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aXr +agZ +aXr +aIy +akW +avN +avl +aNq +avl +avl +avl +avl +aIQ +aNq +avl +avl +aDE +aJl +aJl +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(79,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aAm +aAm +aHw +azV +aWB +aCq +aef +aws +aws +aws +aws +aws +avF +avg +aXr +aXr +aMC +aXr +aHC +aRS +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aTb +aXr +aXr +aUb +aXr +aXr +aXr +aXr +aXr +aIy +aHC +aIy +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aTb +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aPM +aIy +aXr +aIy +aHC +akW +aVf +avl +avl +avl +avl +avl +avl +aIQ +avl +avl +avl +aDE +asG +aJl +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aeS +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(80,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aAm +aAm +aHw +azV +azV +alc +aoG +aws +aws +avi +avi +asp +avF +avg +aXr +aXr +aMC +aXr +aIy +akW +akW +akk +aXr +akW +aOV +akW +akW +akW +akW +akW +akW +akW +aOV +akW +akW +aOV +akW +akW +akW +akW +akW +akW +akW +aOV +akW +akW +akW +akW +akW +akW +akW +aOV +akW +akW +aOV +akW +akW +akW +akW +akW +akW +akW +aOV +akW +aXr +aXr +aXr +aXr +aIy +akW +aVf +avl +avl +acE +acE +acE +acE +aIQ +abt +avl +avl +aDE +aJl +aJl +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(81,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aig +amg +aFm +azV +azV +alc +aoG +aws +aws +avi +avi +asp +avF +avg +aXr +aXr +aMC +aXr +aXr +akW +aYl +aeF +aXr +akW +auv +aPe +aPe +aPe +xrY +aPe +aPe +aPe +auv +aBd +akW +aSc +aTw +xIe +xIe +qVZ +xIe +xIe +xIe +aSc +agN +azv +azv +mwU +azv +azv +azv +avF +akW +akW +avF +azv +azv +azv +uCH +azv +azv +azv +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +aVf +avl +avl +aVh +azt +aaD +acE +aIQ +aZu +aIQ +avl +aDE +aJl +aJl +aRw +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aeS +alB +aXo +aXo +aDd +aYG +aHe +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(82,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aAm +aAm +aHw +azV +azV +azV +anO +aws +aws +aws +aws +aws +avF +avg +aXr +aXr +aMC +aXr +aXr +aXO +aYl +ank +aXr +akW +auv +aZC +axc +axc +atk +axc +aJD +aEz +auv +asd +asd +aSc +aID +adf +aYv +aBq +arV +arV +arV +aSc +oGX +oGX +oGX +aws +aws +aws +aws +avF +asd +asd +avF +awW +aCX +aqQ +aoL +aKa +awY +aCX +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +aVf +avl +avl +avl +avl +aSB +avl +avl +avl +avl +avl +aDE +asd +asd +aRw +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(83,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aAm +aAm +aHw +azV +azV +azV +anO +aws +aws +aws +aws +aws +avF +aky +aXr +aXr +aMC +aXr +aXr +akW +aYl +ank +aXr +akW +auv +aKv +axc +axc +axc +axc +axc +axc +auv +aOg +aJl +aSc +aln +adf +axl +aVX +aVX +akK +azb +aSc +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +avF +awW +aUV +aqQ +aoL +awv +auX +aCX +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +ahG +avl +avl +avl +avl +avl +avl +avl +avl +avl +avl +aDE +aXr +aXr +aYl +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(84,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aig +amg +axe +azV +azV +alc +aoG +aws +aws +avi +avi +asp +avF +aPA +aXr +aXr +aMC +aXr +aXr +akW +aYl +aaB +aXr +akW +auv +aaJ +auE +auE +afU +axc +axc +axc +auv +aRB +aJl +aSc +aIb +adf +aga +adf +aRp +aYv +arV +aSc +aws +aws +aws +oGX +oGX +aws +aws +avF +aWV +aJl +avF +aOS +aCX +aOH +aoL +aSV +abn +aaC +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +ahG +aIQ +adS +avl +avl +avl +avl +avl +avl +aIQ +aIQ +aDE +aRO +aXr +aYl +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(85,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aAm +aAm +aHw +azV +azV +alc +aoG +aws +aws +avi +avi +asp +avF +akW +aXr +aXr +aMC +aXr +aXr +akW +aYl +aHE +aXr +akW +auv +adZ +ahM +aGl +aGx +axc +aRP +abT +auv +aRB +aWV +aSc +aCg +adf +aga +adf +aRp +aYv +arV +aSc +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +avF +aRJ +aGk +aKG +aoL +afW +aGk +aMx +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +aDE +aDE +aDE +auN +auN +auN +auN +auN +auN +aDE +aDE +aDE +aUx +aXr +aYl +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +afj +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(86,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aAm +aAm +aYx +aNK +aNK +aNK +aUD +aws +aws +aws +aws +aws +azv +aeF +aXr +aXr +aMC +aXr +aXr +akW +aYl +akW +aXr +akW +auv +aMY +ahb +aGl +aGx +axc +axc +axc +auv +aRB +aJl +aSc +aFF +aga +aYI +aga +aga +aYv +arV +aSc +aws +aws +aws +aws +oGX +oGX +aws +avF +aJl +aJl +avF +aoL +aoL +aoL +wdK +aoL +aoL +aoL +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +ael +aqO +avw +akW +akW +akW +akW +akW +akW +aFv +aqO +azW +akW +akW +aYl +adg +adg +adg +adg +adg +adg +adg +adg +adg +ags +ags +ags +ags +ags +adg +adg +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(87,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +avF +avF +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +azv +aeF +aXr +aXr +aMC +aXr +aXr +akW +aYl +akW +aXr +akW +auv +aNT +aYa +avC +aGx +axc +aRP +aRP +auv +ahW +aJl +aSc +aCg +adf +aga +adf +aRp +aYv +arV +aSc +oGX +oGX +aws +aws +oGX +oGX +aws +avF +aJl +aJl +avF +aVy +aVy +aVy +aoL +atO +aBl +aBl +avF +akW +aHC +aIy +aXr +aIy +aHC +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +ahE +adg +adg +adg +adg +adg +adg +adg +ags +ags +ags +awJ +aIx +aGG +ags +ags +ags +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aHe +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(88,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +azv +ank +aXr +aXr +aMC +aXr +aXr +akW +aYl +akW +aXr +akW +auv +aDL +ahb +aGl +aGx +axc +axc +axc +auv +aRB +aJl +aSc +aIb +adf +aga +adf +aRp +aYv +arV +aSc +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +avF +aQb +adQ +aVy +aoL +aeQ +aCX +aaq +avF +akW +aIy +aXr +aXr +aXr +aIy +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +ahE +adg +adg +adg +adg +adg +ags +ags +ags +aIC +aIx +aHx +aoA +aoO +aIx +aUX +afb +afb +afb +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(89,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +azv +ank +aXr +aXr +aMC +aXr +aXr +akW +aYl +akW +aXr +akW +auv +aji +aof +aFh +aGx +axc +aRP +abT +auv +aRB +aCS +aSc +aIb +adf +aga +adf +aRp +aYv +arV +aSc +aws +aws +aws +aws +aws +aws +aws +avF +asG +aWV +avF +aCX +aCX +aVy +aoL +aTu +aCX +aKT +avF +akW +aIy +aXr +aXr +aXr +aIy +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +ahE +adg +adg +adg +adg +ags +ags +awJ +aIx +aHx +aoA +aoA +aoA +aoA +aoA +aoO +aIx +aGG +afb +afb +adg +adg +adg +ags +anb +alL +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aeS +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(90,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +azv +akW +aXr +aXr +aMC +aXr +aXr +akW +aYl +akW +aXr +akW +auv +aHi +ahb +ahb +aEB +aYR +aYR +afU +auv +aYW +aJl +aSc +aYn +ajt +ajt +ajt +ajt +adF +arV +aSc +oGX +oGX +oGX +oGX +aws +aws +aws +avF +aJl +aJl +avF +aCX +aCX +aVy +aoL +aSV +aCX +aCX +avF +akW +aHC +aIy +aXr +aIy +aHC +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aHC +aXr +aXr +aXr +ahE +adg +adg +adg +adg +ags +awJ +aTS +aoA +aoA +aoA +aeT +auV +ale +aoA +aoA +aoA +aRW +aGG +afb +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(91,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +avM +avM +aws +avM +avM +aws +avM +avM +aws +aws +azv +akW +aXr +aXr +aMC +aXr +aXr +akW +aYl +akW +aXr +akW +auv +apF +asi +asi +aLF +ahb +ahb +aGx +auv +aRB +aJl +aSc +ayU +aMd +aMd +aMd +arV +arV +azb +aSc +aws +aws +aws +aws +aws +oGX +oGX +avF +aJl +aJl +avF +amT +avF +avF +apD +avF +avF +avF +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +aYb +akW +akW +akW +akW +aXr +aXr +aXr +aXr +aXr +aIy +aXr +aXr +aXr +ahE +adg +adg +adg +ags +ags +anb +aoA +aoA +aVb +auV +aHv +aXY +aVd +auV +ahx +aoA +aoA +aPl +afb +afb +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(92,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +avM +aZQ +aws +avM +aZQ +aws +avM +aZQ +aws +aws +azv +akW +aTb +aXr +aMC +aXr +aXr +eBB +aYl +aYl +aYl +akW +auv +auv +auv +auv +auf +ahb +ahb +aGx +auv +aRB +adi +aSc +aPJ +arV +aTy +aMd +arV +arV +akr +aSc +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +avF +aws +aws +aws +aws +aws +agw +agw +avF +alX +aXr +aXr +aXr +aXr +aXr +aXO +aYl +aJM +aJM +aYl +aPA +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +ahE +adg +adg +adg +ags +aIC +aHx +aoA +aeT +aHv +aXY +aXY +aXY +aXY +aXY +aVd +ale +aoA +aoO +aUX +afb +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aeS +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aHe +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(93,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +avM +aws +aws +avM +aws +aws +avM +aws +aws +aws +azv +akW +aXr +aXr +aMC +aXr +aXr +akW +aXr +azP +aYl +akW +auv +arU +ata +anA +alF +ahb +ahb +aGx +auv +aRB +aJl +aSc +aia +arV +arV +arV +arV +arV +aMd +aSc +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +avF +aws +aws +aws +aws +aws +ahh +ahh +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +aJM +aXr +aXr +aJM +akW +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aSv +aYl +azG +ags +ags +ags +anb +aoA +aoA +aEe +aXY +aXY +aBV +art +aXl +aXY +aXY +aGg +aoA +aoA +aPl +afb +afb +afb +afb +agT +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(94,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +avM +avM +aws +avM +avM +aws +avM +avM +aws +aws +azv +akW +aXr +aXr +aMC +aXr +aXr +akW +aXr +azP +aYl +akW +auv +aoh +aZa +auv +apF +asi +asi +aGx +auv +aRB +aJl +aSc +abX +arV +amI +avU +arV +arV +akr +aSc +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +avF +ahh +aVU +aVU +aav +aws +aNP +ahh +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +aRG +aXr +aac +aJM +akW +aXr +aIl +aWu +aWu +aIl +aXr +aXr +aXr +aXr +mbi +aIx +aIx +aIx +aIx +aHx +aoA +aeT +aHv +aXY +aNU +aGZ +abl +aoy +awo +aXY +aVd +ale +aoA +aoO +aIx +aIx +aIx +aIx +aHx +aoA +aoA +aNg +aXo +aXo +alB +aXo +aeS +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +afj +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(95,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aKA +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aDY +avF +aPA +aXr +aXr +aMC +aXr +aXr +aXO +aYl +aRw +aRw +asd +auv +auv +auv +auv +auv +auv +auv +aAB +auv +aXE +aWV +aSc +aSc +abQ +aSc +aSc +aSc +aSc +aSc +aSc +avF +avF +avF +avF +avF +avF +avF +avF +aJl +aJl +avF +avF +avF +avF +avF +avF +avF +avF +avF +akW +aXr +aXr +aXr +aXr +aXr +akW +aJM +aTb +aXr +aab +avV +aXr +aTv +aWu +aWu +aTv +aXr +aXr +aXr +aXr +pxk +aoA +aoA +aoA +aoA +bAt +aoA +aIo +aXY +alY +aZz +afI +aJX +aqf +aBk +alY +aXY +aGg +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(96,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +mEC +akW +aXr +aXr +aMC +aXr +aXr +akW +aYl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aWV +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aRw +akW +aXr +aXr +aXr +aXr +aXr +akW +aRG +aXr +aac +aJM +akW +aXr +aIl +aWu +aWu +aIl +aXr +aXr +aXr +aXr +pHD +aDD +aDD +aDD +aDD +aaU +aoA +aPz +ahT +aXY +aMp +azp +avv +aMv +aBw +aXY +axU +amt +aoA +awh +aDD +aDD +aDD +aDD +aRV +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aHe +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(97,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +mEC +akW +aXr +aXr +aMC +aXr +aXr +akW +aYl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aWV +aJl +aJl +aSP +aAl +aJl +aJl +aJl +aJl +aJl +aSP +aJl +aWV +aJl +aJl +aJl +aJl +aJl +aSP +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aSP +aWV +aJl +aJl +aJl +aUF +akW +aXr +aXr +aXr +aXr +aXr +akW +aXr +aXr +aXr +aJM +akW +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aSv +aYl +azG +ags +ags +ags +anb +aoA +aoA +aEe +aXY +aXY +azI +aGy +afY +aXY +aXY +aGg +aoA +aoA +aPl +afb +afb +afb +afb +agT +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +afj +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(98,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +akW +aXr +aXr +aMC +aXr +aXr +akW +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +amz +aRw +aRw +aRw +aRw +aRw +aJl +aJl +aQy +aQy +aQy +aQy +aQy +aQy +aQy +aQy +aQy +aQy +aRw +aRw +aRw +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +alX +aXr +aXr +aXr +aXr +aXr +aXO +aYl +aDp +aJM +aYl +aPA +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +ahE +ags +adg +adg +ags +aTD +aaU +aoA +aPz +ahT +aXY +aXY +aXY +aXY +aXY +axU +amt +aoA +awh +akU +afb +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(99,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +avF +avF +avF +avF +avF +avF +ayg +avF +avF +avF +avF +akW +aXr +aXr +aIl +aXr +aXr +akW +hjz +amv +aDX +aVr +aII +aDX +aVr +amv +aOi +aKS +afE +aiG +aEQ +aJl +aqj +aum +aWG +aWG +aRw +aez +aez +aQy +aft +aft +ajW +aZm +amM +aFg +aCp +aft +aQy +amV +avu +auL +aYl +akW +aUk +tJK +aci +akW +aUk +tJK +aci +akW +aIy +aXr +aXr +aXr +aIy +akW +aNu +akW +akW +akW +akW +aXr +aXr +aXr +aXr +aXr +aIy +aXr +aXr +aXr +ahE +ags +adg +adg +ags +ags +anb +aoA +aoA +aAS +aJP +ahT +aXY +axU +aJP +aiy +aoA +aoA +aPl +afb +afb +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(100,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +avF +aHs +avF +aHs +avF +ayg +ayg +avF +aQR +aws +azv +akW +aXr +aXr +agZ +aXr +aXr +akW +hjz +aYM +afE +afE +agX +afE +afE +aYM +afE +afE +afE +aOK +aEQ +aJu +aJl +amo +aei +amo +aQy +aQy +aQy +aQy +aft +aft +aBH +aOy +amM +aPL +apm +aft +aQy +aYl +aYl +aYl +aYl +aDA +aDA +aJH +aJH +aDA +aDA +aJH +aJH +akW +aHC +aIy +aXr +aIy +aHC +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aHC +aXr +aXr +aXr +ahE +ags +adg +adg +adg +ags +aSK +aML +aoA +aoA +aoA +aPz +aJP +amt +aoA +aoA +aoA +akg +akN +afb +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(101,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +avF +aQn +avF +aQn +avF +ayg +avF +avF +aws +aQR +azv +akW +aXr +aXr +aXr +aXr +aXr +akW +hTf +aer +aZB +aZB +aZB +aZB +aZB +aZB +aZB +aZB +aZB +afE +aEQ +agf +aJl +amo +aUY +amo +aQy +aot +aot +aot +aft +aft +aft +aft +aft +aft +aft +aft +aQy +aci +aJH +aom +aLG +aLM +aLM +anm +aLG +aLM +aLM +anm +aLG +akW +aIy +aXr +aXr +aXr +aIy +aXr +aXr +aXr +aTz +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +ahE +ags +adg +adg +adg +ags +ags +aSK +aDD +aaU +aoA +aoA +aoA +aoA +aoA +awh +aDD +akN +afb +afb +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(102,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +avF +aws +aws +avF +ayg +ayg +ayg +aES +ayg +ayg +avF +aws +aws +azv +akW +aXr +aXr +agZ +aXr +aXr +akW +hTf +aZB +aZB +aZB +aZB +aZB +aZB +aZB +aZB +aZB +aZB +afE +aEQ +aRB +aJl +aWG +aWG +aum +aQy +aot +aot +amd +aft +aft +aft +aft +aft +aMf +aft +aft +aQy +tJK +aJH +aqZ +aZO +aZO +aZO +aZO +aZO +aZO +aZO +aZO +aYw +akW +aXr +aXr +aXr +aXr +aXr +akW +aXr +agZ +aYl +ajA +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +ahE +ags +adg +adg +adg +adg +ags +ags +ags +aTD +aDD +aaU +aoA +awh +aDD +akU +afb +afb +afb +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aHe +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(103,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aws +aws +avF +afw +ayg +ayg +ayg +ayg +aYZ +avF +aws +aQR +azv +akW +aXr +aXr +aIl +aXr +aXr +akW +hjz +aYM +cID +afE +afE +afE +afE +akP +atA +aBZ +aZB +aOK +aEQ +aDg +aJl +amo +amo +amo +aQy +aQy +aQy +aQy +aQy +ape +ape +aQy +aQy +aQy +ape +aQy +aQy +aPA +aDA +afo +aZO +aZO +alD +alD +alD +alD +alD +alD +aph +akW +aXr +aXr +aXr +aXr +aXr +akW +aXr +agZ +aYl +ajA +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +ahE +ags +adg +adg +adg +adg +adg +adg +ags +ags +ags +anb +aoA +aPl +ags +ags +ags +adg +adg +adg +adg +adg +adg +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +afj +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(104,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aws +aws +avF +aPm +awH +awH +awH +aDa +ayg +avF +aQR +aws +azv +akW +aXr +aXr +aMC +aXr +aXr +akW +hjz +aYM +afE +afE +afE +afE +afE +aIq +aHB +aoq +aZB +cID +aEQ +afX +aJl +amo +amo +axL +aQy +apN +aSa +acB +ajU +afJ +afJ +aSY +afJ +aiW +afJ +afJ +aQy +akW +aDA +afo +aZO +alz +anI +aqy +aqy +anI +aqy +aqy +aqy +aFl +aXr +aXr +aXr +aXr +aXr +akW +aXr +aXr +aYl +ajA +aXr +aXr +aXr +aXr +aXr +aTz +aXr +aXr +aXr +aXr +aYl +ags +ags +ags +ags +ags +ags +ags +ags +ags +ags +anb +aoA +aPl +ags +ags +ags +ags +ags +ags +ags +ags +ags +ags +anb +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(105,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aus +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +aus +avF +aPA +aXr +aXr +aMC +aXr +aXr +aXO +aEQ +aex +aVK +aex +aex +aVK +aex +aEQ +aEQ +aQs +aDf +aEQ +aEQ +aJl +aJl +aCz +axz +aQX +aIa +azH +ajU +ajU +ajU +afJ +afJ +aSY +afJ +aAL +afJ +afJ +aQy +aci +aJH +aJA +aZO +alz +aqy +afk +aqy +aqy +aqy +afk +aqy +aFl +aXr +aXr +aXr +aXr +aXr +aXO +aYl +aYl +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aXr +aXr +aXr +aWu +aYl +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aHx +aoA +aoO +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aHx +aoA +aoA +aNg +aXo +aeS +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(106,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +avF +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +avF +akW +aXr +aXr +aMC +aXr +aXr +akW +aQs +aqV +apE +aae +aae +apE +aSq +aQs +rDj +aae +aae +aGA +aEQ +aJl +aJl +aum +aWG +aWG +aQy +aAg +aSa +ajU +ajU +afJ +afJ +auD +aTo +avD +aSY +aSY +aQy +tJK +aJH +aqZ +aZO +alz +aqy +aqy +aHL +aOP +aEq +alv +aqy +aFl +aXr +aXr +aXr +aXr +aXr +akW +aXr +aXr +aUp +aJJ +acX +aoE +azS +avB +aAe +aEk +aXr +aXr +aXr +aVV +aYl +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +aaW +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +aaW +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +afj +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(107,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +avF +akW +aXr +aXr +aMC +aXr +aXr +akW +aQs +alN +aae +aae +aae +aae +aae +arj +aae +aae +aae +apG +aEQ +aJl +aWV +amo +aei +amo +aAi +ane +ajU +ajU +ajU +afJ +tef +afJ +afJ +afJ +afJ +afJ +aQy +aPA +aDA +afo +aZO +alz +aqy +aqy +awj +aFT +axI +alv +aqy +aFl +aXr +aXr +aXr +aXr +aXr +akW +awn +aMR +aUp +aFU +acX +aIE +azo +azo +aGS +azx +aXr +aXr +aXr +awz +aYl +gWV +agd +adl +aAh +aza +aAh +aza +aAh +aza +aAh +aza +aAh +aza +aAh +aza +aAh +aza +aAh +aza +aAh +aza +aAh +aAW +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aeS +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(108,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aib +aib +aib +aib +aib +avF +avF +avF +avF +avF +avF +avF +avF +akW +aXr +aXr +aMC +aXr +aXr +akW +aQs +ajj +aae +att +azw +aTq +aGA +aQs +aJY +aae +iKw +aGA +aEQ +aJl +aJl +amo +aUY +amo +aQy +apN +aSa +ajU +ajU +afJ +afJ +afJ +afJ +afJ +afJ +afJ +aQy +akW +aXr +afo +aZO +alz +aqy +anI +axE +aEb +aKs +alv +aqy +aFl +aXr +aXr +aXr +aXr +aXr +akW +aNL +aNL +aUp +aUp +aUp +aoE +adH +azo +azo +aTC +aXr +aXr +aXr +aAp +aYl +agd +agd +aAk +aho +aGt +aHc +aGt +aho +alC +aho +act +aho +aRx +aho +aOt +aho +aGt +aho +act +aho +aGt +aho +ats +aZV +aem +aem +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(109,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aib +aib +aib +aib +aib +avF +aib +aib +aib +aib +aib +aib +avF +akW +aXr +aXr +aMC +aXr +aXr +akW +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +aEQ +aQs +acM +aae +akR +aOf +aEQ +aJl +aJl +aWG +aWG +aum +aQy +ase +ajU +ajU +ajU +aBE +abN +aVJ +apK +aBm +aVJ +apK +aQy +akW +aDA +aJA +aZO +alz +aqy +aHb +aqy +aqy +aqy +afk +aqy +aFl +aXr +aXr +aXr +aXr +aXr +akW +aIN +aZc +aoE +are +azo +azo +azo +azo +azo +aEk +aXr +aXr +aXr +aNL +aYl +agd +agd +aNt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +aQJ +adh +adh +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(110,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aib +aib +aib +aib +aib +avF +aib +aib +aib +aib +aib +aib +avF +akW +aXr +aXr +aMC +aXr +aXr +akW +aQW +alp +apW +aYK +aVq +aQs +aso +lXz +aDy +aae +aae +apE +aEQ +amz +aRw +aRw +aYl +aYl +aQy +aQy +aDv +aDv +aDv +aQy +wCv +aQy +aDv +aDv +aDv +aQy +aQy +akW +aDA +aqZ +aoH +aMo +anI +aqy +aIT +anI +apg +aqy +aqy +aFl +aXr +aXr +aXr +aXr +aXr +akW +aXr +awz +aoE +aDc +ack +azo +azo +arZ +aXc +lzq +aXr +aXr +aXr +adk +aYl +agd +agd +aNt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGQ +aZV +aem +aem +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aPI +aPI +aod +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(111,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aib +aib +aib +aib +aib +avF +aib +aib +aib +aib +aib +aib +avF +akW +aXr +aXr +aMC +aXr +aXr +akW +aQW +aRC +aYK +aYK +aYK +aPh +aae +aae +aDy +aae +aae +any +aEQ +aJl +aJl +aJl +aYl +akW +akW +akW +akW +akW +akW +aUk +akW +akW +akW +akW +akW +akW +akW +akW +akW +akW +akW +akW +awu +awu +awu +awu +awu +awu +awu +akW +aIy +aXr +aXr +aXr +aIy +akW +aXr +awz +aUp +aUp +aUp +aUp +aoE +asq +asq +aUp +aWu +aSz +aSz +aWu +aYl +agd +agd +aNt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aBx +aml +atf +aLz +aGV +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aGj +anl +anl +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(112,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +avF +aib +aib +aib +aib +aib +avF +aib +aib +aib +aib +aib +aib +avF +akW +aXr +aMC +aMC +aMC +aXr +akW +aQW +atl +aYK +aYK +akz +aQs +azc +aay +aae +aae +aFo +aae +aZL +aJl +aJl +aDb +aYl +akW +aPM +aIy +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aHC +aIy +aXr +aIy +aHC +akW +aXr +agU +aoE +adN +aYi +abv +aoE +aUn +aUn +aUp +aUp +aUp +aUp +aUp +aUp +agd +agd +aNt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +atf +aXo +aXo +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aPI +aPI +aPI +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(113,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +avF +aib +aib +aib +aLg +aLg +aLg +aLg +aLg +aLg +aLg +aLg +aLg +aLg +aPA +aXr +aMC +aMC +aMC +aXr +aXO +aQW +aHk +aWW +aYL +afB +aQs +azi +aCw +lXz +azw +ajj +aOf +aEQ +aJl +aJl +aJl +aYl +akW +aIy +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aXr +agZ +aXr +aIy +akW +aXr +aUx +aoE +ajM +acX +acX +aeI +acX +acX +aTM +ago +acX +acX +amY +aUp +agd +agd +aNt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +amr +aQK +atf +ayD +aRs +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(114,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +acY +aJl +ako +aJl +ako +aJl +ako +aJl +ako +acY +akW +aIy +aMC +aMC +aMC +aIy +akW +aEQ +aEQ +aEQ +aEQ +aEQ +aQs +ajO +avA +aGA +aEQ +aEQ +aEQ +aEQ +aJl +aJl +aDb +aYl +akW +aXr +aXr +aMC +aMC +aaB +auC +akW +auC +aaB +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aXr +aXr +agZ +aIl +aXr +aXr +akW +awn +aMR +aoE +afx +acX +ajM +aoE +aUe +ajM +abH +acX +acX +ago +awm +aUp +agd +agd +aNt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +aZV +aem +aem +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(115,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +awT +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +asy +akW +aHC +aIy +aXr +aIy +aHC +akW +aak +ajF +aEm +aEm +aEm +aEQ +aEQ +aEQ +aEQ +aEQ +auQ +auQ +aRw +aJl +aJl +aJl +aYl +akW +aXr +aXr +aMC +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aXr +aXr +aXr +aIy +akW +aNL +aNL +aoE +aZt +aBC +ahB +aoE +aby +arO +aTM +afe +aCL +aWb +ajb +aUp +agd +agd +aNt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aBz +aho +aBz +aho +aPO +aho +aGt +aho +aGQ +aQJ +adh +adh +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(116,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +acY +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +acY +abf +abf +abf +abf +abf +abf +aFQ +abf +aqD +abf +abf +abf +aAM +abf +abf +abf +aRw +auQ +auQ +aRw +aJl +aJl +aDb +aYl +akW +aXr +aXr +aMC +aXr +aHC +aRS +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aHC +aIy +aXr +aIy +aHC +akW +aIN +aZc +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +agd +agd +aNt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +aZV +aem +aem +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aHe +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(117,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +acY +acY +cLl +cLl +cLl +cLl +cLl +cLl +cLl +aVG +aLU +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +aRw +aJl +aJl +aJl +aJl +aJl +aJl +aYl +akW +aXr +aXr +aMC +aXr +aIy +akW +akW +akW +akW +akW +akW +akW +aSH +akW +aXr +akW +aOV +akW +akW +akW +aOV +akW +akW +akW +akW +aOV +akW +akW +akW +akW +akW +akW +aXr +aXr +aYl +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +aap +agd +agd +aNt +ahD +aCV +ahD +aCV +ahD +aCV +ahD +aGt +aHl +aGt +ahD +aCV +ahD +aCV +ahD +aCV +ahD +aCV +ahD +aGQ +aaW +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aeS +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +afj +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(118,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +awT +aJl +aJl +aJl +aJl +aJl +cLl +sqE +aJm +anV +pAs +sjB +cLl +apa +aLU +aLU +abf +apa +apa +aDQ +aLC +aLC +auG +apa +apa +aea +aLC +aLC +aAv +abf +aUF +aJl +aJl +aWV +aJl +aJl +aJl +aYl +aPA +aXr +aXr +aMC +aXr +aXr +akW +agq +agq +agq +agq +agq +agq +agq +aJg +aXr +akW +aYl +aYl +aYl +aRi +aAx +aLk +aLk +aLk +aLk +aRi +aRi +uGY +uGY +jVB +lav +kpL +kpL +kpL +kpL +ajk +aFS +agd +agd +adl +aRa +aml +aRa +aml +aRa +aml +aRa +aml +aRa +ahC +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(119,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +awT +aJl +aJl +aJl +aJl +aJl +cLl +cLl +cLl +kmc +anV +anV +cLl +apa +aLU +aLU +abf +apa +apa +aea +aLC +aLC +auG +apa +apa +aDQ +aLC +aLC +ajh +abf +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +akW +aXr +aXr +aMC +aXr +aXr +akW +agq +ahv +agq +aiR +agq +anV +mys +aXr +aXr +akW +aKL +aJL +aJL +aAx +aCv +aLk +anh +aLk +aLk +ajw +qae +xRE +lBR +uGN +aqI +ifk +xmh +ifk +kpL +ajk +aFS +agd +agd +aNt +aho +aBz +aho +aRx +aho +aGt +aho +aRx +aho +aGt +aho +aTs +aho +aTs +aho +act +aho +aGt +aGt +aGt +aho +act +aho +aGt +aho +aRx +aho +aGt +aho +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(120,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +aJl +aJl +cLl +sqE +aJm +anV +ebf +anV +mys +apa +aLU +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +akW +akW +akW +akW +akW +akW +aUk +akW +akW +aIy +aXr +aMC +aXr +aXr +akW +agq +auq +agq +auq +agq +anV +agq +akW +aXr +akW +aYl +aJL +aJL +aAx +amF +aLk +aLk +aLk +aLk +ajw +qae +xRE +ifk +ifk +ifk +ifk +ifk +ifk +kpL +aLE +aLE +aLE +aLE +aNt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(121,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +aJl +aJl +cLl +cLl +cLl +cLl +cLl +cLl +cLl +apa +aLU +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +aHC +aIy +aXr +aXr +aTb +aXr +aXr +aXr +aIy +aHC +aXr +aMC +aXr +aXr +akW +agq +anV +akp +anV +anV +anV +agq +akW +aXr +akW +aYl +aoJ +axb +aAx +aCo +aLk +aLk +aLk +fxB +aLk +qae +xRE +ifk +ifk +ifk +jtP +drk +ifk +kpL +aRd +aml +aml +aml +ahC +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aHe +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(122,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +aJl +aJl +cLl +sqE +aJm +anV +pAs +anV +mys +apa +aLU +aLU +abf +apa +apa +aDQ +aLC +aLC +ajh +apa +apa +aDQ +aLC +aLC +aAv +abf +aIy +aMC +aMC +aMC +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aMC +aXr +aXr +akW +agq +anV +anV +anV +akp +anV +agq +aPA +aXr +akW +aYl +aJL +aRw +aAx +amu +aed +arh +aLk +aLk +aMQ +qae +pmd +oQx +uGu +ifk +gTj +baf +ifk +kpL +aBO +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(123,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +aJl +aJl +cLl +cLl +cLl +kmc +anV +anV +cLl +aVG +aTP +aLU +abf +apa +apa +aea +aLC +aLC +ajh +apa +apa +aea +aLC +aLC +ajh +abf +aXr +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aMC +aXr +aXr +akW +agq +aYj +afp +afp +afp +aJO +agq +akW +aXr +akW +aYl +aJL +aXh +aAx +aQM +aAI +arh +aLk +aLk +aLk +qae +oqv +dTh +yfx +ifk +ifk +ifk +ifk +kpL +toY +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(124,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +aJl +aJl +cLl +sqE +aJm +anV +ebf +sjB +cLl +aUC +aLU +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +aIy +aMC +aMC +aMC +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +akW +agq +agq +agq +agq +agq +agq +agq +aMi +aXr +akW +aRi +aRi +aRi +aAx +aMj +aAI +ayB +aLk +aLk +aLk +qae +mws +xrs +qtc +ifk +ifk +ifk +ifk +kpL +ava +aQK +aQK +aQK +aTE +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(125,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +acl +aJl +aJl +aJl +aJl +cLl +cLl +cLl +cLl +cLl +cLl +cLl +aRK +aLU +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +aHC +aIy +aXr +aXr +aTb +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aIy +aHC +akW +agq +asQ +agq +asQ +agq +anV +mys +aXr +aXr +akW +apQ +azB +aDJ +alR +aAI +aAI +arh +aLk +aLk +aLk +aRi +jVB +jdP +jVB +buD +efX +gyy +ifk +kpL +aLE +aLE +aLE +aLE +aNt +aGt +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +afj +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(126,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aVG +aSU +aLU +aLU +abf +apa +apa +aDQ +aLC +aLC +ajh +ajF +ajF +aNj +aLC +aLC +aAv +abf +akW +akW +akW +akW +akW +akW +aOV +akW +akW +akW +akW +akW +aOV +akW +akW +agq +auq +agq +aeG +agq +anV +agq +avs +aXr +akW +apQ +aQT +aOM +ajz +axA +aAI +atp +aLk +aLk +aLk +hdo +stw +jQE +kpL +kpL +kpL +kpL +kpL +kpL +agd +agd +adl +aml +ahC +aGt +aGt +aGt +aGt +aho +aGt +aho +aBz +aho +aGt +aho +aBz +aho +aBz +aho +aGt +aho +aGt +aGt +aGt +aho +aGt +aho +aRx +aho +aje +aho +aGt +aho +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(127,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aVG +aUC +aLU +aLU +abf +apa +apa +aDQ +aLC +aLC +aAv +ajF +ajF +aNj +aLC +aLC +ajh +abf +aYl +aYl +aYl +aYl +aYl +wJt +aYl +wJt +aYl +aYl +aYl +aYl +lDl +wNa +wNa +agq +anV +anV +anV +anV +anV +aGP +aWM +aWM +aWM +aGP +apQ +aRI +aZX +adP +aAI +aKe +aLk +aLk +mGY +hdo +okM +rne +bkw +lBO +hTH +tSb +vzM +kpL +gWV +agd +aNt +aGt +aGt +aGt +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(128,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +asb +asb +asb +asb +asb +asb +asb +aJl +aVG +aRK +aLU +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +aYl +hRX +vsC +hXE +akW +akW +aUk +akW +akW +akW +aUk +vSo +lDl +aiH +aBo +agq +akp +anV +anV +anV +anV +aGP +asL +asL +asL +aGP +aRi +aRi +aRi +aRi +aRi +aRi +aAx +eXm +aRi +hdo +hnO +eRr +eRr +eRr +eRr +rGI +jJP +kpL +agd +agd +aNt +aGt +aGt +aGt +aGt +aHl +aGt +ahD +aCV +ahD +aCV +ahD +aCV +ahD +aCV +ahD +aCV +ahD +aCV +ahD +aGt +aHl +aGt +ahD +aCV +ahD +aCV +ahD +aCV +ahD +aCV +ahD +aGQ +aaW +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(129,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aRw +aJl +aJl +aJl +aJE +aSn +ajX +aXu +aSu +aIe +asb +asb +asb +asb +aNe +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +aYl +nAq +aDA +lyX +aDA +aDA +aDA +aDA +aDA +aDA +aDA +akW +ikv +aBo +aBo +agq +aQO +afp +afp +afp +awA +aGP +asL +asL +asL +aYO +afc +aSj +aSj +aSj +aSj +aSj +aAx +aRv +aAI +hdo +fMu +eRr +uBf +eRr +eRr +eRr +fSa +kpL +gWV +agd +aNt +aGt +aGt +aGt +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +aZV +aem +aem +aNg +aXo +aeS +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aHe +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(130,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aRw +aJl +aJl +aJl +aJE +axS +aSu +aSu +aSu +apT +avr +aZb +ajR +aoV +aLU +aLU +abf +apa +apa +aNj +aLC +aLC +aAv +apa +apa +aea +aLC +aLC +aAv +abf +aYl +tna +eeN +gqY +veF +uLP +aDA +aDA +uLP +aDA +aDA +hBm +qbw +akE +akE +agq +agq +agq +agq +agq +agq +aGP +aGP +aGP +aGP +aYO +alf +aAI +aAI +aAI +aAI +aua +aAx +aZZ +axt +aRi +jjQ +jjQ +jjQ +jjQ +jjQ +jjQ +jjQ +jjQ +agd +agd +aNt +aGt +aGt +aGt +aGt +aGt +aGt +aho +act +aho +aGt +aho +aRx +aho +aRx +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aTK +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +aQJ +adh +adh +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(131,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aRw +aJl +aJl +aJl +aJE +aPN +aSu +aTH +aSu +afQ +avr +aMn +awe +akq +aLU +aLU +abf +apa +apa +aNj +aLC +aLC +aAv +apa +apa +aea +aLC +aLC +aAv +abf +aYl +izc +aDA +lyX +aDA +aDA +jFU +jFU +aDA +aDA +aDA +hBm +fGB +aag +aag +asN +yfF +aLL +aos +afl +aAG +aZI +aMq +aIV +aJe +aiK +ann +ann +ann +apJ +ann +ann +aAx +asP +aAI +apQ +hIc +soC +rvt +udy +whm +fgJ +hnS +jjQ +pcJ +pcJ +aNt +aGt +aGt +aGt +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGQ +aZV +aem +aem +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(132,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aRw +axN +aJl +aJl +aJE +aVe +aSu +aTH +aSu +afQ +aRX +aQa +aKq +aUr +aLU +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +aYl +iUQ +aDA +lyX +aDA +aDA +jFU +jFU +aDA +aDA +aDA +hBm +lDl +iaz +aIK +aIK +aIK +aIK +aIK +aIK +aIK +aIK +aTm +aqc +aaY +aiK +aAI +aAI +aAI +bzR +aAI +aAI +aAx +alf +aAI +apQ +tRQ +xpz +xpz +lEt +fJW +wnk +vHC +mFb +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aBx +aml +atf +aLz +aGV +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aeS +aXo +aDd +aHe +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(133,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aRw +aFM +asb +atF +aJE +aoZ +aSu +aTH +aSu +aew +aRX +aVc +aPw +aIn +aLU +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +aYl +iAN +aDA +aDA +aDA +aDA +jFU +jFU +aDA +aDA +aDA +hBm +lDl +nqd +aIK +ajG +ajG +ajG +ajG +aIK +aIK +aIK +aIK +aRU +aRU +aiK +ann +ann +ann +apJ +ann +ann +aAx +aLa +aAI +apQ +wHz +xpz +xpz +xpz +fJW +vHC +tAm +mFb +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +atf +aXo +aXo +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aeS +aXo +alB +aXo +aXo +aDd +aYG +aYG +afj +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(134,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +amn +aSu +aSu +aSu +aSu +aSu +aSu +aSu +aew +aJE +ajE +abW +aMV +aLU +aLU +abf +apa +apa +aDQ +aLC +aLC +auG +apa +apa +aea +aLC +aLC +ajh +abf +aYl +iAN +duz +aDA +aDA +aDA +jFU +jFU +aDA +aDA +aDA +hBm +lDl +bPq +aIK +aOb +arX +adK +aBt +rus +aIK +aIK +aIK +aIK +aUj +aiK +alf +aAI +aAI +bzR +aAI +aua +aAx +aAI +aAI +apQ +foj +cdr +xpz +taO +bVB +hzk +ykT +jjQ +pAp +pAp +aNt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aho +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +amr +aQK +atf +ayD +aRs +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(135,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +amn +aZq +aSu +aSu +aSu +aSu +aSu +aSu +aSu +aJE +aPv +atw +aBT +aLU +aLU +abf +apa +apa +aea +aLC +aLC +auG +apa +apa +aea +aLC +aLC +aAv +abf +aYl +aYl +aYl +aYl +aDA +uLP +aDA +aDA +uLP +aDA +aDA +hBm +lDl +aBY +aIK +ajG +ajG +ajG +ajG +aIK +aQm +aYy +aVu +aHD +aYy +aiK +ann +ann +ann +apJ +ann +ann +aAx +aja +aAI +ilt +feh +xpz +xpz +fwG +paE +xpz +tey +jjQ +agd +agd +aNt +aho +aBz +aho +aGt +aho +aGt +aho +aBz +aho +aGt +aho +aGt +aho +aPO +aho +aBz +aho +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGt +aGQ +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(136,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +amn +aBe +aSu +acG +arY +aSu +aSu +aSu +aSu +aAX +avO +anH +asb +aLU +aLU +abf +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +abf +aYl +awB +awB +aDA +aDA +aDA +aDA +aDA +aDA +aDA +aDA +hBm +lDl +abK +aIK +aIK +aIK +aIK +aIK +aIK +kpP +aOj +aOj +aOj +aSF +aiK +ajS +aAI +aAI +aAI +aAI +aAI +aAI +aAI +aAI +wKZ +wwh +xpz +xpz +tey +xpz +tey +xpz +nRx +agd +agd +aoB +aKH +aQK +aKH +aQK +aKH +aQK +aKH +aQK +aKH +aQK +aKH +aQK +aKH +aQK +aKH +aQK +aKH +aQK +aQK +aQK +aQK +aQK +aQK +aQK +aQK +aQK +aQK +aQK +aQK +aQK +aQK +alh +agd +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(137,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +amn +aNo +aSu +afr +aGI +aSu +atz +atz +apu +asb +aNm +akb +gjo +abf +abf +abf +abf +abf +abf +abf +abf +aUM +abf +abf +abf +abf +abf +abf +abf +aYl +awB +emu +akW +akW +akW +aOV +akW +akW +hBm +xBq +hBm +lDl +aHQ +aIK +aBY +aBY +aJb +aBY +aBY +awU +acd +aOj +aOj +aQv +aiK +adW +adW +adW +adW +adW +adW +aAI +aCA +aEg +apQ +lAO +xpz +xpz +wbJ +xpz +xpz +gXS +jjQ +agd +agd +agd +agd +agd +agd +aaW +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +aaW +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +agd +aaW +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(138,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aYl +aPk +aPk +aPk +aPk +aPk +aPk +aYl +aYl +aPk +aPk +aPk +aPk +aPk +aPk +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aRi +aRi +aRi +aRi +aRi +aRi +aRi +aRi +aRi +aRi +jjQ +jjQ +jjQ +jjQ +jjQ +jjQ +jjQ +jjQ +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aoA +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(139,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aeR +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aeR +aFs +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +abl +aoy +aYG +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(140,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aGm +aqf +aHe +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +afj +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(141,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aqf +aYG +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +afj +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(142,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aqf +aYG +aYG +aYG +aNg +aXo +aXo +alB +aXo +aXo +aeS +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(143,1,2) = {" +aFc +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqf +aYG +aHe +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(144,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aGm +aqf +aYG +aYG +aHe +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(145,1,2) = {" +aFc +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqf +aPI +aPI +aPI +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aPI +aPI +aPI +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(146,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqf +anl +anl +anl +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +anl +anl +anl +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(147,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqf +aYG +aQw +aYG +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +aYG +aQw +afj +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(148,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +aQQ +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +aqf +aXZ +aXZ +aXZ +aNg +aXo +aXo +alB +aXo +aXo +aXo +aMO +aXo +aXo +aXo +alB +aXo +aXo +aDd +afj +aYG +aYG +aTg +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(149,1,2) = {" +aFc +aQQ +aQQ +aQQ +aQQ +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +adg +ayw +ayw +ayw +ayw +aDG +aDG +aDG +aDG +aDG +aDG +aDG +ayw +aDG +aDG +aDG +aDG +aDG +aDG +aDG +ayw +ayw +ayw +ayw +tMt +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aFc +"} +(150,1,2) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} + +(1,1,3) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} +(2,1,3) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(3,1,3) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +cLU +cLU +cLU +cLU +cLU +cLU +uuB +uuB +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(4,1,3) = {" +aFc +uuB +uuB +cLU +uuB +uuB +cLU +cLU +cLU +cLU +cLU +cLU +vAL +vAL +vAL +vAL +uuB +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(5,1,3) = {" +aFc +uuB +uuB +cLU +cLU +cLU +cLU +cLU +cLU +vAL +vAL +ahY +ahY +ahY +ahY +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(6,1,3) = {" +aFc +uuB +cLU +cLU +cLU +cLU +cLU +cLU +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(7,1,3) = {" +aFc +uuB +cLU +uuB +cLU +cLU +cLU +cLU +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(8,1,3) = {" +aFc +uuB +cLU +uuB +uuB +cLU +cLU +cLU +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(9,1,3) = {" +aFc +uuB +uuB +uuB +uuB +uuB +cLU +cLU +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(10,1,3) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +cLU +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(11,1,3) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(12,1,3) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(13,1,3) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(14,1,3) = {" +aFc +uuB +uuB +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(15,1,3) = {" +aFc +uuB +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(16,1,3) = {" +aFc +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(17,1,3) = {" +aFc +uuB +uuB +vAL +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(18,1,3) = {" +aFc +uuB +uuB +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(19,1,3) = {" +aFc +uuB +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(20,1,3) = {" +aFc +uuB +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(21,1,3) = {" +aFc +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(22,1,3) = {" +aFc +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(23,1,3) = {" +aFc +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(24,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(25,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(26,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(27,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(28,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(29,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(30,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(31,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(32,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(33,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(34,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(35,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(36,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(37,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +xEn +anZ +anZ +anZ +anZ +anZ +anZ +anZ +anZ +anZ +anZ +xBD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(38,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +rIb +arB +arB +arB +arB +arB +arB +arB +arB +arB +arB +lra +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(39,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +rIb +arB +arB +arB +arB +arB +arB +arB +arB +arB +arB +lra +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(40,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +rIb +arB +arB +arB +arB +arB +arB +arB +arB +arB +arB +lra +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(41,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +rIb +arB +arB +arB +arB +arB +arB +arB +arB +arB +arB +lra +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(42,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +rIb +arB +arB +arB +arB +arB +arB +arB +arB +arB +arB +lra +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(43,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +rIb +arB +arB +arB +arB +arB +arB +arB +arB +arB +arB +lra +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(44,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +rIb +arB +arB +arB +arB +arB +arB +arB +arB +arB +arB +lra +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(45,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +rIb +arB +arB +arB +arB +arB +arB +arB +arB +arB +hOS +eYT +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(46,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +xEn +rMN +arB +arB +arB +arB +arB +arB +arB +arB +arB +lra +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(47,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +rIb +arB +arB +arB +arB +arB +arB +arB +arB +arB +arB +lra +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(48,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +hXh +vix +vix +vix +vix +vix +vix +vix +vix +vix +vix +eYT +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(49,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(50,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(51,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(52,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(53,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(54,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aUq +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(55,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +asM +ahY +ahY +ahY +ahY +aAK +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(56,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aMl +ahY +ahY +ahY +ahY +aAK +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(57,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aMl +ahY +ahY +ahY +ahY +aAK +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(58,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aMl +ahY +ahY +ahY +ahY +aAK +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(59,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aMl +ahY +ahY +ahY +ahY +aAK +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(60,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +aSJ +aVm +adL +adL +awE +aXb +aVP +aOw +aVP +adv +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aAF +aRq +asa +asa +avd +asa +asa +aKh +asa +asa +asa +asa +aOG +asa +asa +aNI +aXa +ami +axT +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aMl +ahY +ahY +ahY +ahY +aAK +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(61,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +aJr +aaG +adL +adL +aWw +aXb +anW +anW +anW +adv +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aAF +aRq +asa +asa +aRq +asa +asa +aAE +asa +asa +asa +asa +azL +aix +asa +atm +aKx +ayp +asU +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aMl +ahY +ahY +ahY +ahY +aAK +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(62,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +adL +alb +adL +adL +ahe +aXb +anW +anW +anW +adv +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aAF +aRq +asa +asa +aRq +asa +asa +aKh +aVI +aFW +ahf +aVI +azL +asa +asa +atm +aKx +aKx +aKx +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aUK +ahY +ahY +ahY +ahY +aQq +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(63,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +aoN +anG +adL +adL +aMZ +aXb +anW +anW +anW +adv +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +acz +aJh +aJh +aJh +aJh +aJh +aWL +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aws +aws +oGX +oGX +oGX +oGX +oGX +aws +aws +aws +aAF +aaL +asa +asa +aRq +asa +asa +aKh +aVI +abO +abO +aVI +azL +asa +asa +aAF +aAF +aAF +aAF +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(64,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +aJh +aJh +aXq +anW +aXb +aXb +anW +anW +anW +adv +aFu +aZo +aZo +aRk +aJh +aJh +aJh +aJh +acz +acz +acz +aJh +aJh +aJh +aWL +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aAF +alI +asa +asa +alI +asa +asa +aKh +aVI +abO +abO +aVI +azL +asa +asa +ktE +azL +aKK +aKK +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(65,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +aJh +aJh +aXq +anW +aXb +anW +anW +anW +anW +anW +anW +aYQ +aYQ +afZ +aJh +aJh +aJh +aJh +acz +aJh +acz +aJh +aJh +aJh +aWL +oGX +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +arz +aws +arz +aws +arz +aws +arz +avF +arz +aws +arz +aws +aws +aws +aws +aws +aws +aws +aAF +asa +asa +asa +asa +asa +asa +aKh +aUl +aQe +anQ +aVI +azL +asa +aif +aiB +azL +aKK +aKK +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(66,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +anW +anW +anW +anW +aXb +anW +anW +anW +anW +anW +anW +anW +auk +aBX +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +oGX +aws +aws +oGX +oGX +oGX +oGX +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aAF +aeM +aeM +aeM +aeM +aiJ +asa +aAF +aAF +aAF +aAF +aAF +azL +asa +asa +asg +azL +asa +asa +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(67,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +anW +anW +aqp +anW +aXb +anW +anW +anW +anW +anW +anW +anW +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +oGX +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +arz +aws +arz +oGX +arz +aws +arz +avF +arz +aws +arz +oGX +aws +oGX +aws +aws +oGX +aws +aAF +aTh +aTh +aTh +aTh +ajo +asa +aHI +aKK +aKK +aKK +azL +aQo +asa +asa +asa +aZE +asa +asa +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(68,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +aPn +aXb +aXb +aXb +aXb +anW +anW +anW +anW +anW +anW +anW +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +oGX +aws +oGX +aws +oGX +oGX +oGX +oGX +aws +oGX +aws +arz +aws +arz +aws +arz +aws +arz +avF +arz +aws +arz +oGX +aws +aws +aws +aws +aws +oGX +aAF +age +auB +auB +aWD +ajo +asa +acQ +aKK +aKK +aKK +aHW +aVO +asa +asa +aUy +aUy +asa +asa +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(69,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +aFu +aJS +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +oGX +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +oGX +aws +aws +aAF +aWp +ajI +aKx +aKx +ajo +asa +acQ +aKK +aKK +aKK +aHW +aPx +asa +ajB +aqN +aqN +aiU +asa +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(70,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +anW +anW +aOL +aOL +aOL +aOL +aZD +anW +anW +aOL +aOL +aOL +aOL +anY +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +oGX +aws +aws +oGX +oGX +iHZ +aws +aws +aws +aws +aws +arz +aws +arz +oGX +arz +aws +arz +avF +arz +aws +arz +oGX +aws +oGX +aws +aws +oGX +aws +aAF +azX +ajI +aKx +haB +ajo +asa +abC +aKK +aKK +aKK +azL +aZA +asa +aWt +aqN +aqN +aWl +asa +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(71,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +anW +anW +aOL +aOL +aOL +aOL +aZD +anW +anW +aOL +aOL +aOL +aOL +anY +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +oGX +aws +oGX +oGX +aws +iHZ +iHZ +iHZ +iHZ +oGX +oGX +aws +aws +aws +aws +oGX +aws +aws +avF +oGX +aws +aws +aws +aws +aws +aws +aws +oGX +oGX +aAF +azX +ajI +aKx +aKx +ajo +asa +aYt +aKK +aKK +aKK +aAF +azL +aix +ajB +aqN +aqN +aiU +aDC +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(72,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +anY +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aWL +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +oGX +aws +aws +aws +aws +aws +aws +aws +aws +aws +aAF +aTh +aTh +aTh +auA +ajo +asa +asa +aKK +aHd +aKK +aKK +azL +aXn +aWt +aqN +apV +aWl +asa +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(73,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +anW +anW +aqp +anW +anW +anW +anW +aqp +anW +anW +anW +anW +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +azv +azv +azv +mwU +azv +azv +azv +avF +avF +avF +avF +azv +azv +azv +mwU +azv +azv +azv +avF +azv +azv +azv +mwU +azv +azv +azv +avF +avF +avF +aAF +aAF +aAF +aAF +aAF +aAF +dGP +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +aAF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(74,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aWL +aXr +aXr +aXr +amZ +aXr +aDe +aXr +aXr +aXr +aXr +aXr +amZ +aXr +aXr +aXr +aXr +aXr +aXr +aXr +amZ +aXr +aXr +amZ +aXr +aXr +aXr +aXr +aXr +aXr +aXr +amZ +aXr +aXr +aXr +aXr +aXr +aXr +aXr +amZ +aXr +aXr +amZ +aXr +aXr +aXr +aXr +aXr +aXr +aXr +amZ +aXr +aXr +aXr +aXr +aXr +aXr +aXr +amZ +aAO +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(75,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aAs +agw +agw +aVy +aws +aws +aws +aws +aws +aws +aws +avF +aXr +axv +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aLl +aXr +aqT +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aba +aXr +aXr +amb +aDz +aAu +aAf +aIh +aQF +aWm +aAf +aIh +aQF +aWm +aAf +aIh +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(76,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aAs +agw +agw +aVy +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aQg +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aol +adm +alE +aVZ +aVs +amP +amc +aVZ +aVs +amP +amc +aVZ +aVs +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(77,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aKA +aAs +agw +agw +aVy +aws +aws +aws +avi +avi +avi +asp +avF +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aNl +aTb +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aol +adm +aCX +aXe +aXe +aXe +aXe +aXe +aXe +aXe +aXe +aXe +aXe +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(78,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +avi +avi +avi +asp +avF +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aol +adm +aCX +aXe +aXe +aXe +aXe +aXe +aXe +aXe +aXe +aXe +aXe +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(79,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +aGz +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aPX +aXr +adT +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aqg +awB +awB +awB +ayr +aXr +aXr +aol +adm +aVZ +aXe +aXe +ark +aVZ +aVZ +aVZ +aVZ +ark +aXe +aXe +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(80,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aTb +aXr +aXr +aXr +aXr +aTz +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aTz +aXr +aXr +aTz +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aTz +aXr +aXr +aXr +aXr +aXr +aXr +aTz +aXr +aXr +aTz +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aTz +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +aol +adm +aVZ +aXe +aXe +ark +aVZ +aCX +abA +aVZ +ark +aXe +aXe +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(81,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +atW +avi +avi +avi +avi +aws +aws +aws +avi +avi +avi +asp +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +aXr +aXr +alJ +alJ +mpc +alJ +aMX +aMX +aMX +aMX +aMX +alJ +avF +tUy +avF +azv +azv +avF +avF +avF +avF +avF +fVR +azv +azv +azv +azv +azv +avF +avF +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +amb +aDz +abw +aXe +aXe +ark +aVZ +aCX +aCX +aVZ +ark +aXe +aXe +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(82,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +atW +avi +avi +avi +avi +aws +aws +aws +avi +avi +avi +asp +avF +ahq +aPG +awB +awB +awB +ayr +aSv +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +asd +asd +aLi +aWC +aAd +aAn +aER +aER +aER +aER +aER +alJ +aCO +aLx +aTn +aLx +aLx +aLx +acp +avW +aZp +aCX +aCX +aBf +aBf +aIO +awF +aRM +aEP +avF +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +aXr +otF +aXe +aXe +aXe +ark +aVZ +aCX +aCX +aaK +awX +aXe +aXe +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(83,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +aLi +ajD +abV +aAn +aER +ayK +aER +ayK +aER +alJ +aAc +aLx +aLx +aIt +aax +aLx +agD +avW +aZp +aCX +aCX +abx +abx +abx +aXK +aVS +aVS +avF +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +aXr +otF +aXe +aXe +aXe +ark +aVZ +aCX +aCX +aCX +aXe +aXe +aXe +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(84,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +aLi +axM +abV +aAn +aER +aER +aER +aER +aYq +alJ +aiS +aLx +aLx +aQd +aax +aLx +aIv +avW +aYh +aCX +aCX +abx +abx +abx +abx +abx +abx +avF +aXr +aPG +awB +awB +awB +ayr +aXr +awz +aUx +aDz +anf +aXe +aXe +aCm +aCT +aCX +aCX +aVW +aXe +aXe +aXe +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(85,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +adI +ajL +ajL +ajL +ajL +aws +aws +aws +avi +avi +avi +asp +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +aLi +abV +abV +aAn +aER +ayK +aER +ayK +aER +alJ +aya +aLx +aLx +aLx +aLx +aLx +aCO +avW +aPc +arc +ajv +abx +abx +abx +abx +abx +abx +avF +aXr +aPG +awB +awB +awB +ayr +aKm +aYl +aYl +aDz +ayy +avy +avy +avF +avF +aDz +asl +aDz +avy +avy +ayy +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(86,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +adI +ajL +ajL +ajL +ajL +aws +aws +aws +avi +avi +avi +asp +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +aLi +abV +abV +awI +aER +aER +aER +aER +aER +alJ +aEh +aLx +aLx +aax +aEV +aLx +aCO +avW +aFw +aCX +ajv +abx +abx +abx +abx +abx +abx +avF +aXr +aPG +awB +awB +awB +ayr +aPG +awB +awB +aDz +avY +aVZ +aIh +aDz +aOz +aCX +aCX +aDz +aAu +aVZ +acg +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(87,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +aLi +aOk +alJ +aLi +ayK +aEF +ayK +aiZ +ayK +alJ +aPQ +aFi +aFi +aQj +aax +aLx +aCO +avW +aCX +aCX +aJI +abx +aBf +aBf +aCJ +apd +aWg +avF +aXr +aPG +awB +awB +awB +ayr +aPG +awB +awB +aDz +alE +aVZ +aVs +aDz +ayQ +aCX +aCX +aDz +alE +aVZ +aVs +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(88,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +asG +aJl +aLi +abV +aYY +alJ +aBL +alJ +alJ +alJ +alJ +alJ +avF +aaN +aWH +avF +avF +aAC +avF +avF +aPT +avF +avF +avF +avF +avF +avF +avF +avF +avF +aXr +aPG +awB +awB +awB +ayr +aPG +awB +awB +avF +aUS +aUS +aUS +aDz +acN +aCX +adJ +avF +aUS +aUS +aUS +avF +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(89,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aFG +aNF +aNF +aNF +aNF +aws +aws +aws +aNF +aNF +aNF +aiE +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +aLi +aZk +abV +aUt +amO +aCx +aKP +alJ +aKt +aCX +ays +aYV +aCX +aXS +aMS +aCX +apq +aJl +aJl +aJl +avb +avF +aAV +aAV +aAV +aAV +aAV +arb +aXr +aPG +awB +awB +awB +ayr +aPG +awB +awB +awB +awB +awB +awB +aYl +aYl +aYl +aYl +aYl +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(90,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aFG +aNF +aNF +aNF +aNF +aws +aws +aws +aNF +aNF +aNF +aiE +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +avF +avF +avF +avF +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +aLi +abV +aLj +aKr +atE +abV +aEj +alJ +aNV +aCX +aCX +aXw +aUH +aCX +aCX +aCX +avF +akF +aJl +aEa +aYA +avF +aAV +aAV +aAV +aAV +aAV +agK +aXr +aPG +awB +awB +awB +ayr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(91,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +aws +aws +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +aLi +abV +abV +abV +apH +abV +anC +alJ +aLd +alj +aCX +aWh +aAP +aCX +aUO +aCX +avF +aIM +aJl +aIk +aCu +avF +aAV +aAV +aCX +aCX +aCX +avF +aXr +aPG +awB +awB +awB +ayr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(92,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aqT +wFu +wFu +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +avF +avF +aZN +aCX +aCX +aCX +aCX +aCX +avF +azq +aJl +avF +avF +avF +aAV +aAV +aCX +aCX +aCX +avF +aXr +aPG +awB +awB +awB +ayr +adT +aOa +aOa +aOa +akB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(93,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aFG +aNF +aNF +aNF +aNF +aws +aws +aws +aNF +aNF +aNF +aiE +avF +aXr +aPG +awB +awB +awB +ayr +aPG +agw +agw +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +avF +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +avF +aZN +ahm +aHN +aAu +aiM +ahX +avF +aJl +aJl +avF +aCX +aCX +aAV +aAV +aCX +aCX +aCX +avF +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +aXr +azK +aJM +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(94,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aFG +aNF +aNF +aNF +aNF +aws +aws +aws +aNF +aNF +aNF +aiE +avF +aXr +aPG +awB +awB +awB +ayr +aPG +agw +agw +aws +aws +avF +aws +aws +aws +aws +aws +aws +aws +avF +acl +aJl +arf +anF +adi +aJl +aJl +aJl +aJl +aJl +aCS +avF +auO +aWE +aEf +aPY +aeD +aHO +avF +aJl +aJl +avF +aCX +aCX +aAV +aAV +aCX +aCX +aCX +avF +aXr +adT +aDP +aqA +aOa +aPX +aXr +aXr +aXr +axs +aJM +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(95,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +ahq +aPG +awB +awB +awB +ayr +tJW +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +asG +aqR +aRw +aGi +aCS +aRw +aRw +aRw +aRw +aJl +aJl +avF +avF +avF +avF +avF +avF +avF +avF +aJl +aJl +avF +avF +avF +avF +avF +avF +avF +avF +avF +ahq +aXr +aXr +aXr +aXr +aXr +aXr +aZg +aXr +aXr +aJM +awB +awB +awB +awB +awB +awB +awB +awB +awB +aOm +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(96,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +awT +aJl +aJl +aJl +aqj +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +ajT +aJl +aJl +apz +auQ +auQ +aRw +asG +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +awT +aXr +aXr +aqT +aDn +aDn +aDn +aLl +aXr +aXr +aXr +azK +aJM +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(97,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aFG +aNF +aNF +aNF +aNF +aws +aws +aws +aNF +aNF +aNF +aiE +avF +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +awT +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +apz +auQ +auQ +aRw +apn +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aJl +aqY +aJl +aJl +aJl +aJl +aJl +aJl +aJl +awT +aXr +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +aXr +axs +aJM +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(98,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aFG +aNF +aNF +aNF +aNF +aws +aws +aws +aNF +aNF +aNF +aiE +avF +ahq +aPG +awB +awB +awB +ayr +aSv +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +avF +acD +acD +acD +acD +acD +acD +acD +auQ +auQ +auZ +auZ +auZ +arD +auZ +auZ +auZ +auZ +auZ +auZ +auZ +auZ +atJ +atJ +aTI +atJ +atJ +atJ +atJ +atJ +atJ +atJ +ahq +aPG +awB +awB +awB +ayr +aqT +aDn +aDn +aDn +aUm +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(99,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +acD +aFK +alH +azk +aeg +aNh +acD +auQ +auQ +aDN +aLP +pxB +aQl +aOl +aQl +aQl +aQl +aRR +aRH +aFC +auZ +aZy +aZy +afT +atr +afT +atr +afT +atr +afT +atJ +aXr +aPG +awB +awB +awB +ayr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(100,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +acD +aCN +uHj +arM +arQ +amQ +acD +aJl +aJl +aDN +awM +aqi +aFB +aDN +aiP +aVi +aQl +aQl +aQl +aQl +auZ +aYk +aZy +afT +atv +afT +atv +afT +atv +urj +atJ +aXr +aPG +awB +awB +awB +ayr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(101,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +avF +avF +avF +aPZ +avF +aLI +aws +aws +avF +avF +avF +avF +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +acD +aeJ +ahn +arM +arQ +aKg +acD +acD +lWC +acD +auZ +auZ +auZ +aDN +nUH +aFe +awC +aFz +xjy +aQl +auZ +aZy +aPH +aZy +aZy +aZy +aZy +aZy +aZy +aZy +dMM +aXr +aPG +awB +awB +awB +ayr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(102,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +avF +aPy +aws +aws +abz +aBg +ahh +ahh +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +acD +aiz +ahn +arM +arQ +arQ +aCt +aPq +afg +agO +aIG +aNQ +aJK +auZ +auZ +aDN +aED +aLB +aDN +aMk +auZ +aZy +aZM +aZy +aZy +aZy +aZy +aZy +aZy +aRj +dMM +aXr +aPG +awB +awB +awB +ayr +adT +aOa +aOa +aOa +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(103,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +avF +aPy +aws +aws +abz +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +acD +aiY +amJ +arM +arQ +arQ +arQ +arQ +arQ +agO +azs +aQl +aLu +aDN +aQl +aRR +aQl +aQl +aQl +aQl +auZ +aYk +aZy +afT +atr +afT +atr +afT +atr +urj +atJ +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +aXr +aXr +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(104,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +avF +agA +aws +aws +aBD +aws +aws +aYN +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +acD +aGh +alH +alo +arQ +arQ +amU +arQ +aoS +agO +aQl +aQl +aQl +aOl +aQl +aQl +aQl +aQl +aQl +aQl +auZ +aZy +aZy +afT +atv +afT +atv +afT +atv +afT +atJ +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +aXr +aXr +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(105,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +avF +aPy +aws +aws +avF +avF +avF +avF +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +acD +acD +acD +acD +arQ +acD +acD +acD +acD +acD +auZ +auZ +auZ +auZ +aDN +acW +aQl +aQl +aQl +acW +auZ +auZ +atJ +alZ +atJ +atJ +atJ +atJ +atJ +ayW +atJ +aXr +aPG +awB +awB +awB +ayr +aSv +aYl +aYl +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(106,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +avF +aPy +aws +aws +abz +aBg +ahh +ahh +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +acD +arQ +atN +aze +aYe +ang +aDu +axK +afC +amf +agL +aDN +acW +aQl +aQl +aQl +acW +acW +auZ +abp +afT +aOu +anP +atJ +aCF +apk +acj +atJ +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +aXr +aUp +aEX +avX +app +aBQ +acX +aGR +aUp +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(107,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +avF +aee +aws +aws +abz +aws +aws +aws +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +acD +lWC +atN +aaP +atU +agR +axf +agR +afC +amf +amf +aKl +aQl +aQl +aQl +aQl +aQl +aQl +auZ +abp +afT +afT +aAo +atJ +alZ +atJ +atJ +atJ +aXr +aPG +awB +awB +awB +ayr +aXr +awn +aMR +aEX +agQ +acX +acX +acX +acX +aGR +aUp +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(108,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +avF +aee +aws +aws +aBD +aws +aws +aYN +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +aEE +aAw +aFd +atn +atU +agR +aDu +agR +aYf +aLR +anK +aDN +aQl +aQl +aQl +aQl +aQl +aQl +auZ +afh +afT +afT +afT +afT +afT +aWX +aen +atJ +aXr +aPG +awB +awB +awB +ayr +aXr +aNL +aNL +aEX +aip +acX +acX +acX +ahR +asu +aUp +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(109,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +avF +avF +avF +avF +avF +avF +avF +avF +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +avF +axC +aAw +aDu +aKz +acs +aau +aDu +aGo +aTJ +ash +aNp +aDN +acW +acq +aJy +aQl +acW +acW +auZ +aid +anw +afT +afT +afT +anw +aWX +aNZ +atJ +ahq +aPG +awB +awB +awB +ayr +aXr +aIN +aZc +aUp +aUp +aEX +aOB +aEX +atg +aUp +aUp +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(110,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +aws +aws +aws +aws +aws +aws +aws +avF +avF +avF +avF +avF +avF +avF +aXr +aXr +auZ +auZ +auZ +auZ +auZ +auZ +auZ +auZ +auZ +auZ +auZ +ueY +auZ +auZ +auZ +auZ +auZ +atJ +atJ +atJ +atJ +atJ +atJ +atJ +atJ +atJ +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +awz +aoE +asA +akc +ajY +azo +azo +are +aEk +awB +awB +awB +awB +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(111,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +avF +ahq +aPG +awB +awB +awB +ayr +aSv +avF +aws +aws +aws +aws +aws +aws +aws +avF +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +amZ +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +amZ +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +amZ +aXr +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +awz +aoE +arJ +axj +awd +aUz +gPN +nph +aUp +aUp +aEk +aEk +aUp +aUp +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(112,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +avF +aXr +aPG +awB +awB +awB +ayr +aXr +avF +avF +avF +avF +avF +avF +avF +avF +avF +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aqT +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aLl +aXr +aqT +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aDn +aCd +awB +awB +awB +ayr +aXr +aXr +agU +aoE +aLn +azo +arZ +aUz +gPN +jfA +aoE +aTX +azo +azo +azo +aUp +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(113,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +aib +avF +aXr +aPG +awB +awB +awB +ayr +aXr +aXr +amZ +aXr +aXr +aXr +aXr +aXr +aXr +amZ +aXr +aXr +gcK +gcK +aXr +gcK +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aUx +aoE +avQ +azo +azo +aUz +aUz +afv +aaI +azo +aie +awa +aUz +aUp +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(114,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +avF +aPZ +aiV +aiV +aiV +aiV +aiV +aiV +aiV +aiV +aiV +aiV +aiV +aXr +adT +aOa +aOa +aOa +aPX +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +gcK +aTb +aXr +gcK +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aNl +aTb +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +awn +aMR +aoE +aVN +aGN +azo +azo +azo +azo +aoT +azo +aie +aMs +aZn +aUp +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(115,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +axo +apl +aey +aqP +axo +ayC +ayC +ayC +ayC +ayC +aiV +aXr +aqT +aDn +aDn +aDn +aDn +aDn +aYl +aYl +awB +awB +awB +aYl +aYl +aDn +aDn +aLl +aXr +gcK +gcK +gcK +gcK +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +aQg +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aNL +aNL +aoE +amX +aXG +azS +anc +aRt +azo +aaI +are +axW +aYr +aDS +aUp +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(116,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +axo +arW +ama +akv +axo +aQx +ayC +ayC +ayC +aQL +iRP +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aXr +aXr +aXr +aXr +adT +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aPX +aXr +adT +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aJk +aXr +aIN +aZc +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +aUp +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(117,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +axo +apS +ama +ama +adG +ayC +ayC +aVL +ayc +apO +aRn +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aTz +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aTz +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aTz +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aXr +aYl +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(118,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +axo +aLY +ama +ama +aTx +ayC +ayC +aVL +ayc +apO +aRn +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +aUx +aXr +aXr +aYl +aYl +aYl +aYl +uVj +osE +nZe +glA +ued +ued +bvD +ued +ued +fLs +fLs +ued +ued +ued +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(119,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +axo +asf +ama +ama +ayc +ayC +ayC +avP +pPB +avP +aRn +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aCk +aBi +aBi +ayR +ayR +aUI +aNb +ayZ +aDM +agY +aDT +arm +aMN +aEd +ayZ +aAY +aMN +aeb +ayZ +awz +aXr +aFf +aYl +anJ +anJ +lCz +gsP +aUu +jCI +viX +ofB +jxp +aNN +sQh +kno +sQh +sQh +eyv +sQh +sQh +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(120,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +axo +aJT +ama +ama +aKw +ayC +ayC +avP +avP +avP +aRn +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aXx +aRT +auu +auu +auu +aPV +aOs +ayZ +aMb +aou +afA +azf +aNy +agB +ayZ +agB +aNy +apB +ayZ +ayZ +akM +akM +ayZ +aXV +anJ +lCz +hyM +jCI +mfI +bZg +ofB +wlm +sQh +sQh +vPZ +oUI +sQh +vPZ +oUI +sQh +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(121,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +axo +afL +ama +ama +axo +ayC +ayC +aVL +ayc +apO +aiV +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aXx +auu +auu +auu +auu +aPV +aPV +abo +aou +aou +aou +aTW +air +air +air +air +air +air +ayZ +ait +air +air +ayZ +aHZ +aIw +lCz +mcL +jCI +jCI +wqy +ofB +ewS +sQh +sQh +sQh +ckt +sQh +sQh +sQh +wsj +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(122,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +axo +aDB +ama +akv +axo +aQx +ayC +aVL +ayc +apO +aiV +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aCk +ari +axY +dan +aPV +wGE +aPV +ayZ +aou +xzM +aou +aTW +air +air +alG +air +air +air +avm +air +air +air +azQ +alt +alt +lCz +dsE +bfr +jCI +eJa +ofB +oqU +sQh +sQh +sQh +sQh +sQh +ggn +oUI +sQh +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(123,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +axo +aob +ama +ama +aDF +avP +avP +avP +avP +avP +aiV +ahq +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aSv +aCk +azj +aPb +abP +aHz +aPV +aPV +ayZ +aou +aCD +aLv +auh +air +aSr +aeb +aDj +air +air +avm +air +air +ald +ayZ +alt +alt +lCz +tPa +jCI +clH +enr +ofB +bPr +sQh +sQh +sQh +sQh +sQh +vxJ +sQh +yiH +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(124,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aiV +aiV +aiV +auP +axo +aro +avP +avP +avP +avP +aiV +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aXx +aIP +aND +asm +aUA +aPV +aPV +ayZ +aou +aou +aLv +aNr +air +ayZ +ayZ +aUU +ayE +ayZ +ayZ +aGJ +air +ahF +ayZ +aXV +aXV +aXV +aRi +aRi +aRi +aRi +aRi +aRi +aRi +ued +ofB +dFh +ued +ued +ued +ued +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(125,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +aib +aib +aib +aRz +aUh +aib +aiV +axo +aro +aVL +ayc +apO +aiV +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +aXk +azD +awB +awB +awB +awB +awB +ayr +aXr +aXr +aXx +aDO +asm +asm +aWN +aPV +aOs +ayZ +aGe +aou +aLv +aNr +air +ayZ +aux +aGr +air +aBW +ayZ +aFn +air +ahF +akx +aIL +aEK +aFZ +aDJ +aqs +aGa +aDU +aDJ +aDJ +qae +tRn +sQh +sQh +sQh +sQh +sQh +yiH +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(126,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +azJ +aib +aib +aib +aib +aib +aib +aiV +axo +aVL +ayc +apO +aiV +aXr +aPG +awB +awB +awB +awB +awB +awB +axO +aYl +aYl +aTR +awB +awB +awB +awB +ayr +aXr +aXr +aCk +aDx +abL +asm +axx +aPV +aPV +ayZ +aou +aou +arg +ahS +awV +ayZ +aet +aGr +aGr +aEI +ayZ +aEi +air +air +akx +aIL +aEK +dwx +aDJ +aDJ +aDJ +aDJ +aDJ +aDJ +qae +bSD +sQh +sQh +mrg +sQh +sQh +wsj +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(127,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +avF +avF +avF +avF +avF +aib +aib +aib +aiV +aiV +aiV +aiV +aiV +aXr +aPG +awB +awB +awB +awB +awB +awB +axO +aLW +aYl +aTR +awB +awB +awB +awB +ayr +aXr +aXr +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +aKO +air +aGr +aVM +aGP +afO +afO +afO +aEM +ads +aDJ +aDJ +aDJ +aDJ +aDJ +aDJ +aDJ +ayF +qae +jzn +sQh +nEH +fmw +spN +sQh +sQh +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(128,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +atP +azY +alk +aLo +avF +avF +aib +aib +aib +aib +aib +aib +avF +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +aNs +aNs +awB +awB +awB +awB +awB +ayr +aXr +aXr +aYl +aON +aJo +apC +aIu +aAN +aHA +aBN +aGB +aWK +akW +ayZ +aaZ +aEr +air +air +air +aly +aGP +asL +asL +asL +aEM +aCQ +aDJ +aDJ +aIm +ajd +apr +tiu +aDJ +aDJ +qae +bPH +sQh +rAl +hSW +sQh +sQh +sQh +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(129,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +aJV +aoL +aoL +aoL +aoL +awr +aib +aib +aib +aib +aib +aib +alP +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aYl +anD +aXr +aXr +aXr +aAN +aLf +als +als +abB +akW +ayZ +asw +aKM +air +aFp +air +aTt +aGP +asL +asL +asL +aGP +aRi +aRi +aAx +agV +aRi +aRi +aRi +aNM +azN +aRi +aRi +aRi +ued +ued +uwH +nHO +ued +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(130,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +aqG +aoL +aoL +aOT +avF +avF +acu +avF +avF +avF +avF +avF +avF +ahq +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aSv +aYl +aUx +aXr +aXr +aXr +aAN +aZF +ahp +aaM +aWK +aXO +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +aGP +aGP +aGP +aGP +aYO +aIL +aIL +aIL +aIL +aIL +aIL +aNM +aIp +aJG +acA +hUx +ukE +qbP +toJ +eKL +eKL +mtZ +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(131,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +ach +aoL +aYP +aoL +arA +aMJ +aCX +agb +atX +aAu +agb +aIh +azv +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aYl +aXr +aXr +aXr +aXr +aYl +aBd +akW +akW +akW +akW +aOo +avK +ajC +adC +aIK +anq +aHT +aIK +aXR +atS +atS +aiK +aIL +aIL +aIL +aIL +aIL +aIL +arq +aQY +aFR +aFR +aeY +ukE +whz +xQL +eBu +eBu +hFN +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(132,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +aAj +aox +aYm +aJn +aym +aMJ +aCX +aqF +aTi +aoI +aeZ +aVa +azv +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aiw +aXr +aTa +aXr +aXr +agh +akW +akW +akW +akW +akW +akW +akW +ajC +acr +ajG +ajG +ajG +ajG +aIK +aqc +fLp +aiK +aIL +aIL +aIL +aIL +aIL +aIL +arq +akd +aSl +aFR +aJG +ukE +tUH +bSP +eBu +eBu +eKL +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(133,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +aCX +aCX +aCX +aCX +aCX +aCX +aCX +aCX +aCX +aCX +aCX +aCX +avF +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aYl +aRO +aXr +aXr +aXr +aYl +aYl +aYl +aCU +aBM +aao +aao +aao +ajC +aXp +ard +axF +aJN +aIj +aIK +aYo +aEO +aiK +aIL +aIL +aIL +aIL +aIL +aIL +aNM +awc +aYd +aFR +apR +ukE +clL +rZM +eKL +eKL +hmf +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(134,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +agg +aCX +aCX +aCX +aCX +abA +aCX +aCX +aCX +aCX +aCX +aCX +lDD +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aYl +amL +aNL +aXr +aXr +aXA +anT +anT +anT +aKo +aKo +aKo +aKo +ajC +iaz +ard +aMw +aGE +aIj +aIK +aWf +ajG +aiK +aIL +aIL +aIL +aIL +aIL +aIL +aNM +axh +afF +aJG +aJG +aRi +ued +gqS +qNv +qNv +qNv +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(135,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +aTO +aCX +aCX +aCX +aCX +aCX +aCX +aCX +aCX +aCX +aCX +aCX +avF +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aYl +aXB +aNL +aXr +aXr +azh +avj +anT +aOO +aKo +aZr +aWa +azr +ajC +aZw +ard +afH +aOE +aIj +aIK +aWf +aCH +aiK +aIL +aIL +aIL +aIL +aIL +aIL +aRi +aRi +aNM +aWY +aRi +ukE +mPi +eBu +eBu +eBu +eBu +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(136,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +aPa +abE +aZT +aYD +aPa +abE +aBl +aYD +aPa +abE +aBl +aYD +azv +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aYl +aqk +aNL +aXr +aXr +azh +akS +anT +anB +akC +awx +awx +awx +aRy +aIK +ajG +ajG +ajG +ajG +aIK +uas +abs +aiK +aIL +aIL +aIL +aIL +aIL +aIL +aNM +pnj +aXC +aXC +aXC +ukE +uTV +eBu +eBu +eBu +eBu +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(137,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +awL +aMJ +alE +aSm +aVs +aMJ +alE +aeV +aVs +aMJ +alE +aeV +aVs +azv +aXr +aPG +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +awB +ayr +aXr +aXr +aYl +apI +aXr +aXr +aXr +azh +hSR +anT +awq +aKo +aPg +akD +awx +ajC +ayY +aZh +aIK +aIK +aIK +aIK +ajP +alV +aiK +aCI +aCI +aCI +aCI +aCI +aCI +aNM +ams +aXC +mqH +aKE +ukE +cnl +dvM +eBu +eBu +ncK +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(138,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +avF +avF +avF +avF +azv +azv +azv +avF +azv +azv +azv +avF +avF +avF +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aKo +aKo +aKo +aKo +aKo +aKo +aKo +avh +avh +avh +avh +aKo +aKo +aKo +aRi +aRi +aRi +aRi +aRi +aRi +aRi +aRi +aRi +aRi +aRi +aRi +ued +ued +wMx +wMx +ued +ued +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(139,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(140,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(141,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(142,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(143,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(144,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(145,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(146,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(147,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(148,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(149,1,3) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(150,1,3) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} + +(1,1,4) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} +(2,1,4) = {" +aFc +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(3,1,4) = {" +aFc +uuB +uuB +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(4,1,4) = {" +aFc +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(5,1,4) = {" +aFc +uuB +uuB +uuB +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(6,1,4) = {" +aFc +uuB +uuB +uuB +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(7,1,4) = {" +aFc +uuB +uuB +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(8,1,4) = {" +aFc +uuB +uuB +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(9,1,4) = {" +aFc +uuB +uuB +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(10,1,4) = {" +aFc +uuB +uuB +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(11,1,4) = {" +aFc +uuB +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(12,1,4) = {" +aFc +uuB +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(13,1,4) = {" +aFc +uuB +vAL +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(14,1,4) = {" +aFc +vAL +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(15,1,4) = {" +aFc +vAL +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(16,1,4) = {" +aFc +vAL +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(17,1,4) = {" +aFc +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(18,1,4) = {" +aFc +vAL +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(19,1,4) = {" +aFc +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(20,1,4) = {" +aFc +vAL +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(21,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(22,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(23,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(24,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(25,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(26,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(27,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(28,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(29,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(30,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(31,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(32,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(33,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(34,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(35,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(36,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(37,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(38,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(39,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(40,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(41,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(42,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(43,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(44,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(45,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(46,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(47,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(48,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(49,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(50,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(51,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(52,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(53,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(54,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(55,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(56,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(57,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(58,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(59,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(60,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(61,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +akZ +aik +akZ +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +axn +aOU +aOU +axn +aOU +aOU +axn +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(62,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aik +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aDs +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(63,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +akZ +aOU +akZ +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +abu +aOU +abu +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aYS +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +auy +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(64,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aik +aOU +aOU +aOU +aOU +aNk +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +abu +aOU +abu +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aYS +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aDs +aOU +aOU +aOU +aOU +aOU +aUW +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(65,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aNk +aQp +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aYS +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aYS +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(66,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aik +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +abu +aOU +abu +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aYS +aYS +aYS +aYS +aYS +aYS +aYS +aYS +aYS +aYS +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(67,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aQp +aOU +aOU +aNk +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +abu +aOU +abu +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(68,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aDs +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +awK +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(69,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aik +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +abu +aOU +abu +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aYS +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +awK +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(70,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +abu +aOU +abu +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aYS +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +awK +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(71,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aYS +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(72,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +ayM +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(73,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(74,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(75,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +agJ +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(76,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(77,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(78,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(79,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(80,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(81,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +agJ +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(82,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(83,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(84,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(85,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(86,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(87,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(88,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(89,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(90,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +agJ +aQp +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(91,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +axn +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(92,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aQp +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(93,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +agJ +aQp +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +awK +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(94,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aQp +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(95,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aUv +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(96,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(97,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(98,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(99,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(100,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(101,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(102,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(103,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(104,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(105,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(106,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +agJ +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(107,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(108,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(109,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(110,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(111,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(112,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +agJ +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(113,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(114,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +axn +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(115,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(116,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(117,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(118,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aQN +aQN +aQN +aQN +aQN +aQN +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(119,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +ayJ +aOU +aOU +aOU +aOU +aQN +afs +afs +afs +afs +aQN +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(120,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOF +aXL +anZ +aXL +aoo +aLS +aOU +aQN +afs +aUN +afs +afs +aQN +aQN +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(121,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +acS +aOU +aNk +aOU +acS +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aRf +aSN +aSN +aSN +aXj +aRu +aOU +aQN +aCc +asn +aUE +afs +afs +aQN +apc +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(122,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aRf +arB +aSN +arB +aXj +aLS +aOU +aQN +asn +asn +aUE +afs +afs +avc +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(123,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aNk +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aeq +aSN +aSN +aSN +aXj +aRu +aFy +aQN +asn +asn +aUE +afs +afs +aQN +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(124,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aQp +aOU +aOU +aOU +aQp +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aQf +aNx +aNx +aNx +abe +aLS +aOU +aQN +aQN +aQN +aQN +aQN +aQN +aQN +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(125,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +acS +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +axn +aOU +axn +aSe +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(126,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +acS +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(127,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aNk +aOU +aOU +aOU +aQp +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(128,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(129,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +acS +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(130,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +acS +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(131,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(132,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(133,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(134,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(135,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(136,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aAT +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(137,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aOU +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(138,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +aVD +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(139,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(140,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(141,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(142,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(143,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(144,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(145,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(146,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(147,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(148,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(149,1,4) = {" +aFc +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +ahY +aFc +"} +(150,1,4) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} + +(1,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} +(2,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +aFc +"} +(3,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +auM +auM +auM +auM +aSE +aeB +auM +aHn +ayh +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(4,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +arI +arI +arI +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +arI +arI +arI +arI +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +auM +auM +auM +auM +aBu +auM +aHn +aHn +ayh +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(5,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +arI +arI +arI +arI +arI +aLD +arI +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +auj +aTe +auj +auj +arI +arI +arI +arI +arI +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +auM +auM +aSE +auM +auM +auM +aHn +aLm +aoY +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(6,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +arI +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +anr +aTe +aTe +aTe +aTe +aTe +aTe +aTe +aTe +arI +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +auM +auM +aBu +auM +auM +aHn +aHn +ayh +aGp +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(7,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aXX +aXX +aXX +aXX +aXX +aXX +aXX +aWd +aWd +aTe +auj +auj +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +auM +auM +aSE +auM +auM +auM +aHn +aHn +ayh +aGp +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(8,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aXX +aXX +aXX +aXX +aXX +aXX +aXX +aXX +aWd +aWd +aWd +auj +ani +arI +arI +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +auM +auM +aBu +auM +auM +aSE +aHn +aHn +ayh +aGp +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(9,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aXX +aXX +aXX +aXX +aXX +adj +adj +aXX +aXX +aXX +aWd +aWd +aTe +aXX +arI +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +auM +auM +auM +auM +auM +aBu +aHn +aHn +ayh +aGp +aGp +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(10,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aXX +aXX +aXX +aXX +aXX +adj +adj +aXX +aXX +aXX +aXX +aXX +aXX +aXX +aTe +arI +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +auM +auM +auM +aSE +auM +auM +aHn +aHn +afK +afd +aGp +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(11,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +aFc +aFc +arI +aXX +aXX +aXX +aXX +aXX +aXX +adj +adj +adj +aXX +aXX +aXX +aXX +aWd +aTe +auj +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +auM +auM +auM +auM +aBu +auM +auM +aSE +aHn +aHn +afK +afd +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(12,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +aFc +aFc +aFc +aFc +aFc +avR +aFc +arI +arI +aXX +aXX +aXX +aXX +aXX +aXX +aWd +adj +adj +aXX +aXX +aTe +aWd +aWd +aTe +arI +arI +aFc +aFc +avR +avR +avR +avR +aFc +aFc +arI +arI +auM +auM +auM +auM +auM +auM +auM +aBu +auM +aHn +aww +ayh +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(13,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +arI +arI +arI +arI +aFc +aFc +aFc +aFc +arI +arI +aXX +aXX +aXX +aXX +aXX +aWd +aWd +adj +adj +adj +aTe +aTe +aWd +aTe +auj +arI +arI +aFc +avR +avR +avR +aFc +aFc +arI +arI +auM +auM +auM +auM +auM +auM +auM +auM +auM +auM +aHn +ayj +ayh +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(14,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +aFc +aFc +aFc +arI +arI +arI +arI +aXX +aTe +aTe +aWd +aWd +aWd +adj +adj +aTe +aWd +aTe +aTe +auj +arI +aFc +aFc +aFc +aFc +aFc +arI +arI +auM +auM +auM +auM +aSE +auM +auM +auM +aRN +aRN +aSx +aHn +aww +ayh +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(15,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +aFc +aFc +aFc +aFc +aFc +arI +arI +arI +auj +aTe +aWd +aWd +aWd +adj +adj +aTe +aTe +aTe +aTe +arI +arI +aFc +aFc +arI +arI +arI +auM +auM +aSE +auM +auM +aBu +auM +aRN +aRN +aRN +aSx +aSx +aHn +aLm +aoY +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +arI +aFc +"} +(16,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +arI +arI +aFc +aFc +aFc +aFc +aFc +aFc +aFc +arI +auj +aTe +aTe +aTe +aWd +amG +adj +aTe +aTe +aTe +aTe +aWd +arI +arI +arI +arI +aRN +aRN +auM +auM +aBu +auM +auM +auM +aRN +aRN +aRN +aSx +aSx +aSx +aHn +ayh +aGp +aGp +aGp +aXI +aXI +aXI +aXI +aXI +aXI +aGp +aGp +aGp +arI +aFc +"} +(17,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +arI +arI +arI +arI +arI +aFc +aFc +aFc +arI +aTe +aTe +aTe +aTe +aWd +aWd +adj +aTe +aTe +aTe +aTe +aTe +aTe +aTe +aTe +auj +aRN +aRN +aRN +auM +auM +auM +auM +aRN +aRN +aRN +aSx +aSx +aSx +aSx +aHn +ayh +aGp +aGp +aGp +aXI +aXI +aXI +aXI +aGp +aGp +aGp +aGp +aGp +arI +aFc +"} +(18,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +atM +atM +atM +atM +arI +arI +arI +arI +arI +atM +aTe +aTe +aTe +aWd +aWd +adj +aTe +aTe +aTe +aTe +aTe +aTe +aTe +aTe +aRN +aRN +aRN +aRN +aRN +aRN +auM +aRN +aRN +aRN +aSx +aSx +aSx +aRN +aSx +aHn +ayh +aGp +aGp +aGp +aGp +aXI +aGp +aGp +aGp +aGp +aGp +aGp +asC +arI +aFc +"} +(19,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +atM +atM +atM +atM +atM +atM +atM +atM +atM +atM +atM +atM +aTe +aWd +aWd +amG +adj +aTe +aTe +aTe +aTe +aTe +aTe +aTe +auj +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +aSx +aSx +aRN +aSx +aHn +ayh +aGp +aGp +aGp +aGp +aGp +aGp +aGp +aGp +aGp +asC +auH +aYp +arI +aFc +"} +(20,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +atM +aGX +atM +atM +atM +atM +atM +atM +atM +atM +atM +atM +aWd +aWd +aWd +amG +adj +aTe +aTe +aTe +aTe +aTe +aTe +arI +arI +ahy +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +aSx +aRN +aRN +aSx +aHn +afK +auH +afd +aGp +aGp +aGp +aGp +aGp +asC +auH +aYp +aHn +aHn +arI +aFc +"} +(21,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +atM +atM +atM +aGX +atM +atM +aGX +atM +atM +atM +atM +atM +aWd +aWd +aWd +adj +adj +aTe +aTe +aTe +aTe +arI +arI +arI +aTe +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +aRN +aRN +aRN +aSx +aHn +aHn +azg +afK +auH +auH +auH +auH +auH +aYp +aHn +aHn +aHn +aHn +arI +aFc +"} +(22,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +atM +atM +atM +atM +atM +atM +atM +atM +atM +atM +aWd +aWd +aWd +aWd +amG +adj +ani +aTe +arI +arI +arI +arI +aTe +aTe +aTe +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +aHn +aHn +aHn +aHn +aHn +azg +aHn +azg +aHn +aHn +aHn +aHn +aHn +aHn +arI +aFc +"} +(23,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +atM +atM +atM +atM +atM +atM +aGX +atM +atM +aWd +aWd +amG +arI +arI +arI +arI +arI +arI +aTe +aTe +aTe +aTe +aRN +aRN +aSx +aSx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +aSx +aHn +aHn +aHn +aHn +aHn +aHn +aSx +aSx +aSx +aSx +aSx +aSx +aSx +arI +aFc +"} +(24,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +arI +aBu +aBu +aRN +aRN +aRN +aRN +aOx +aRN +aOx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +auM +auM +atM +atM +atM +atM +atM +atM +aWd +amG +aWd +arI +arI +aTe +aTe +aTe +aTe +aTe +aTe +aWd +aWd +aRN +aRN +aSx +aSx +aSE +aSx +aSx +aRN +aRN +aRN +aRN +aRN +aRN +ajq +aRN +aRN +aSx +aSx +aSx +aSx +aHn +aHn +aSx +aSx +aSx +aSx +aRN +aRN +aSx +aSx +aSx +aSx +arI +aFc +"} +(25,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +abS +abS +abS +abS +abS +abS +abS +abS +arI +aRN +aRN +aRN +aRN +azA +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +auM +auM +auM +auM +auM +auM +auM +auM +arI +arI +arI +arI +arI +aTe +aTe +aWd +aWd +aWd +aWd +aWd +aWd +aRN +aRN +aRN +aSx +aSx +aBu +aSx +aSx +aSx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +aSx +aSx +aSx +aSx +aRN +aRN +aoc +aRN +aRN +aRN +aSx +aSx +aSx +arI +aFc +"} +(26,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +abS +abS +aHj +aDR +aQc +aQc +aQc +aDR +abS +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +aRN +auM +auM +auM +auM +auM +auM +auM +auM +auM +arI +arI +aFc +aFc +aFc +arI +aTe +aWd +aWd +aMa +aMa +aMa +aMa +aMa +aDV +aDV +aDV +aMa +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aRN +aRN +aRN +aRN +aDK +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aoc +aRN +aRN +aSx +aSx +arI +aFc +"} +(27,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +abS +aHj +aHj +aHj +aHj +aHj +aHj +aHj +abS +aRN +aRN +akj +akj +akj +akj +akj +add +add +add +akj +aRN +aRN +aRN +aRN +aRN +aOx +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +auM +auM +auM +auM +auM +auM +auM +auM +auM +auM +arI +aFc +aFc +avR +aFc +arI +aTe +aWd +aWd +aMa +aFA +asJ +aDw +aMa +aPo +asJ +auF +aMa +aMa +aMa +aSx +aSx +aSx +aSE +aSx +aSx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aoc +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +arI +aFc +"} +(28,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +akj +akj +aDR +aHj +aTZ +aDR +aHj +aHj +aHj +abS +aRN +aRN +akj +aoa +aMm +awp +akj +akj +aRZ +aeu +acF +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +auM +auM +auM +auM +auM +auM +auM +auM +auM +auM +arI +arI +aFc +avR +avR +aFc +arI +aTe +aWd +aWd +aMa +aZP +asJ +akO +aMa +akJ +asJ +asJ +anX +aHt +aMa +aSx +aSx +aSx +aBu +aRN +aRN +aRN +adX +aRN +aSp +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +ajn +aRN +aoc +aRN +aSx +aSx +arI +aFc +"} +(29,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +akj +akj +aHj +aHj +aHj +aHj +aty +aHJ +aHJ +aHJ +abS +aRN +aRN +akj +aIJ +aSO +aSO +aSO +akj +aah +aeu +axp +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +auM +auM +auM +auM +auM +auM +auM +auM +auM +arI +arI +aFc +aFc +avR +avR +aFc +arI +aWd +aWd +aWd +aMa +axu +asJ +asJ +aMa +aGC +asJ +asJ +asJ +asJ +aDV +aSx +aSx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +ajq +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +arI +aFc +"} +(30,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +avk +aUd +aHj +aHj +aHj +aHj +aEx +aBs +aSO +axJ +akj +akj +akj +akj +aaH +aSO +aSO +aSO +akj +amp +aoQ +awb +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +aRN +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +aFc +aFc +avR +avR +avR +aFc +arI +aWd +aWd +aWd +aMa +atK +asJ +asJ +aRc +asJ +asJ +asJ +asJ +asJ +aMa +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +acc +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +ajn +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +arI +aFc +"} +(31,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +avk +aUd +aHj +aHj +aHj +aHj +aOC +aUL +aSO +aSO +aSO +aSO +aSO +afP +aSO +aSO +aSO +aSO +aPB +aNB +aeu +abI +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +aRN +aRN +aRN +arI +arI +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +aFc +arI +aWd +aWd +aWd +aMa +aMa +aMa +aMa +aMa +ahO +asJ +aai +asJ +asJ +aRc +aRN +aRN +aRN +aRN +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aoc +aRN +ajn +aRN +aRN +aSx +arI +aFc +"} +(32,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +avk +aUd +aHj +aHj +aHj +aHj +aEx +aUL +aSO +aSO +akj +akj +akj +akj +alW +aKd +aKd +aKd +akj +amp +aeu +awb +aRN +aRN +aRN +aOx +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +arI +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +arI +aWd +aWd +aBB +apL +apL +aMa +aJc +asJ +asJ +asJ +asJ +aMa +aRN +aRN +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +aSx +arI +aFc +"} +(33,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +avk +aHj +aDR +agl +agl +agl +apo +aAz +aAz +aAz +abS +aRN +aRN +avk +acP +ahA +ahA +aKd +akj +aaj +aah +acF +aRN +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aZY +aqW +aWd +aan +ana +ana +aMa +ain +asJ +asJ +asJ +asJ +aDV +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aRN +aRN +aRN +aRN +aRN +aRN +aRN +ajn +aRN +aRN +aSx +aSx +aSx +arI +aFc +"} +(34,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +akj +akj +aHj +aOv +aOv +agl +agl +aOv +aug +agl +abS +aRN +aRN +avk +aGf +aYT +aYT +aKd +akj +aih +aeu +acF +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aZY +aWd +aWd +aWd +aWd +aTe +aMa +aye +asJ +asJ +aQt +asJ +aMa +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aZU +ajK +aZU +aSx +aSx +aRN +aRN +aRN +ajn +aRN +aRN +aRN +aSx +aSx +aSx +aSx +aLD +arI +aFc +"} +(35,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +abS +abS +aOv +aTk +aOv +aOv +aOv +agl +agl +abS +aRN +aRN +avk +aVY +aVY +aVY +akj +akj +aYC +aeu +acF +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aWd +aWd +aWd +aTe +aTe +aMa +aru +aXi +aOJ +aMa +aMa +aMa +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSE +aSx +awD +aKB +aKB +aKB +aZU +aSx +aSx +aRN +aRN +aRN +aRN +aRN +aRN +aSx +aSx +aSx +aLD +aLD +arI +aFc +"} +(36,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +abS +abS +abS +agl +agl +agl +abS +abS +abS +aRN +aRN +akj +akj +akj +akj +akj +add +add +add +akj +aRN +aOx +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aWd +aWd +aTe +aTe +aMa +aDV +aDV +aDV +aMa +aRN +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aBu +aZU +aKB +aKB +aKB +aKB +aKB +awD +aSx +aRN +aRN +aRN +aRN +aRN +aSx +aSx +aSx +aLD +aLD +aLD +arI +aFc +"} +(37,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +abS +agl +agl +agl +abS +aFc +arI +aRN +aRN +aRN +aGY +ayd +aGY +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aTe +aTe +aTe +aWd +aWd +aWd +aWd +aTe +aRN +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +ajK +aKB +aKB +akH +aKB +aKB +aZU +aSx +aRN +aRN +aRN +aRN +aSx +aSx +aSx +aLD +aLD +aLD +aLD +arI +aFc +"} +(38,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +abS +agl +agl +agl +abS +aFc +arI +aRN +aRN +aRN +aGY +aSL +aGY +aRN +aBh +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aTe +aTe +aTe +aTe +aWd +aWd +aWd +aSx +aSx +aSx +aSx +aMa +aMa +aMa +aSx +aSx +aSx +aZU +aKB +aKB +aKB +aKB +aKB +aZU +aSx +aSx +aSx +aRN +aSx +aSx +aSx +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(39,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +abS +agl +agl +agl +abS +aFc +arI +arI +aRN +aRN +aGY +aSL +aGY +aRN +aRN +aBu +aBu +aBu +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +arI +arI +arI +arI +arI +aWd +aSx +aSx +aSx +aSx +aMa +azy +aul +aSx +aSx +aSx +aBu +awD +aKB +aKB +aZd +ajK +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(40,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +abS +abS +abS +abS +abS +aFc +aFc +arI +aRN +aRN +aGY +aSL +aGY +aRN +aBu +aBu +aBu +aBu +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +arI +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +arI +arI +aSx +aSx +aSx +aSx +aMa +aMa +aMa +aSx +aSx +aSx +aSE +aBu +aZU +aZU +aZU +aSx +aSx +aSx +aSx +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(41,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +arI +aRN +aRN +aha +aSL +aSL +aRN +aBu +aBu +aBu +aBu +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +aLD +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aSx +aSx +aSx +aSx +aBu +aSx +aSx +aSx +aSx +aSx +aBu +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(42,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aRN +azA +aSL +aSL +aSL +aRN +aBu +aBu +aBu +aBu +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +arI +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aSx +aSx +aSx +aSE +aBu +aSx +aLD +aLD +aSx +aLD +aLD +aLD +aLD +aLD +aSx +aSx +aSx +aSx +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(43,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aRN +aio +aSL +aRN +aSL +aRN +aRN +aio +aBu +aBu +aRN +aOx +aRN +aRN +aLD +aLD +aLD +aLD +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aSx +aSx +aSx +aBu +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(44,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aRN +aSL +aSL +aRN +aha +aSL +azA +aBu +aRN +aNE +aRN +aRN +aRN +aRN +aLD +aLD +aLD +aLD +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +arI +aLD +aSx +aSx +aSE +aSx +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +auM +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(45,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aRN +aSL +aRN +aRN +aio +aSL +aRN +aPF +aPF +aPF +aRN +aRN +aRN +aRN +aRN +aRN +aRN +arI +arI +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +arI +arI +arI +aLD +aLD +aSx +aBu +aSx +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(46,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aSL +aSL +aRN +aRN +aPF +aPF +aPF +aPF +aPF +aPF +aPF +aRN +aRN +aOx +aRN +aRN +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +arI +arI +arI +arI +arI +arI +arI +aLD +aLD +aLD +aLD +aSx +aSx +aSx +aSx +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(47,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aPF +aPF +aPF +aPF +aPF +aRN +aPF +aPF +aPF +aPF +aPF +aRN +aRN +aRN +aRN +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSx +aSx +aSx +aSx +aSx +aSx +aSE +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +auM +aas +aas +aLD +aLD +aLD +aLD +arI +aFc +"} +(48,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +arI +arI +arI +arI +arI +aPF +aPF +aPF +aPF +aPF +arI +arI +arI +arI +arI +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSx +aSx +aSx +aSx +aSE +aSx +aBu +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +arI +aFc +"} +(49,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +arI +arI +arI +arI +arI +arI +arI +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSx +aSx +aSx +aBu +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(50,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +arI +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSx +aSx +aSE +aSx +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(51,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +arI +arI +arI +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSx +aSE +aSx +aBu +aSx +aSx +aSE +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +aas +auM +aas +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(52,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSx +aBu +aSx +aSx +aSx +aSx +aBu +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(53,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(54,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aSx +aKp +aKp +abZ +aKp +aKp +aKp +aSx +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(55,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aKp +aKp +aKp +aET +aET +aZi +aET +aKp +aKp +aSx +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aSE +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(56,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aKp +asJ +aLe +aKi +aKi +aBI +aEv +aBI +aKp +aKp +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aBu +aas +aLD +aLD +aLD +aLD +arI +aFc +"} +(57,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aKp +aBI +aKi +aEv +aBI +asJ +aBI +aBI +ahd +aKp +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aas +aLD +aLD +aLD +aLD +arI +aFc +"} +(58,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aKp +aBI +adO +aIX +aET +aKi +akt +axP +axP +aKp +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(59,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aKp +aBI +aET +aJd +ate +adO +aKi +aLc +aBI +aKp +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(60,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aKp +aRg +aKi +ayt +aJd +aET +aJd +ate +aKi +aKp +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(61,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aKp +adO +adO +aBK +aKi +ate +aJd +aBI +aBI +aKp +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(62,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aKp +aKp +aKp +aKp +aKp +aKp +aKp +aKp +aKp +aKp +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(63,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(64,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(65,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(66,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(67,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aSE +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(68,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aBu +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(69,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(70,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(71,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(72,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(73,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aas +aLD +aLD +aas +aas +aLD +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(74,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aas +aas +aas +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +auM +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(75,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aVw +aas +aas +aas +aas +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(76,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aOY +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aSE +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(77,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aVw +afm +aas +aas +aas +aas +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aBu +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(78,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aBu +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +auM +aas +auM +auM +auM +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(79,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +auM +auM +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(80,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +arI +aLD +aLD +aas +aas +aas +aLD +aLD +aas +aas +aas +aLD +aas +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +auM +aSE +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(81,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +aBu +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(82,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +aas +afm +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(83,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +axm +axm +axm +axm +axm +axm +axm +azd +amm +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +auM +auM +aSE +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(84,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aaa +aaa +aaa +aKc +aaa +aMh +abm +adM +aCe +auS +ajp +auS +aMh +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVj +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +aas +aBu +auM +auM +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(85,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aud +aaa +aaa +aaa +abM +aMh +aaa +aTp +aCe +aaa +aaa +aaa +aMh +aKu +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVj +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +auM +auM +auM +auM +aRN +auM +aeX +auM +auM +aLD +aLD +aLD +aLD +arI +aFc +"} +(86,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aaa +aaa +aaa +aaa +aKc +aMh +aaa +aTp +aCe +axX +aaa +aaa +aMh +aVo +aVo +aVo +aVo +aYB +ahU +aVo +aVo +aVj +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +aLD +aLD +aLD +aLD +aLD +aLD +aas +auM +aas +auM +auM +auM +auM +auM +aRN +aRN +auM +auM +auM +auM +aLD +aLD +aLD +arI +aFc +"} +(87,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aaa +aaa +aMh +aMh +aMh +aMh +aud +aTp +aCe +awy +aKc +aaa +aMh +aVo +aVo +aVo +aVo +aFP +aGc +aVo +aVo +aVj +aLD +aLD +aLD +aLD +aLD +aas +aas +aas +auM +aas +auM +aLD +aLD +aLD +aLD +aLD +aas +aas +auM +auM +aas +aas +aas +aSE +auM +aRN +aoc +aRN +aRN +auM +auM +auM +auM +auM +arI +aFc +"} +(88,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aaa +aaa +aMh +auS +auS +aMh +aku +aTp +aCe +aXz +aaa +aaa +aMh +aVo +aVo +aVo +aVo +aSg +aSG +aVo +aVo +aVj +aLD +aLD +aLD +aLD +aas +aas +auM +auM +auM +auM +auM +auM +aLD +aLD +aLD +aas +aas +auM +auM +auM +auM +auM +auM +aBu +auM +aRN +aRN +aRN +aRN +ajn +auM +auM +aeX +auM +arI +aFc +"} +(89,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aaa +aaa +aMh +alu +aKc +aPu +aaa +aTp +aFO +aYs +aaa +aaa +aMh +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aRQ +aLD +aLD +aLD +aas +aas +auM +auM +auM +aSE +aas +auM +aLD +auM +aLD +aLD +auM +auM +auM +auM +auM +aas +auM +auM +auM +auM +aRN +aRN +aRN +ajq +aRN +aRN +aRN +auM +auM +arI +aFc +"} +(90,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aaa +aaa +aMh +aaa +aaa +aMh +aaa +aaa +amS +amS +aaa +aaa +aMh +aPp +asv +aVo +aVo +aVo +aVo +aVo +aVo +aeh +asv +aas +aas +auM +auM +auM +auM +auM +aBu +auM +aas +aLD +auM +aLD +auM +auM +auM +aas +auM +auM +aSE +auM +auM +aRN +aRN +aRN +aRN +aoc +aRN +aRN +aRN +aRN +aRN +aRN +arI +aFc +"} +(91,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aud +aaa +aaa +aaa +aMh +aMh +aud +aaa +ayT +ayT +aaa +aaa +aMh +avx +awi +asv +aVo +aVo +aVo +aVo +ati +aBa +aVQ +aas +auM +auM +aas +auM +auM +auM +auM +auM +aas +aLD +auM +auM +auM +aas +auM +auM +auM +auM +aBu +auM +auM +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aoc +aRN +arI +aFc +"} +(92,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aMh +aaa +aaa +auS +aaa +aAU +aaa +aaa +aTp +aVn +asK +aku +aaa +abh +alg +alg +awi +aPp +aPp +aPp +aPp +aIc +alg +aVQ +aas +auM +aas +auM +auM +auM +auM +auM +auM +aas +auM +auM +aLD +auM +aas +aas +auM +auM +auM +aas +aLD +auM +aRN +aRN +aoc +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aiv +aFc +"} +(93,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aMh +aMh +aMh +aMh +aOr +aaa +aaa +aaa +aTp +aCe +auS +aaa +aaa +aMh +asZ +alg +alg +alg +alg +alg +alg +alg +alg +aVQ +aas +auM +auM +auM +auM +auM +auM +auM +auM +aas +auM +auM +aSE +auM +auM +auM +aSE +auM +aas +aLD +auM +auM +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aoc +aRN +aIF +aFc +"} +(94,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +api +aaa +aaa +aMh +aAU +aAU +aaa +aaa +aTp +aFO +aun +aaa +aaa +abh +alg +alg +aqS +asI +asI +asI +asI +abJ +alg +aVQ +aas +aas +auM +auM +aSE +auM +auM +auM +auM +auM +auM +auM +aBu +auM +aas +aas +aBu +aas +aas +auM +auM +aRN +aRN +aRN +aRN +ajq +aRN +aoc +aRN +aRN +aRN +aRN +aRN +arI +aFc +"} +(95,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aud +aaa +aaa +aaa +aKc +aMh +aMh +aud +aaa +amS +amS +aaa +aaa +aMh +avx +aqS +azM +aVo +aVo +aVo +aVo +amw +abJ +aVQ +aas +aas +auM +aas +aBu +aas +auM +auM +auM +auM +auM +aas +auM +auM +auM +auM +aas +aas +auM +auM +aRN +aoc +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aqt +aFc +"} +(96,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aaa +aaa +aSo +aMh +aaa +aaa +aMh +aaa +aaa +ayT +ayT +aaa +aaa +aMh +asI +azM +aVo +aVo +aVo +aVo +aVo +aVo +aPD +azM +aas +auM +aas +aas +aas +auM +auM +auM +auM +auM +auM +auM +auM +auM +aas +auM +aas +auM +auM +aRN +aRN +ajn +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +auM +aub +aFc +"} +(97,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aJi +aaa +aZW +aMh +aud +aKc +aPu +aaa +aTp +aVn +aHP +aaa +aaa +aMh +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVj +aLD +aLD +auM +aas +aas +aas +aas +aLD +aas +auM +auM +auM +aSE +aas +auM +aas +aas +auM +auM +aRN +aRN +aRN +aRN +aRN +aRN +aoc +aRN +aoc +aRN +aoc +aRN +aRN +auM +auM +arI +aFc +"} +(98,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +abb +aaa +aaa +aMh +auS +auS +aMh +aRo +aTp +aCe +aaa +afa +aRo +aMh +aVo +aVo +aVo +aVo +aYB +aXJ +aVo +aVo +aVj +aLD +aLD +auM +auM +aLD +aLD +aLD +aLD +aLD +aas +auM +aas +aBu +aas +aas +aas +auM +auM +aRN +aRN +aRN +aRN +aoc +aRN +aRN +aRN +aRN +aRN +ajn +auM +auM +aeX +auM +aLD +arI +aFc +"} +(99,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aCR +aaa +aaa +aMh +aMh +aMh +aMh +agz +aTp +aCe +aaa +aaa +ahg +aMh +aVo +aVo +aVo +aVo +aFP +aGc +aVo +aVo +aVj +aLD +aLD +aLD +auM +auM +auM +auM +auM +aLD +aLD +aas +aas +aas +aas +aas +auM +auM +aRN +aRN +aRN +aRN +aRN +aRN +aRN +aRN +ajn +auM +auM +auM +auM +aLD +aLD +aLD +aLD +arI +aFc +"} +(100,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aVt +aCf +aRl +aMh +aqL +afM +aMh +aRb +aTp +aCe +aaa +aaa +aaa +aMh +aKu +aVo +aVo +aVo +aSg +aSG +aVo +aVo +aVj +aLD +aLD +aLD +aLD +aLD +auM +aLD +auM +auM +aLD +aLD +aLD +auM +auM +auM +auM +auM +auM +auM +auM +auM +auM +aeX +auM +auM +auM +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(101,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +auS +aFE +auS +aMh +agC +aaa +aaa +aaa +aTp +aCe +aaa +aaa +anj +aMh +aKu +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVj +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +auM +auM +auM +auM +auM +aLD +aLD +aLD +auM +auM +auM +auM +aeX +auM +auM +auM +auM +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(102,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aMh +aMh +aMh +aMh +aMh +aEH +aKf +aMh +abm +adM +aCe +aMI +auS +alw +aMh +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVj +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(103,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aMh +aRL +aRL +aRL +aRL +aRL +aRL +aRL +aRL +aPK +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(104,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(105,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +aLD +arI +aFc +"} +(106,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +arI +aFc +"} +(107,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +"} +(108,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(109,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(110,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(111,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(112,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(113,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(114,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(115,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(116,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(117,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(118,1,5) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aCa +aCa +aCa +aCa +aCa +aCa +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(119,1,5) = {" +aFc +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +ayP +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(120,1,5) = {" +aFc +aCa +ayP +ayP +ayP +aWU +aCa +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aMB +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aWU +aCa +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(121,1,5) = {" +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aMB +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(122,1,5) = {" +aFc +aCa +ayP +ayP +ayP +afz +aCa +aMB +ayP +ayP +ayP +ayP +ayP +aCa +aMB +ayP +ayP +aCa +aCa +ayP +ayP +aCa +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(123,1,5) = {" +aFc +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aCa +aCa +aCa +aCa +aCa +aMB +ayP +ayP +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +aCa +aCa +aCa +aCa +aMB +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(124,1,5) = {" +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +aWU +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +aCa +aFc +aCa +ayP +ayP +ayP +aCa +aFc +aFc +aFc +aFc +aFc +aFc +aCa +ayP +ayP +ayP +aCa +aFc +aCa +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(125,1,5) = {" +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aMB +ayP +ayP +aCa +aMB +ayP +aCa +aFc +aCa +ayP +ayP +aWU +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +aCa +aFc +aCa +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(126,1,5) = {" +aFc +aCa +ayP +atB +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aMB +ayP +ayP +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +aCa +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aFc +aCa +ayP +ayP +ayP +aCa +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(127,1,5) = {" +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aFc +aFc +aFc +aFc +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +aCa +aFc +aCa +aMB +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aMB +ayP +aWU +aCa +aCa +aCa +aCa +ayP +aCa +aCa +aCa +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(128,1,5) = {" +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +aWU +aCa +ayP +ayP +ayP +aCa +aCa +ayP +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +aCa +aCa +ayP +aCa +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(129,1,5) = {" +aFc +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +aCa +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aMB +ayP +ayP +aCa +aMB +ayP +aCa +aFc +aCa +ayP +ayP +aWU +aCa +aCa +aCa +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aWU +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(130,1,5) = {" +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aMB +ayP +ayP +ayP +ayP +aGs +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aFc +aCa +ayP +aJf +ayP +aCa +aFc +aFc +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(131,1,5) = {" +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +aCa +aFc +aCa +aMB +ayP +ayP +aCa +aFc +aFc +aCa +ayP +ayP +ayP +aCa +aCa +aCa +aCa +aCa +aCa +ayP +aCa +aCa +aCa +ayP +aCa +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(132,1,5) = {" +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aCa +ayP +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +aCa +aCa +ayP +ayP +ayP +aCa +aMB +ayP +ayP +aCa +aMB +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(133,1,5) = {" +aFc +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aWU +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(134,1,5) = {" +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aCa +aMB +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aWU +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(135,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(136,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +ayP +ayP +aCa +aMB +ayP +ayP +ayP +ayP +ayP +aWU +aCa +aFc +aFc +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(137,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(138,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(139,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +aMB +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aGM +aWU +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(140,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +ayP +ayP +ayP +ayP +ayP +aCa +aMB +ayP +ayP +aCa +aMB +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(141,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +atu +ayP +aWU +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +aCa +aCa +aCa +aMB +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(142,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +ayP +ayP +ayP +aCa +aFc +aCa +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(143,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +aMB +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aFc +aCa +aCa +aPs +aCa +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(144,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aCa +aMB +ayP +ayP +aCa +aFc +aCa +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(145,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +ayP +ayP +ayP +aCa +aCa +aCa +aMB +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(146,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aCa +ayP +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(147,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +ayP +ayP +ayP +ayP +ayP +ayP +ayP +ayP +aWU +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(148,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +aMB +ayP +ayP +aCa +ayP +ayP +ayP +ayP +ayP +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(149,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} +(150,1,5) = {" +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +aFc +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +avR +"} diff --git a/_maps/map_files/debug/multiz.dmm b/_maps/map_files/debug/multiz.dmm index a856336cb46f..ba848218d2c4 100644 --- a/_maps/map_files/debug/multiz.dmm +++ b/_maps/map_files/debug/multiz.dmm @@ -1022,8 +1022,8 @@ dir = 8 }, /obj/structure/table, -/obj/item/tank/jetpack/oxygen/captain, -/obj/item/storage/belt/utility/chief/full, +/obj/item/tank/jetpack/captain, +/obj/item/storage/belt/utility/full/powertools, /obj/item/clothing/gloves/color/yellow{ pixel_y = 10 }, diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm index 1d0269d8cb14..f7bdd8885160 100644 --- a/_maps/map_files/debug/runtimestation.dmm +++ b/_maps/map_files/debug/runtimestation.dmm @@ -159,7 +159,7 @@ /obj/structure/table, /obj/item/weldingtool/experimental, /obj/item/inducer, -/obj/item/storage/belt/utility/chief/full, +/obj/item/storage/belt/utility/full/powertools, /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, @@ -254,7 +254,7 @@ /turf/open/floor/iron, /area/station/hallway/primary/central) "bF" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/iron, /area/station/science) "bI" = ( @@ -905,9 +905,8 @@ /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, +/obj/structure/sign/warning/vacuum/external/directional/west, +/turf/open/floor/iron, /area/station/hallway/secondary/entry) "fo" = ( /obj/machinery/conveyor_switch/oneway{ @@ -960,21 +959,18 @@ /turf/open/floor/iron, /area/station/cargo/bitrunning/den) "fM" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_x = 32 - }, /obj/structure/sign/directions/engineering{ dir = 1; - pixel_x = 32; pixel_y = 7 }, +/obj/structure/sign/directions/supply{ + dir = 4 + }, /obj/structure/sign/directions/evac{ - pixel_x = 32; pixel_y = -7 }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) +/turf/closed/wall/r_wall, +/area/station/commons/storage/primary) "fO" = ( /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) @@ -985,9 +981,7 @@ /area/station/hallway/secondary/exit/departure_lounge) "fQ" = ( /obj/machinery/computer/communications, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, +/obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "fS" = ( @@ -996,21 +990,18 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "fX" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_x = -32 - }, /obj/structure/sign/directions/engineering{ dir = 1; - pixel_x = -32; pixel_y = 7 }, +/obj/structure/sign/directions/supply{ + dir = 4 + }, /obj/structure/sign/directions/evac{ - pixel_x = -32; pixel_y = -7 }, -/turf/open/floor/plating, -/area/station/commons/storage/primary) +/turf/closed/wall/r_wall, +/area/station/construction) "fY" = ( /obj/machinery/light/directional/west, /obj/structure/cable, @@ -1035,19 +1026,7 @@ /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "gg" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_x = 32 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/directions/evac{ - pixel_x = 32; - pixel_y = -7 - }, +/obj/machinery/camera/autoname/directional/east, /turf/open/floor/plating, /area/station/commons/storage/primary) "gi" = ( @@ -1817,7 +1796,7 @@ /area/station/command/bridge) "BG" = ( /obj/structure/table, -/obj/item/ammo_box/c10mm, +/obj/item/ammo_box/c9mm, /obj/item/gun/ballistic/automatic/pistol, /turf/open/floor/iron, /area/station/command/bridge) @@ -2154,7 +2133,6 @@ /turf/open/floor/iron, /area/station/commons/storage/primary) "JV" = ( -/obj/machinery/camera/autoname/directional/east, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -5736,7 +5714,7 @@ ax eh dY dY -fn +en fs en dY @@ -5828,7 +5806,7 @@ ax eh eh eV -eh +fn eh eh eV @@ -6007,7 +5985,7 @@ eh eh eF HW -fM +eh eh eh eh @@ -6099,7 +6077,7 @@ cN cN cN cN -cN +fX ef ef cN @@ -7295,7 +7273,7 @@ cS cS cS cS -cS +fM dG dG cS @@ -7387,7 +7365,7 @@ Zz dp dl dl -fX +dl dE dB dl @@ -8583,7 +8561,7 @@ cS cS cS cS -cS +fM Is Jd tz diff --git a/_maps/map_files/debug/runtimestation_minimal.dmm b/_maps/map_files/debug/runtimestation_minimal.dmm new file mode 100644 index 000000000000..d2d961cc8dab --- /dev/null +++ b/_maps/map_files/debug/runtimestation_minimal.dmm @@ -0,0 +1,1229 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"w" = ( +/turf/open/space/basic, +/area/station/commons/storage/primary) + +(1,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(2,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(3,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(4,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(5,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(6,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(7,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(8,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(9,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(10,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(11,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(12,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(13,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(14,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(15,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(16,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(17,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(18,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(19,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(20,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(21,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(22,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(23,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(24,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(25,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(26,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(27,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(28,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(29,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(30,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(31,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(32,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(33,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} +(34,1,1) = {" +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +w +"} diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index 11fb4bc5caae..c63c1c091cef 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -719,7 +719,7 @@ pixel_x = 6; pixel_y = 6 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 3; pixel_y = 3 }, @@ -866,6 +866,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "dG" = ( @@ -877,6 +878,12 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) +"dI" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/courtroom) "dJ" = ( /obj/machinery/button/door/indestructible{ id = "thunderdomehea"; @@ -993,6 +1000,7 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "ev" = ( @@ -1019,6 +1027,7 @@ "eB" = ( /obj/structure/bookcase/random, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) "eD" = ( @@ -1027,7 +1036,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) "eE" = ( @@ -1127,7 +1136,7 @@ id = "tdomeflash"; name = "Thunderdome Flash" }, -/turf/open/floor/circuit/green, +/turf/closed/wall, /area/centcom/tdome/arena) "fc" = ( /obj/effect/turf_decal/delivery, @@ -1249,7 +1258,7 @@ name = "Bathroom" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron/white, /area/centcom/central_command_areas/admin) "fI" = ( @@ -1490,9 +1499,10 @@ /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "gS" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/ferry) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/armory) "gU" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 @@ -1673,6 +1683,7 @@ "hP" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "hT" = ( @@ -1737,8 +1748,11 @@ /turf/open/floor/iron, /area/centcom/central_command_areas/prison) "in" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron, /area/centcom/central_command_areas/control) "io" = ( /turf/closed/indestructible/riveted, @@ -1767,6 +1781,7 @@ /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/clothing/mask/gas, /obj/effect/turf_decal/stripes/line, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/prison) "iu" = ( @@ -1816,6 +1831,7 @@ /obj/item/restraints/handcuffs/cable/zipties, /obj/item/assembly/flash/handheld, /obj/effect/turf_decal/stripes/line, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/prison) "iz" = ( @@ -1874,9 +1890,10 @@ }, /area/centcom/central_command_areas/supply) "iH" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/prison) +/obj/effect/turf_decal/tile/green, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/centcom/central_command_areas/ferry) "iK" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -1977,11 +1994,6 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/courtroom) -"jb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/centcom/central_command_areas/supply) "jc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -2038,6 +2050,7 @@ dir = 4; id = "XCCQMLoad2" }, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) "jm" = ( @@ -2128,13 +2141,15 @@ id = "XCCQMLoaddoor"; name = "Loading Doors"; pixel_x = -27; - pixel_y = -5 + pixel_y = -5; + dir = 8 }, /obj/machinery/button/door/indestructible{ id = "XCCQMLoaddoor2"; name = "Loading Doors"; pixel_x = -27; - pixel_y = 5 + pixel_y = 5; + dir = 8 }, /obj/machinery/computer/cargo{ dir = 4 @@ -2200,6 +2215,7 @@ id = "XCCQMLoad" }, /obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/vacuum/external/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) "jK" = ( @@ -2265,6 +2281,21 @@ /obj/machinery/computer, /turf/open/floor/iron, /area/centcom/central_command_areas/prison) +"ka" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/light_emitter/thunderdome, +/obj/machinery/camera/directional/north{ + c_tag = "Green Team"; + network = list("thunder"); + pixel_x = 12; + pixel_y = -10; + resistance_flags = 64 + }, +/turf/open/floor/iron, +/area/centcom/tdome/arena) "kd" = ( /obj/structure/table/reinforced, /obj/machinery/button/showtime{ @@ -2321,6 +2352,13 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) +"ku" = ( +/obj/machinery/button/door/indestructible{ + id = "CCcustoms1"; + name = "CC Emergency Docks Control" + }, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/evacuation) "kv" = ( /obj/item/kirbyplants/organic/plant21, /obj/effect/turf_decal/tile/red{ @@ -2349,7 +2387,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/wood, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/courtroom) @@ -2394,9 +2432,12 @@ /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) "kR" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/admin/storage) +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "kS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -3073,6 +3114,21 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/prison) +"ob" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 4; + dir = 1 + }, +/obj/structure/sign/directions/command{ + pixel_y = 10; + dir = 1 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/centcom/central_command_areas/evacuation/ship) "oe" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -3222,6 +3278,7 @@ "oL" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) "oM" = ( @@ -3315,8 +3372,9 @@ /turf/open/floor/iron, /area/centcom/tdome/arena) "pc" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "pd" = ( /obj/item/clipboard{ @@ -3327,7 +3385,7 @@ pixel_x = -2; pixel_y = 12 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_y = 7 }, /obj/structure/table/reinforced, @@ -3502,6 +3560,7 @@ /obj/item/taperecorder, /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "qd" = ( @@ -3566,7 +3625,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -3700,9 +3759,10 @@ /turf/open/floor/iron, /area/centcom/tdome/arena) "qR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/ferry) +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/centcom/tdome/observation) "qS" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Security" @@ -3908,7 +3968,8 @@ /area/centcom/central_command_areas/courtroom) "rN" = ( /obj/machinery/newscaster{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 @@ -3951,9 +4012,12 @@ /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) +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "rZ" = ( /obj/machinery/shower/directional/west, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ @@ -4413,6 +4477,10 @@ /obj/structure/sign/poster/contraband/syndicate_recruitment/directional/north, /turf/open/indestructible/dark, /area/centcom/central_command_areas/admin) +"ub" = ( +/obj/structure/sign/directions/command, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/ferry) "uc" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -4540,6 +4608,11 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/evacuation) +"uB" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/centcom/tdome/observation) "uE" = ( /obj/effect/light_emitter/thunderdome, /turf/closed/indestructible/fakeglass, @@ -4919,9 +4992,6 @@ /area/centcom/tdome/observation) "wg" = ( /obj/structure/closet/secure_closet/ert_com, -/obj/structure/sign/directions/command{ - pixel_y = 24 - }, /obj/effect/turf_decal/stripes/line, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron, @@ -4929,6 +4999,7 @@ "wh" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/green, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) "wj" = ( @@ -4940,6 +5011,14 @@ /obj/structure/flora/bush/pointy/style_random, /turf/open/floor/grass, /area/centcom/tdome/administration) +"wk" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron, +/area/centcom/central_command_areas/control) "wl" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 1 @@ -5000,12 +5079,6 @@ /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) "ww" = ( -/obj/machinery/button/door/indestructible{ - id = "CCFerry"; - name = "Hanger Bay Shutters"; - pixel_y = 24; - req_access = list("cent_general") - }, /obj/effect/turf_decal/stripes/line{ dir = 5 }, @@ -5319,7 +5392,8 @@ /area/centcom/central_command_areas/control) "xX" = ( /obj/machinery/newscaster{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -5415,21 +5489,6 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral/full, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -2; - dir = 1 - }, -/obj/structure/sign/directions/command{ - pixel_x = 32; - pixel_y = 10; - dir = 1 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 4; - dir = 1 - }, /obj/structure/closet/firecloset, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) @@ -5472,9 +5531,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 + dir = 8 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) @@ -5508,7 +5566,7 @@ pixel_x = 6; pixel_y = 6 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 3; pixel_y = 3 }, @@ -5662,34 +5720,16 @@ /turf/open/floor/iron, /area/centcom/tdome/observation) "zw" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/tdome/observation) +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "zx" = ( -/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, -/obj/structure/sign/directions/command{ - pixel_x = 32; - pixel_y = 10; - dir = 1 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 4; - dir = 1 - }, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -2; - dir = 1 +/obj/machinery/defibrillator_mount/loaded{ + pixel_y = null }, -/turf/open/floor/iron/dark/textured_large, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/centcom/central_command_areas/evacuation/ship) "zz" = ( /obj/structure/table/reinforced, @@ -5778,6 +5818,11 @@ /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/two) "zO" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/light_emitter/thunderdome, /obj/machinery/camera/directional/north{ c_tag = "Red Team"; network = list("thunder"); @@ -5785,9 +5830,6 @@ 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) "zR" = ( @@ -5879,11 +5921,13 @@ /obj/effect/turf_decal/tile/green{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "Ao" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/green, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "Aq" = ( @@ -6296,9 +6340,10 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "BW" = ( @@ -6365,6 +6410,23 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/four) +"Cp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/centcom/central_command_areas/ferry) +"Cq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/radio/intercom/syndicate{ + pixel_x = -32; + dir = 8 + }, +/turf/open/floor/iron/grimy, +/area/centcom/central_command_areas/courtroom) "Cx" = ( /obj/structure/table/reinforced, /obj/item/storage/box/handcuffs, @@ -6403,7 +6465,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -6428,6 +6490,7 @@ /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "CJ" = ( @@ -6453,6 +6516,7 @@ /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "CO" = ( @@ -6534,8 +6598,10 @@ /turf/closed/indestructible/riveted, /area/centcom/ai_multicam_room) "Dj" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, +/obj/effect/landmark/prisonwarp, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/indestructible/dark, /area/centcom/central_command_areas/prison/cells) "Dk" = ( /obj/structure/cable, @@ -6673,6 +6739,10 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/evacuation) +"DW" = ( +/obj/machinery/newscaster, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/armory) "Eb" = ( /obj/item/kirbyplants/organic/plant21, /obj/structure/extinguisher_cabinet/directional/south, @@ -6885,9 +6955,6 @@ /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" = ( @@ -6936,9 +7003,12 @@ /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) +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "Fs" = ( /obj/machinery/door/poddoor/shutters{ id = "CCsec1"; @@ -7047,6 +7117,12 @@ /obj/effect/light_emitter/thunderdome, /turf/closed/indestructible/fakeglass, /area/centcom/tdome/observation) +"Ge" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/briefing) "Gf" = ( /obj/machinery/firealarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump{ @@ -7214,6 +7290,12 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/smooth_edge, /area/centcom/central_command_areas/evacuation/ship) +"He" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/floor, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/indestructible/dark, +/area/centcom/central_command_areas/prison/cells) "Hi" = ( /obj/effect/turf_decal/tile/green, /obj/machinery/light/directional/south, @@ -7224,6 +7306,7 @@ /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/tdome/observation) "Hl" = ( @@ -7341,34 +7424,53 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) +"HS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "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) +"HW" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/courtroom) "HY" = ( /obj/machinery/button/door/indestructible{ id = "CCsec3"; name = "CC Shutter 3 Control"; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/button/door/indestructible{ id = "CCcustoms2"; name = "CC Shutter 2 Control"; pixel_x = 9; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/button/door/indestructible{ id = "CCsec1"; name = "CC Shutter 1 Control"; - pixel_y = 40 + pixel_y = 40; + dir = 1 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/button/door/indestructible{ id = "CCsec4"; name = "CC Shutter 4 Control"; pixel_x = -9; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/photocopier/gratis/prebuilt, /turf/open/floor/iron/dark, @@ -7417,7 +7519,8 @@ /area/centcom/central_command_areas/supply) "If" = ( /obj/machinery/newscaster{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -7529,10 +7632,11 @@ /turf/open/floor/iron, /area/centcom/tdome/observation) "Jq" = ( +/obj/effect/light_emitter/thunderdome, /obj/machinery/camera/motion/thunderdome{ pixel_x = 10 }, -/turf/open/floor/circuit/green, +/turf/open/floor/iron, /area/centcom/tdome/arena) "JC" = ( /obj/machinery/modular_computer/preset/command{ @@ -7565,6 +7669,21 @@ /obj/machinery/modular_computer/preset/id/centcom, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) +"JS" = ( +/obj/structure/sign/directions/command{ + pixel_y = 10; + dir = 1 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 4; + dir = 1 + }, +/obj/structure/sign/directions/medical{ + pixel_y = -2; + dir = 1 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/centcom/central_command_areas/evacuation/ship) "JU" = ( /obj/structure/chair{ dir = 4 @@ -7610,7 +7729,7 @@ dir = 8 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) "Kg" = ( @@ -8005,9 +8124,6 @@ /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, @@ -8075,6 +8191,7 @@ /obj/structure/bed, /obj/item/bedsheet/black, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) "Mp" = ( @@ -8187,6 +8304,7 @@ "ML" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "MM" = ( @@ -8226,9 +8344,12 @@ /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) +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron, +/area/centcom/central_command_areas/control) "Ne" = ( /obj/structure/table/wood, /obj/item/reagent_containers/cup/glass/trophy/gold_cup, @@ -8434,8 +8555,8 @@ /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, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) "Od" = ( @@ -8448,7 +8569,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -8590,6 +8711,11 @@ /obj/item/kirbyplants/organic/plant21, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) +"OK" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/armory) "OM" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -8831,16 +8957,19 @@ /turf/open/floor/iron, /area/centcom/central_command_areas/fore) "PE" = ( -/obj/machinery/newscaster{ - pixel_x = 32 +/obj/machinery/button/door/indestructible{ + id = "CCFerry"; + name = "Hanger Bay Shutters"; + req_access = list("cent_general") }, -/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) +/area/centcom/central_command_areas/ferry) +"PF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "PG" = ( /obj/effect/turf_decal/tile/dark_blue/fourcorners, /obj/effect/turf_decal/tile/dark_blue/fourcorners, @@ -8990,7 +9119,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/reinforced, /obj/machinery/status_display/ai/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -9164,6 +9293,7 @@ "Rd" = ( /obj/structure/bookcase/random, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) "Rf" = ( @@ -9352,18 +9482,11 @@ /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/structure/sign/directions/medical{ + dir = 1 }, -/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) +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/armory) "RR" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -9474,9 +9597,13 @@ /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) +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/centcom/central_command_areas/fore) "Sy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -9500,6 +9627,13 @@ /obj/structure/window/reinforced/survival_pod/spawner/directional/west, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) +"SD" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/courtroom) "SE" = ( /obj/effect/turf_decal/delivery, /obj/effect/light_emitter/podbay, @@ -9612,6 +9746,7 @@ "Th" = ( /obj/structure/filingcabinet/white, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) "Tj" = ( @@ -9937,6 +10072,7 @@ dir = 1 }, /obj/machinery/firealarm/directional/south, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/admin/storage) "UK" = ( @@ -10035,9 +10171,6 @@ pixel_y = 3 }, /obj/item/gun/energy/e_gun, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -10172,10 +10305,6 @@ /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 }, @@ -10209,21 +10338,11 @@ /obj/machinery/computer/records/security{ dir = 8 }, -/obj/machinery/button/door/indestructible{ - id = "CCcustoms1"; - 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 }, @@ -10235,6 +10354,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) +"Wb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron, +/area/centcom/central_command_areas/ferry) "Wc" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Security" @@ -10326,9 +10452,6 @@ /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) @@ -10344,8 +10467,13 @@ /obj/effect/turf_decal/tile/green{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/tdome/observation) +"WM" = ( +/obj/structure/sign/directions/engineering, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/ferry) "WN" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, @@ -10394,7 +10522,7 @@ /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, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) "WX" = ( @@ -10430,6 +10558,7 @@ "Xc" = ( /obj/structure/noticeboard/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "Xd" = ( @@ -10557,6 +10686,11 @@ /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/courtroom) +"XG" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/dark, +/area/centcom/tdome/observation) "XJ" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/sparsegrass/style_random, @@ -10654,6 +10788,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) +"Yt" = ( +/obj/structure/sign/directions/security{ + dir = 1 + }, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/armory) "Yx" = ( /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/evacuation/ship) @@ -10754,9 +10894,10 @@ /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) "YX" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/prison/cells) +/obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/briefing) "YY" = ( /obj/item/storage/medkit/toxin, /obj/item/storage/medkit/o2{ @@ -10771,9 +10912,10 @@ /turf/open/floor/iron/white, /area/centcom/central_command_areas/control) "Za" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/fore) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/centcom/tdome/observation) "Ze" = ( /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, @@ -10952,7 +11094,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -38196,7 +38338,7 @@ aL Lt Lt aa -Lt +zx LN OW yX @@ -39241,7 +39383,7 @@ KO LA nb Lp -zx +Lp ZA Lp Lp @@ -39498,7 +39640,7 @@ Lt LP Lt Lt -Lt +JS LP Lt Lt @@ -39508,7 +39650,7 @@ Lt Lt Lt LP -Lt +ob KH aa aa @@ -47914,20 +48056,20 @@ On On On On -PF -mD +On +PE ww Fh wz -qR +mD Rd eF hx TE az eF -Rd -MY +Ge +gO aa aa aa @@ -48432,8 +48574,8 @@ oh mD ss fw -tr -gS +Wb +mD kO WR RH @@ -49200,8 +49342,8 @@ dz Nr Xq Hw -gS -wz +mD +Cp TK xR OQ @@ -49461,7 +49603,7 @@ mD su fw wh -gS +mD Fz MJ TI @@ -49974,14 +50116,14 @@ On mD su fw -ts -qR +iH +mD Mp Pd RH NC RH -Pd +YX dW gO aa @@ -50234,11 +50376,11 @@ fw ne mD Ya -rY +Ya ST VO ST -rY +Ya Ya Ya aa @@ -50457,13 +50599,13 @@ aa aa aa aa -jb +iX jl js iX js jJ -jb +iX aa aa aa @@ -50479,7 +50621,7 @@ EJ QV QV Mo -Sx +YU Gs Ow aD @@ -50489,15 +50631,15 @@ oe su fw ts -mD +WM WG -sE +OK sE bH sE Zv VZ -Ya +RQ aa aa aa @@ -50996,7 +51138,7 @@ On YU YU Rj -kR +YU YU oe oe @@ -51507,7 +51649,7 @@ mi pj nm Th -Sx +YU Nn yi cL @@ -51516,7 +51658,7 @@ vb oe su xk -ts +iH mD Vg bH @@ -51545,11 +51687,11 @@ OO VT BY QC -bR -HK zO HK HK +HK +HK pb Ic Zk @@ -51774,15 +51916,15 @@ oe wB Fh xS -mD +ub wg oL fj RM -PE sE +gS VM -Ya +Yt aa aa aa @@ -52033,11 +52175,11 @@ xh ds mD Ya -rY Ya Ya Ya -rY +DW +Ya Ya Ya Dq @@ -52309,8 +52451,8 @@ bz QC Zj bi -eI -zw +qR +QC Id Bs vW @@ -52806,7 +52948,7 @@ Dp mR zF dC -Fq +io iu io yC @@ -53317,8 +53459,8 @@ wC iu iu iu -in -tL +io +wk tL io iu @@ -53585,7 +53727,7 @@ iu Dt DH iu -in +io Sl RW Sl @@ -53819,11 +53961,11 @@ Ox Ox Ox Ox -qs -Za +Sx Vx -Za -tK +Vx +Vx +in gL io HY @@ -53834,9 +53976,9 @@ hc iu Ab An -in io -in +io +io CI CY wH @@ -54108,8 +54250,8 @@ aB DF BW BW -BW -zw +Za +QC yY Kd yY @@ -54375,10 +54517,10 @@ Ef NY NY fb -Jq +Ji NY NY -Ef +Jq uE mE qk @@ -54619,8 +54761,8 @@ Mu Mu Mu aB -zw -BW +QC +XG BW BW QC @@ -54847,11 +54989,11 @@ Ox Ox Ox Ox -qs -Za +Sx Vx -Za -tN +Vx +Vx +MY gL io SQ @@ -54862,9 +55004,9 @@ Oh iu Ab Ao -in io -in +io +io CL CZ wH @@ -55127,7 +55269,7 @@ iu Xa DI iu -in +io Sl RW Sl @@ -55373,8 +55515,8 @@ wC iu iu iu -in -tL +io +wk tL io iu @@ -55594,19 +55736,19 @@ aa Jb rs am +Jb Dj -rs -am -Dj -rs am +Jb Dj -rs am +Jb Dj -rs am +Jb Dj +He +Jb rs am Jb @@ -55851,7 +55993,7 @@ aa Jb ir IF -YX +Jb ir IF Jb @@ -55863,11 +56005,11 @@ IF Jb ir IF -YX +Jb ir IF Jb -iH +il il Mz GC @@ -56108,7 +56250,7 @@ aa il is lL -iL +kR iT iT SL @@ -56120,11 +56262,11 @@ iT If iT iT -iT +Fq ls lL Ra -kB +PF nD iL iT @@ -56136,7 +56278,7 @@ io io io io -Fq +io UO io io @@ -56362,7 +56504,7 @@ aa aa aa aa -iH +il it lL im @@ -56421,8 +56563,8 @@ bz QC dV cS -cS -zw +uB +QC Ot Ot di @@ -57199,9 +57341,9 @@ ym TV fg QC -dj +ka +Mf Mf -RQ Mf Mf Zi @@ -57904,7 +58046,7 @@ aa aa aa aa -iH +il iy lL ip @@ -58164,7 +58306,7 @@ aa il iz lL -iK +rY iU iU OB @@ -58176,11 +58318,11 @@ iU sI iU iU -iU +HS lt lL Ra -kB +zw rg iK iU @@ -58421,7 +58563,7 @@ aa Jb ir IF -YX +Jb ir IF Jb @@ -58433,11 +58575,11 @@ IF Jb ir IF -YX +Jb ir IF Jb -pc +Hv Hv RI ja @@ -58678,19 +58820,19 @@ aa Jb rs am +Jb Dj -rs -am -Dj -rs am +Jb Dj -rs am +Jb Dj -rs am +Jb Dj +He +Jb rs am Jb @@ -58957,8 +59099,8 @@ rM rM rM rM -zc -pc +HW +Hv cg PL fm @@ -59982,10 +60124,10 @@ Hv Hv Hv Hv -pc +Hv ja ja -pc +Hv Hv qA qy @@ -60232,17 +60374,17 @@ Hv bB ps tQ -pc +Hv hP lR ml mW rN bP +pc ps ps -ps -aU +SD Hv qy qz @@ -61256,7 +61398,7 @@ aa aa aa aa -pc +Hv qc rk kE @@ -61770,8 +61912,8 @@ aa aa aa aa -pc -bC +Hv +dI rk kG ld @@ -62042,7 +62184,7 @@ MV mY rM ML -pc +Hv qz qy cg @@ -62059,7 +62201,7 @@ zm xt vZ AZ -cg +ku fm cg cg @@ -62284,7 +62426,7 @@ aa aa aa aa -pc +Hv BU rk kE @@ -63061,7 +63203,7 @@ rM rM ct ps -lV +Cq lW lW lV @@ -63316,7 +63458,7 @@ Hv Wp xX QX -pc +Hv Xc KD rc diff --git a/_maps/map_files/generic/CentCom_minimal.dmm b/_maps/map_files/generic/CentCom_minimal.dmm new file mode 100644 index 000000000000..053792354325 --- /dev/null +++ b/_maps/map_files/generic/CentCom_minimal.dmm @@ -0,0 +1,572 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/floor/iron, +/area/centcom/central_command_areas/control) +"g" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron, +/area/centcom/central_command_areas/control) +"h" = ( +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/control) +"x" = ( +/obj/effect/landmark/error, +/obj/effect/landmark/observer_start, +/obj/effect/landmark/latejoin, +/turf/open/floor/iron, +/area/centcom/central_command_areas/control) +"A" = ( +/turf/cordon, +/area/space) +"G" = ( +/turf/closed/indestructible/splashscreen, +/area/space) +"W" = ( +/obj/effect/landmark/start/new_player, +/turf/cordon, +/area/space) + +(1,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +G +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +"} +(2,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(3,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(4,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(5,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +g +a +a +a +a +a +a +h +"} +(6,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(7,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(8,1,1) = {" +A +A +A +A +A +A +A +W +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(9,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +g +a +a +a +g +x +a +a +g +a +a +h +"} +(10,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(11,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(12,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(13,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +g +a +a +a +a +a +a +h +"} +(14,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(15,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(16,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +a +a +a +a +a +a +a +a +a +a +a +a +a +h +"} +(17,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +A +A +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +"} diff --git a/_maps/map_files/tramstation/maintenance_modules/arrivalsecupper_3.dmm b/_maps/map_files/tramstation/maintenance_modules/arrivalsecupper_3.dmm index 085542568ac8..557804df8156 100644 --- a/_maps/map_files/tramstation/maintenance_modules/arrivalsecupper_3.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/arrivalsecupper_3.dmm @@ -83,7 +83,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/open/floor/iron/smooth, /area/station/maintenance/department/eva) "L" = ( @@ -115,7 +115,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/open/floor/plating, /area/station/maintenance/department/eva) "Y" = ( diff --git a/_maps/map_files/tramstation/maintenance_modules/atmoscilower_2.dmm b/_maps/map_files/tramstation/maintenance_modules/atmoscilower_2.dmm index 63b01e5ed5ad..05fb51b60ac9 100644 --- a/_maps/map_files/tramstation/maintenance_modules/atmoscilower_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/atmoscilower_2.dmm @@ -204,7 +204,7 @@ pixel_x = -7; pixel_y = -10 }, -/obj/item/food/sandwich/cheese/grilled{ +/obj/item/food/sandwich/grilled_cheese{ pixel_x = -5; pixel_y = -9 }, diff --git a/_maps/map_files/tramstation/maintenance_modules/barcargoupper_2.dmm b/_maps/map_files/tramstation/maintenance_modules/barcargoupper_2.dmm index 0901318e3014..b19a77c30230 100644 --- a/_maps/map_files/tramstation/maintenance_modules/barcargoupper_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/barcargoupper_2.dmm @@ -191,11 +191,7 @@ /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/secure_area{ - desc = "A warning sign which reads 'MULE CROSSING - LOOK BOTH WAYS"; - name = "MULE CROSSING - LOOK BOTH WAYS"; - pixel_x = -32 - }, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/catwalk_floor, /area/station/maintenance/department/cargo) "tI" = ( diff --git a/_maps/map_files/tramstation/maintenance_modules/dormenginelower_attachment_b_1.dmm b/_maps/map_files/tramstation/maintenance_modules/dormenginelower_attachment_b_1.dmm index bfe095561311..81bb18c3d899 100644 --- a/_maps/map_files/tramstation/maintenance_modules/dormenginelower_attachment_b_1.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/dormenginelower_attachment_b_1.dmm @@ -307,7 +307,7 @@ T B B B -C +m a a a @@ -324,7 +324,7 @@ L K B B -m +C V D O diff --git a/_maps/map_files/tramstation/maintenance_modules/medsciupper_1.dmm b/_maps/map_files/tramstation/maintenance_modules/medsciupper_1.dmm index bed44b8895c9..45a0e429f0d3 100644 --- a/_maps/map_files/tramstation/maintenance_modules/medsciupper_1.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/medsciupper_1.dmm @@ -324,7 +324,7 @@ /obj/machinery/door/airlock/grunge{ name = "Medical Maintenance Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/modular_map_connector, @@ -398,6 +398,9 @@ /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/station/asteroid) +"YV" = ( +/turf/closed/wall, +/area/station/asteroid) "Zs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -1273,7 +1276,7 @@ XJ fd rJ hs -jx +YV nm nm gV diff --git a/_maps/map_files/tramstation/maintenance_modules/medsciupper_2.dmm b/_maps/map_files/tramstation/maintenance_modules/medsciupper_2.dmm index 9e76b86ee640..f0401a50d7e9 100644 --- a/_maps/map_files/tramstation/maintenance_modules/medsciupper_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/medsciupper_2.dmm @@ -117,7 +117,7 @@ /obj/machinery/door/airlock/grunge{ name = "Medical Maintenance Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/modular_map_connector, @@ -292,6 +292,9 @@ "II" = ( /turf/open/floor/plating, /area/station/maintenance/department/science) +"IV" = ( +/turf/closed/wall, +/area/station/asteroid) "Kw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, @@ -369,7 +372,7 @@ name = "Medical Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/catwalk_floor, @@ -1300,7 +1303,7 @@ nm cn vr Vh -tD +IV tD tD Mf diff --git a/_maps/map_files/tramstation/maintenance_modules/medsciupper_3.dmm b/_maps/map_files/tramstation/maintenance_modules/medsciupper_3.dmm index 5e40d0ac4f60..c921b68dbb91 100644 --- a/_maps/map_files/tramstation/maintenance_modules/medsciupper_3.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/medsciupper_3.dmm @@ -271,7 +271,7 @@ /obj/machinery/door/airlock/grunge{ name = "Medical Maintenance Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/modular_map_connector, @@ -468,6 +468,9 @@ /obj/effect/spawner/random/contraband/narcotics, /turf/open/floor/iron/smooth, /area/station/maintenance/department/medical) +"MY" = ( +/turf/closed/wall, +/area/station/asteroid) "Ny" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -1466,7 +1469,7 @@ Pu gZ hQ JY -wP +MY wP LV wP diff --git a/_maps/map_files/tramstation/maintenance_modules/secbarupper_1.dmm b/_maps/map_files/tramstation/maintenance_modules/secbarupper_1.dmm index 6c18e97d1378..127b72c632bb 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secbarupper_1.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secbarupper_1.dmm @@ -172,7 +172,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -346,11 +346,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'MULE CROSSING - LOOK BOTH WAYS"; - name = "MULE CROSSING - LOOK BOTH WAYS"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/catwalk_floor, /area/station/maintenance/department/security) "Uo" = ( @@ -399,8 +395,8 @@ /turf/open/floor/catwalk_floor, /area/station/maintenance/department/security) "XI" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/sand/plating, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/security) "Yj" = ( @@ -758,7 +754,7 @@ eg (9,1,1) = {" eg Fc -XI +pH eg eg eg @@ -798,7 +794,7 @@ eg (10,1,1) = {" ZA bW -Rh +XI eg eg eg diff --git a/_maps/map_files/tramstation/maintenance_modules/secbarupper_2.dmm b/_maps/map_files/tramstation/maintenance_modules/secbarupper_2.dmm index 6b0093caccd2..d7cba70ef2fd 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secbarupper_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secbarupper_2.dmm @@ -30,11 +30,7 @@ /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/secure_area{ - desc = "A warning sign which reads 'MULE CROSSING - LOOK BOTH WAYS"; - name = "MULE CROSSING - LOOK BOTH WAYS"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/catwalk_floor, /area/station/maintenance/department/security) @@ -207,7 +203,7 @@ /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ dir = 1 }, -/obj/machinery/light/small/directional/south, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron/smooth, /area/station/maintenance/department/security) "CA" = ( @@ -308,7 +304,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, diff --git a/_maps/map_files/tramstation/maintenance_modules/secbarupper_3.dmm b/_maps/map_files/tramstation/maintenance_modules/secbarupper_3.dmm index 9291070132b9..be69dfb9e701 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secbarupper_3.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secbarupper_3.dmm @@ -221,7 +221,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -468,8 +468,8 @@ /turf/open/misc/asteroid, /area/station/maintenance/department/security) "VW" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/sand/plating, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/security) "Wo" = ( @@ -823,7 +823,7 @@ Py (9,1,1) = {" Py Wo -VW +uw Py Py Py @@ -863,7 +863,7 @@ Py (10,1,1) = {" Sc RO -fV +VW Py Py Py diff --git a/_maps/map_files/tramstation/maintenance_modules/secservicelower_1.dmm b/_maps/map_files/tramstation/maintenance_modules/secservicelower_1.dmm index ccd28eb4b312..7a44cf6394ba 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secservicelower_1.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secservicelower_1.dmm @@ -157,14 +157,9 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/port/central) -"kD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) "lS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -261,7 +256,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -411,6 +406,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron/smooth, /area/station/maintenance/central/greater) "Bz" = ( @@ -2627,7 +2623,7 @@ TQ vR Ip VO -kD +PM nk nk nk diff --git a/_maps/map_files/tramstation/maintenance_modules/secservicelower_2.dmm b/_maps/map_files/tramstation/maintenance_modules/secservicelower_2.dmm index 9ba614bb7821..2a805eacb74d 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secservicelower_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secservicelower_2.dmm @@ -105,7 +105,7 @@ /area/station/maintenance/central/greater) "gc" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -159,7 +159,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, diff --git a/_maps/map_files/tramstation/maintenance_modules/secservicelower_3.dmm b/_maps/map_files/tramstation/maintenance_modules/secservicelower_3.dmm index 3695915478ab..7af7a378d141 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secservicelower_3.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secservicelower_3.dmm @@ -105,7 +105,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -311,7 +311,7 @@ /area/station/maintenance/port/central) "xH" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, diff --git a/_maps/map_files/tramstation/tramstation.dmm b/_maps/map_files/tramstation/tramstation.dmm index be85fead0ff3..d5153099e4ae 100644 --- a/_maps/map_files/tramstation/tramstation.dmm +++ b/_maps/map_files/tramstation/tramstation.dmm @@ -41,7 +41,8 @@ "aah" = ( /obj/machinery/power/smes/engineering, /obj/structure/sign/warning/electric_shock{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -546,7 +547,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, /area/station/escapepodbay) @@ -1107,7 +1108,7 @@ dir = 4 }, /obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/escapepodbay) @@ -1497,7 +1498,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aeT" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 10 @@ -1507,7 +1508,7 @@ c_tag = "Secure - Nuclear Storage" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aeV" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, @@ -1529,7 +1530,7 @@ /obj/effect/turf_decal/stripes/line, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aeY" = ( /obj/effect/turf_decal/trimline/white/warning{ dir = 9 @@ -1599,7 +1600,7 @@ "afn" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "afo" = ( /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, @@ -1925,9 +1926,7 @@ /turf/open/floor/iron, /area/station/security/checkpoint/supply) "agK" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/airless, /area/station/asteroid) "agL" = ( @@ -2000,6 +1999,8 @@ }, /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, +/obj/structure/closet/emcloset, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/service) "agW" = ( @@ -2294,7 +2295,8 @@ pixel_y = -9; id = "private_j"; specialfunctions = 4; - normaldoorcontrol = 1 + normaldoorcontrol = 1; + dir = 4 }, /turf/open/floor/wood, /area/station/commons/dorms) @@ -2387,7 +2389,8 @@ pixel_y = -9; id = "private_k"; specialfunctions = 4; - normaldoorcontrol = 1 + normaldoorcontrol = 1; + dir = 4 }, /turf/open/floor/carpet, /area/station/commons/dorms) @@ -2524,13 +2527,11 @@ /area/station/commons/dorms) "alb" = ( /obj/structure/chair/stool/directional/north, -/obj/machinery/button/door/directional/west{ +/obj/machinery/button/door/directional/east{ name = "Privacy Bolts"; - pixel_x = 24; - pixel_y = -9; id = "private_l"; - specialfunctions = 4; - normaldoorcontrol = 1 + normaldoorcontrol = 1; + specialfunctions = 4 }, /turf/open/floor/wood, /area/station/commons/dorms) @@ -2756,7 +2757,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "anr" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -2824,9 +2825,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, +/obj/structure/sign/warning/secure_area/directional/east, /obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, /turf/open/floor/iron, /area/station/engineering/atmos) @@ -2869,7 +2868,7 @@ "aoh" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aor" = ( /obj/effect/landmark/start/station_engineer, /obj/effect/turf_decal/trimline/yellow/arrow_cw, @@ -3236,7 +3235,7 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/power_store/cell/high, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "asQ" = ( /obj/structure/sign/warning/no_smoking, /turf/closed/wall, @@ -3374,7 +3373,7 @@ "aur" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "auz" = ( /turf/closed/wall, /area/station/commons/vacant_room) @@ -3449,7 +3448,7 @@ dir = 6 }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "avj" = ( /obj/structure/table, /obj/machinery/syndicatebomb/training, @@ -3620,7 +3619,7 @@ dir = 4 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/security/brig, @@ -3832,7 +3831,7 @@ "ayI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ayJ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -3855,6 +3854,16 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"ayP" = ( +/obj/machinery/suit_storage_unit/medical, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/paramedic) "ayR" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/eva) @@ -3974,9 +3983,6 @@ /turf/open/floor/glass, /area/station/cargo/sorting) "aBq" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/stripes/white/full, /obj/machinery/door/firedoor, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -4360,9 +4366,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/structure/sign/departments/cargo{ - pixel_y = 32 - }, +/obj/structure/sign/departments/cargo/directional/north, /obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 1 }, @@ -4687,10 +4691,6 @@ /obj/effect/turf_decal/trimline/neutral/corner{ dir = 8 }, -/obj/structure/sign/departments/science{ - pixel_x = -32; - 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, @@ -4715,12 +4715,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit) -"aHA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) "aHD" = ( /obj/structure/table/wood, /obj/item/radio/intercom/directional/north, @@ -4986,7 +4980,7 @@ dir = 1 }, /obj/effect/landmark/event_spawn, -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/iron, /area/station/science/lab) "aKA" = ( @@ -5034,7 +5028,6 @@ /obj/machinery/door/airlock/medical/glass{ name = "Treatment Center" }, -/obj/effect/mapping_helpers/airlock/unres, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, @@ -5044,6 +5037,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "aKU" = ( @@ -5145,12 +5139,6 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"aLB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/landmark/start/paramedic, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) "aLC" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -5224,7 +5212,6 @@ /turf/open/floor/iron, /area/station/commons/storage/art) "aMt" = ( -/obj/structure/sign/warning/electric_shock, /obj/effect/turf_decal/stripes/end{ dir = 4 }, @@ -5342,7 +5329,7 @@ /area/station/command/bridge) "aNq" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aNr" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/power/apc/auto_name/directional/south, @@ -5472,7 +5459,7 @@ "aOH" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "aOJ" = ( /obj/machinery/computer/crew{ dir = 8 @@ -5648,7 +5635,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aQf" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -5909,11 +5896,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 }, -/obj/structure/sign/warning/secure_area{ - name = "BOMB RANGE"; - desc = "A warning sign which reads 'BOMB RANGE"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5988,7 +5971,7 @@ /obj/machinery/status_display/ai/directional/north, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aUC" = ( /obj/machinery/camera/directional/south{ c_tag = "Civilian - Chapel South" @@ -6148,7 +6131,7 @@ dir = 4 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aYA" = ( /turf/open/floor/iron, /area/station/hallway/primary/tram/right) @@ -6281,11 +6264,11 @@ }, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bcI" = ( /obj/item/kirbyplants/photosynthetic, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bcL" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 @@ -6302,7 +6285,7 @@ }, /obj/effect/turf_decal/trimline/yellow/corner, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bcV" = ( /obj/effect/turf_decal/trimline/white/filled/corner{ dir = 1 @@ -6330,7 +6313,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bej" = ( /obj/machinery/newscaster/directional/north, /obj/effect/turf_decal/trimline/green/filled/line, @@ -6506,7 +6489,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bhG" = ( /obj/machinery/door/airlock/centcom{ name = "Syndicate Secure Airlock System"; @@ -6542,7 +6525,7 @@ }, /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bio" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -6895,7 +6878,7 @@ }, /obj/effect/turf_decal/trimline/yellow/filled/warning, /turf/open/floor/iron/dark/side, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bqU" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/iron/dark, @@ -7017,7 +7000,7 @@ /area/station/service/kitchen/coldroom) "btC" = ( /obj/structure/closet/wardrobe/green, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, @@ -7284,7 +7267,7 @@ /area/station/service/janitor) "bya" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "byh" = ( /obj/structure/table/glass, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -7298,7 +7281,7 @@ dir = 8 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "byw" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -7335,7 +7318,7 @@ c_tag = "Secure - AI Antechamber North" }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "byH" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -7367,14 +7350,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/tram/mid) -"byW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/plastic{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) "bzo" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -7405,7 +7380,7 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bzN" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -7429,7 +7404,7 @@ name = "Tram Mechanical Room" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -7460,7 +7435,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bBl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7591,7 +7566,7 @@ /obj/effect/turf_decal/bot_white/right, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bEM" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -7624,7 +7599,7 @@ pixel_y = 2 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bFo" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/camera/directional/south{ @@ -7665,7 +7640,7 @@ name = "Theatre Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, @@ -7689,7 +7664,7 @@ /obj/structure/disposalpipe/segment, /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/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -7805,7 +7780,7 @@ /turf/open/floor/iron, /area/station/cargo/office) "bHP" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 8 }, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -7886,7 +7861,7 @@ dir = 10 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "bKb" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -7943,7 +7918,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "bKM" = ( /turf/open/floor/iron/dark, /area/station/commons/lounge) @@ -8062,7 +8037,7 @@ "bLO" = ( /obj/machinery/light/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bLQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -8111,7 +8086,7 @@ }, /obj/machinery/bluespace_beacon, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bME" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -8129,10 +8104,9 @@ /area/station/maintenance/central/greater) "bMZ" = ( /obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 + dir = 5 }, -/obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) "bNa" = ( @@ -8151,7 +8125,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/science/research) "bNi" = ( @@ -8193,7 +8167,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bNx" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -8606,7 +8580,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bVL" = ( /obj/structure/chair{ dir = 8 @@ -8957,7 +8931,7 @@ }, /obj/structure/cable, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "bZI" = ( /obj/machinery/door/window/brigdoor/left/directional/south{ name = "Secure Morgue Trays"; @@ -9004,6 +8978,16 @@ }, /turf/open/floor/engine/cult, /area/station/service/library) +"cas" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "cay" = ( /mob/living/basic/goat/pete, /obj/effect/turf_decal/weather/snow/corner{ @@ -9045,7 +9029,8 @@ dir = 4 }, /obj/structure/sign/departments/psychology{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) @@ -9111,6 +9096,16 @@ /obj/machinery/computer/security/telescreen/entertainment/directional/east, /turf/open/floor/wood/large, /area/station/service/barber) +"cbU" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction/engineering) "cch" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk, @@ -9295,7 +9290,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cey" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -9362,7 +9357,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cfp" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner, @@ -9422,6 +9417,9 @@ /area/station/science/ordnance/office) "cgd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, /turf/open/floor/iron, /area/station/hallway/secondary/construction/engineering) "cgl" = ( @@ -9433,7 +9431,7 @@ /turf/open/floor/iron/dark/corner{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cgw" = ( /obj/machinery/computer/operating{ dir = 8 @@ -9507,7 +9505,7 @@ /obj/effect/turf_decal/stripes/corner, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cht" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -9684,7 +9682,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cmH" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -9981,18 +9979,14 @@ /turf/open/floor/iron/dark, /area/station/service/bar) "crU" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/warning{ +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 5 }, -/obj/structure/railing{ - dir = 4 +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 }, -/obj/structure/transport/linear/public, -/turf/open/floor/plating/elevatorshaft, -/area/station/maintenance/tram/mid) +/turf/open/floor/iron, +/area/station/hallway/secondary/construction/engineering) "crV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -10071,7 +10065,7 @@ name = "Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/catwalk_floor, @@ -10456,6 +10450,9 @@ }, /obj/effect/turf_decal/stripes/white/line, /obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, /turf/open/floor/plating, /area/station/maintenance/tram/mid) "czB" = ( @@ -10485,13 +10482,6 @@ name = "HoP Arrival Procedure Enforcement Shutters"; id = "papersplease" }, -/obj/machinery/button/door/directional/south{ - name = "Arrival Checkpoint Enforcement Override"; - pixel_x = 24; - pixel_y = 0; - id = "papersplease"; - req_access = list("kitchen") - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -10698,7 +10688,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cEg" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/effect/turf_decal/trimline/neutral/filled/corner{ @@ -10947,7 +10937,7 @@ "cHZ" = ( /obj/structure/railing, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cIm" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/bot, @@ -11253,7 +11243,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cOg" = ( /obj/machinery/door/airlock/command/glass{ name = "EVA Storage" @@ -11265,7 +11255,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cOl" = ( /obj/machinery/computer/prisoner/management{ dir = 8 @@ -11336,7 +11326,7 @@ dir = 4 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cPx" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 @@ -11439,6 +11429,7 @@ dir = 1 }, /obj/structure/cable/layer1, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "cQD" = ( @@ -11652,7 +11643,7 @@ }, /obj/machinery/status_display/ai/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cUB" = ( /obj/effect/landmark/start/shaft_miner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11682,6 +11673,11 @@ dir = 1 }, /obj/machinery/light/cold/directional/north, +/obj/machinery/button/door/directional/north{ + id = "papersplease"; + name = "Arrival Checkpoint Enforcement Override"; + req_access = list("kitchen") + }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) "cVd" = ( @@ -11723,8 +11719,13 @@ "cVr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/machinery/flasher/directional/west{ + id = "AI"; + pixel_y = 5; + pixel_x = -22 + }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cVs" = ( /obj/effect/turf_decal/weather/snow, /obj/machinery/gibber, @@ -11781,7 +11782,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cWl" = ( /obj/machinery/computer/shuttle/mining{ dir = 1 @@ -11832,7 +11833,7 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "cXy" = ( /obj/machinery/igniter/incinerator_ordmix, /turf/open/floor/engine/vacuum, @@ -11875,7 +11876,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/catwalk_floor, @@ -12066,7 +12067,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/item/storage/toolbox/drone, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dbr" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -12137,7 +12138,6 @@ /turf/open/floor/carpet, /area/station/service/theater) "dcq" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 }, @@ -12149,6 +12149,7 @@ /obj/effect/turf_decal/trimline/white/warning{ dir = 1 }, +/obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/iron, /area/station/maintenance/tram/mid) "dcz" = ( @@ -12357,7 +12358,7 @@ "dgd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12483,7 +12484,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "diN" = ( /obj/machinery/computer/slot_machine{ pixel_y = 2 @@ -12578,7 +12579,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dkl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -12671,7 +12672,7 @@ /area/station/maintenance/tram/left) "dml" = ( /obj/structure/closet/lasertag/red, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/sign/poster/official/random/directional/east, /obj/effect/turf_decal/tile/red/full, /turf/open/floor/iron/dark/smooth_large, @@ -12733,7 +12734,8 @@ /area/station/science/breakroom) "dmX" = ( /obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -12778,7 +12780,7 @@ dir = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "doa" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /obj/effect/spawner/structure/window/reinforced, @@ -12920,7 +12922,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dqW" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -13012,11 +13014,17 @@ dir = 5 }, /area/station/service/chapel) +"dsm" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/tram/mid) "dst" = ( /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/security/armory) +/area/station/security/armory) "dsw" = ( /obj/machinery/modular_computer/preset/id{ dir = 8 @@ -13078,12 +13086,21 @@ /turf/open/floor/wood, /area/station/command/meeting_room) "dtz" = ( -/obj/machinery/flasher/directional/east{ - pixel_y = 26; - id = "AI" +/obj/structure/sign/directions/upload{ + dir = 4; + pixel_y = -7 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/obj/structure/sign/directions/engineering{ + pixel_y = 7 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 14 + }, +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/closed/wall, +/area/station/hallway/primary/tram/center) "dtA" = ( /turf/open/openspace, /area/station/security/courtroom/holding) @@ -13357,6 +13374,9 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/chair/plastic{ + dir = 4 + }, /turf/open/floor/iron, /area/station/maintenance/tram/mid) "dzu" = ( @@ -13473,7 +13493,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/dim/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dAR" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/bot, @@ -13503,7 +13523,7 @@ "dBj" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dBM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ @@ -13650,7 +13670,7 @@ /area/station/hallway/primary/tram/right) "dEv" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dEH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external{ @@ -13775,7 +13795,7 @@ name = "Tunnel Access Hatch" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14033,10 +14053,10 @@ /obj/effect/landmark/event_spawn, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dKV" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dLp" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 4 @@ -14092,14 +14112,13 @@ "dLS" = ( /obj/machinery/turretid{ name = "AI Chamber turret control"; - icon_state = "control_stun"; pixel_x = 3; pixel_y = -23 }, /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dMg" = ( /turf/open/openspace, /area/station/maintenance/solars/starboard/fore) @@ -14144,7 +14163,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "dNp" = ( /obj/machinery/newscaster/directional/north, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -14202,7 +14221,7 @@ req_access = list("captain") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dNY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -14346,7 +14365,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dQn" = ( /obj/machinery/power/supermatter_crystal/engine, /turf/open/floor/engine, @@ -14384,7 +14403,7 @@ pixel_y = -2 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dQI" = ( /obj/machinery/disposal/bin, /obj/machinery/airalarm/directional/south, @@ -14698,7 +14717,7 @@ /area/station/cargo/storage) "dVM" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dWd" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -14850,16 +14869,16 @@ /turf/open/floor/iron/dark, /area/station/cargo/drone_bay) "dYU" = ( -/obj/effect/turf_decal/caution/stand_clear/white{ - dir = 1 +/obj/structure/chair/office/light{ + dir = 4 }, -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/door/window/elevator/right/directional/south{ - elevator_mode = 1; - transport_linked_id = "tram_lower_center_lift" +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "dZu" = ( /obj/machinery/mecha_part_fabricator, /obj/effect/turf_decal/delivery, @@ -14890,6 +14909,7 @@ }, /obj/effect/turf_decal/trimline/red/filled/line, /obj/item/radio/intercom/directional/south, +/obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/station/security/checkpoint/science) "eaq" = ( @@ -15003,7 +15023,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "ecg" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -15221,7 +15241,7 @@ req_one_access = list("teleporter","minisat") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "egK" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 @@ -15260,7 +15280,7 @@ /obj/structure/cable, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ehS" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 1 @@ -15268,7 +15288,7 @@ /obj/effect/turf_decal/trimline/yellow/line, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eiy" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, @@ -15406,7 +15426,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ekh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15451,7 +15471,7 @@ /obj/effect/turf_decal/bot, /obj/structure/rack, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "elM" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue/opposingcorners, @@ -15741,7 +15761,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "esA" = ( /obj/machinery/iv_drip, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -15765,7 +15785,7 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 5 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/primary/tram/right) @@ -15831,7 +15851,8 @@ name = "AI Upload Turret Control"; pixel_x = 25; req_access = list("minisat"); - control_area = "/area/station/ai_monitored/turret_protected/ai_upload" + control_area = "/area/station/ai/upload/chamber"; + dir = 4 }, /turf/open/floor/iron/dark, /area/station/science/lower) @@ -15986,7 +16007,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "exF" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -16032,7 +16053,8 @@ dir = 10 }, /obj/machinery/firealarm/directional/west{ - pixel_y = 5 + pixel_y = 5; + pixel_x = -22 }, /obj/machinery/light_switch/directional/west{ pixel_x = -22; @@ -16065,7 +16087,8 @@ /obj/structure/sign/warning/docking{ name = "KEEP CLEAR: TRAM DOCKING AREA sign"; desc = "A warning sign which reads 'KEEP CLEAR OF TRAM DOCKING AREA'."; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/thinplating, /obj/structure/disposalpipe/segment{ @@ -16276,7 +16299,7 @@ /obj/machinery/space_heater, /obj/effect/turf_decal/bot, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "eBF" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -16351,7 +16374,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -3; pixel_y = 3 }, @@ -16579,6 +16602,9 @@ /obj/structure/sign/poster/official/cleanliness/directional/west, /turf/open/floor/iron/freezer, /area/station/security/prison/shower) +"eHN" = ( +/turf/closed/wall, +/area/station/medical/paramedic) "eHR" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -16649,7 +16675,7 @@ /obj/effect/spawner/random/armory/riot_helmet, /obj/effect/spawner/random/armory/riot_shield, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eJI" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -16793,23 +16819,6 @@ /obj/machinery/computer/pandemic, /turf/open/floor/iron/white, /area/station/medical/virology) -"eNM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/status_display/ai/directional/east{ - pixel_y = -32 - }, -/obj/structure/cable/layer1, -/obj/effect/turf_decal/trimline/yellow/arrow_cw{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "eNP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -16965,28 +16974,23 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "eQL" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/medical{ - pixel_y = 34 - }, -/obj/structure/sign/directions/engineering{ - pixel_y = 40 +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_y = 7 }, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = 22 +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = -7 }, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 14 }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ +/obj/structure/sign/directions/supply{ dir = 1 }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) +/turf/closed/wall, +/area/station/hallway/primary/tram/right) "eQN" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/airalarm/directional/west, @@ -17079,7 +17083,7 @@ /obj/item/key/security, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eSs" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -17105,10 +17109,10 @@ /area/station/hallway/primary/tram/center) "eSH" = ( /obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted, /obj/machinery/computer/records/medical{ dir = 1 }, -/obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron, /area/station/command/bridge) "eSI" = ( @@ -17302,7 +17306,7 @@ freerange = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eVn" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -17749,16 +17753,12 @@ /turf/open/floor/iron, /area/station/commons/fitness/recreation) "ffe" = ( -/obj/machinery/flasher/directional/south{ - pixel_x = 20; - id = "AI" - }, /obj/machinery/door/window/brigdoor/right/directional/north{ name = "Primary AI Core Access"; req_access = list("ai_upload") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ffh" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -17845,7 +17845,7 @@ dir = 8 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "fhv" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 6 @@ -17930,7 +17930,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "fhM" = ( /obj/machinery/door/airlock/public/glass{ name = "Library" @@ -17982,7 +17982,7 @@ }, /obj/machinery/light/directional/west, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fiS" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Public Garden Maintenance Hatch" @@ -18295,6 +18295,7 @@ /turf/open/floor/engine, /area/station/engineering/supermatter/room) "fnZ" = ( +/obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/station/security/checkpoint/science) "fof" = ( @@ -18328,7 +18329,7 @@ dir = 8 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/security/brig, @@ -19026,6 +19027,15 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron, /area/station/commons/storage/tools) +"fDA" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + name = "Office Shutters"; + id = "paramedic_shutters" + }, +/turf/open/floor/plating, +/area/station/medical/medbay/lobby) "fDS" = ( /obj/machinery/door/airlock/engineering/glass{ name = "Laser Room" @@ -19102,7 +19112,7 @@ }, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "fEZ" = ( /obj/structure/noticeboard/directional/north, /obj/item/fish_tank/lawyer, @@ -19193,7 +19203,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fFO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/navigate_destination/disposals, @@ -19225,6 +19235,9 @@ /obj/machinery/light/cold/directional/south, /turf/open/floor/iron, /area/station/commons/dorms) +"fGF" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/construction/engineering) "fGK" = ( /mob/living/carbon/human/species/monkey, /obj/structure/window/reinforced/spawner/directional/west, @@ -19285,7 +19298,7 @@ freerange = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fHV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -19466,11 +19479,9 @@ anchored = 1 }, /obj/effect/turf_decal/bot, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fLE" = ( /obj/structure/table, /obj/machinery/camera/directional/north{ @@ -19561,7 +19572,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fMQ" = ( /obj/machinery/air_sensor/ordnance_burn_chamber, /turf/open/floor/engine/vacuum, @@ -19614,7 +19625,7 @@ /area/station/maintenance/solars/port) "fNR" = ( /obj/structure/closet/lasertag/blue, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/structure/sign/poster/official/random/directional/east, /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/dark/smooth_large, @@ -19977,7 +19988,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fVN" = ( /obj/machinery/door/airlock/hatch{ name = "Emergency Exit" @@ -20047,11 +20058,19 @@ /turf/open/floor/iron/white, /area/station/science/lower) "fWX" = ( -/obj/structure/sign/departments/engineering{ - pixel_x = 32 +/obj/machinery/computer/records/medical{ + dir = 8 }, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/button/door/directional/east{ + pixel_y = 0; + id = "paramedic_shutters"; + name = "Shutters button"; + pixel_x = 23; + req_access = list("paramedic") + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "fXb" = ( /obj/machinery/door/airlock{ name = "Barber Maintenance" @@ -20074,10 +20093,7 @@ /turf/open/floor/wood/large, /area/station/service/barber) "fXf" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/plating, /area/station/hallway/secondary/entry) "fXl" = ( @@ -20158,7 +20174,7 @@ }, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fYB" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/catwalk_floor, @@ -20507,7 +20523,7 @@ /obj/effect/spawner/round_default_module, /obj/machinery/camera/motion/directional/east, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "gfX" = ( /obj/structure/fluff/iced_abductor, /turf/open/misc/asteroid/airless, @@ -20544,7 +20560,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ggH" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -20655,6 +20671,7 @@ /obj/effect/turf_decal/trimline/neutral/corner{ dir = 1 }, +/obj/structure/sign/departments/cargo/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) "giT" = ( @@ -20813,9 +20830,6 @@ /obj/machinery/door/airlock/medical/glass{ name = "Treatment Center" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, @@ -20824,6 +20838,9 @@ /obj/machinery/duct, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "glc" = ( @@ -20844,30 +20861,9 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "glv" = ( -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -40 - }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/tram/filled/line, -/obj/effect/turf_decal/trimline/tram/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/maintenance/tram/right) "glP" = ( /obj/structure/chair/plastic, /turf/open/floor/eighties/red, @@ -20892,11 +20888,11 @@ /turf/open/floor/iron, /area/station/commons/dorms) "gmj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, +/turf/open/floor/iron/dark, /area/station/maintenance/tram/mid) "gmm" = ( /obj/structure/cable, @@ -20998,27 +20994,22 @@ /turf/open/floor/carpet, /area/station/medical/psychology) "gnK" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/medical{ - pixel_y = -34 +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_y = 7 }, -/obj/structure/sign/directions/engineering{ - pixel_y = -40 +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 14 }, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = -22 +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -7 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/sign/directions/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/tram/filled/line, -/obj/effect/turf_decal/trimline/tram/filled/warning, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/tram/center) "gnL" = ( /obj/effect/turf_decal/trimline/red/filled/line, @@ -21216,7 +21207,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gsu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21273,6 +21264,15 @@ /obj/effect/turf_decal/trimline/red/filled/corner, /turf/open/floor/iron, /area/station/security/courtroom) +"gtC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/white/warning, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/iron, +/area/station/maintenance/tram/mid) "gtN" = ( /obj/structure/table, /obj/item/storage/bag/tray, @@ -21308,7 +21308,7 @@ c_tag = "Secure - AI Lower Ring Access" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gul" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -21406,7 +21406,8 @@ /area/station/hallway/primary/tram/left) "gwy" = ( /obj/structure/sign/warning/no_smoking{ - pixel_x = -28 + pixel_x = -28; + dir = 8 }, /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/atmos_control/nocontrol/incinerator{ @@ -21460,7 +21461,7 @@ /obj/machinery/flasher/portable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gxm" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -21545,9 +21546,6 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/ai/directional/west{ - pixel_y = 32 - }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "gyN" = ( @@ -21587,7 +21585,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gzY" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 @@ -21601,7 +21599,8 @@ dir = 8 }, /obj/structure/sign/warning/engine_safety{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/iron, /area/station/engineering/break_room) @@ -21903,7 +21902,7 @@ /area/station/science/research) "gFf" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "gFk" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 @@ -22084,6 +22083,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "gJs" = ( @@ -22255,7 +22255,7 @@ /area/station/medical/medbay/central) "gNm" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gNn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -22366,7 +22366,7 @@ dir = 8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gOA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -22401,7 +22401,7 @@ /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white/side, /area/station/science/research) "gOX" = ( @@ -22710,7 +22710,7 @@ c_tag = "Secure - AI Upper Ring North" }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "gVu" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/table, @@ -22795,7 +22795,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gWD" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -22939,7 +22939,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hae" = ( /obj/machinery/duct, /obj/structure/cable, @@ -23023,6 +23023,19 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) +"hbv" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/paramedic, +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "hbQ" = ( /obj/machinery/camera/directional/north{ c_tag = "Civilian - Holodeck Controls" @@ -23149,7 +23162,7 @@ /turf/open/floor/iron/dark/side{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "heS" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -23193,7 +23206,7 @@ c_tag = "Secure - AI Upper Ring West" }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hft" = ( /obj/structure/bed{ dir = 8 @@ -23240,7 +23253,7 @@ "hgn" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hgG" = ( /obj/structure/sign/warning/secure_area/directional/north, /obj/structure/disposalpipe/segment{ @@ -23266,7 +23279,7 @@ /obj/machinery/power/smes/super/full, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hht" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23320,7 +23333,7 @@ dir = 4 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hif" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -23581,7 +23594,7 @@ pixel_y = -1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hlB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line, @@ -23900,7 +23913,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "htr" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/preopen{ @@ -24075,11 +24088,6 @@ dir = 1 }, /area/station/hallway/secondary/service) -"hxL" = ( -/obj/structure/transport/linear/public, -/obj/effect/turf_decal/caution/stand_clear/red, -/turf/open/floor/plating/elevatorshaft, -/area/station/maintenance/tram/mid) "hyE" = ( /obj/structure/table/glass, /obj/item/book/manual/wiki/security_space_law{ @@ -24119,7 +24127,7 @@ /area/station/command/teleporter) "hzN" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hzQ" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/stripes/line{ @@ -24149,7 +24157,7 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 9 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit) @@ -24217,7 +24225,7 @@ c_tag = "Secure - AI Upper Ring South" }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hBK" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -24466,7 +24474,17 @@ /obj/item/pen, /obj/machinery/firealarm/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"hGc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + name = "Bridge Blast Door"; + id = "bunkermodeactivated" + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/station/command/bridge) "hGd" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -24652,7 +24670,7 @@ /area/station/engineering/main) "hJl" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hJA" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible, /obj/machinery/meter, @@ -24766,7 +24784,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/spawner/random/armory/shotgun, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hMs" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -24806,15 +24824,12 @@ /turf/open/floor/iron, /area/station/engineering/engine_smes) "hMQ" = ( -/obj/structure/sign/warning/secure_area{ - name = "HIGH SECURITY STORAGE"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "hNb" = ( /obj/structure/table/wood, /obj/item/papercutter{ @@ -24967,7 +24982,7 @@ /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/security/armory) +/area/station/security/armory) "hPA" = ( /obj/structure/chair/office{ dir = 1 @@ -25008,6 +25023,11 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"hPO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/asteroid) "hPQ" = ( /obj/structure/secure_safe/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -25046,18 +25066,15 @@ /turf/open/floor/iron, /area/station/science/ordnance/storage) "hQK" = ( -/obj/effect/turf_decal/siding/thinplating{ +/obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 4 }, -/obj/effect/turf_decal/trimline/dark_red/warning{ - dir = 6 - }, -/obj/structure/railing{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 }, -/obj/structure/transport/linear/public, -/turf/open/floor/plating/elevatorshaft, -/area/station/maintenance/tram/mid) +/turf/open/floor/iron, +/area/station/hallway/secondary/construction/engineering) "hQZ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/right/directional/south{ @@ -25260,7 +25277,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "hUQ" = ( /obj/machinery/teleport/station, /obj/structure/cable, @@ -25349,7 +25366,7 @@ /obj/machinery/status_display/ai/directional/north, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hXK" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -25535,7 +25552,7 @@ freerange = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hZL" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -25717,7 +25734,7 @@ dir = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "idg" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -25819,7 +25836,7 @@ name = "Dormatories Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -25924,7 +25941,7 @@ /obj/machinery/status_display/evac/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ihl" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -26184,7 +26201,7 @@ name = "Recreation Area Maintenance Access" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -26335,7 +26352,7 @@ pixel_y = 20 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iqZ" = ( /obj/structure/railing, /obj/machinery/door/window/right/directional/north{ @@ -26364,7 +26381,7 @@ pixel_y = -8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "irv" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 9 @@ -26512,7 +26529,7 @@ dir = 10 }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iue" = ( /obj/structure/table/glass, /obj/item/radio/intercom, @@ -26667,7 +26684,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iwV" = ( /obj/effect/turf_decal/trimline/white/filled/line{ dir = 4 @@ -26697,7 +26714,7 @@ /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{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/decal/cleanable/dirt, @@ -26730,7 +26747,7 @@ }, /obj/machinery/status_display/evac/directional/east, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ixK" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/duct, @@ -27194,7 +27211,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iHI" = ( /obj/machinery/door/airlock/public/glass{ name = "Courtroom" @@ -27255,21 +27272,6 @@ /turf/open/floor/iron, /area/station/engineering/engine_smes) "iIS" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = -34 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -40 - }, -/obj/structure/sign/directions/upload{ - pixel_y = -22 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/tram/filled/line, @@ -27305,7 +27307,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "iKg" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 1 @@ -27547,7 +27549,8 @@ /obj/machinery/button/flasher{ pixel_x = 23; pixel_y = -10; - id = "hopflash" + id = "hopflash"; + dir = 4 }, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) @@ -27761,7 +27764,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iSt" = ( /obj/structure/table/wood, /obj/item/staff/broom, @@ -27846,7 +27849,7 @@ }, /obj/item/kirbyplants/photosynthetic, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iTO" = ( /obj/structure/window/spawner/directional/east, /obj/structure/window/spawner/directional/west, @@ -27945,7 +27948,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iVj" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -28052,12 +28055,12 @@ /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) +/area/station/ai/satellite/interior) "iWQ" = ( /obj/structure/chair/office{ dir = 4 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/carpet, /area/station/commons/vacant_room/office) "iXx" = ( @@ -28112,6 +28115,14 @@ }, /turf/open/floor/plating/airless, /area/station/asteroid) +"iYD" = ( +/obj/machinery/flasher/directional/east{ + id = "AI"; + pixel_x = 22; + pixel_y = -5 + }, +/turf/open/floor/circuit, +/area/station/ai/satellite/chamber) "iYO" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -28405,7 +28416,7 @@ name = "Vacant Office A" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -28425,7 +28436,7 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jdt" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -28522,7 +28533,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jeS" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 6 @@ -28562,7 +28573,7 @@ "jfu" = ( /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "jfD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, /turf/open/floor/engine, @@ -28606,7 +28617,7 @@ "jgq" = ( /obj/structure/railing/corner, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "jgs" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -28721,7 +28732,7 @@ /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) +/area/station/ai/satellite/interior) "jim" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ @@ -28844,7 +28855,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jkn" = ( /obj/machinery/door/airlock{ name = "Custodial Closet" @@ -28925,7 +28936,7 @@ /obj/effect/turf_decal/stripes/end, /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jlo" = ( /obj/machinery/conveyor/inverted{ dir = 9; @@ -28945,7 +28956,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jlX" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -29024,7 +29035,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jnq" = ( /turf/closed/wall, /area/station/maintenance/central/lesser) @@ -29217,7 +29228,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jqv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -29233,6 +29244,13 @@ }, /turf/open/floor/iron/white, /area/station/science/research) +"jqH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/tram/mid) "jqK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -29327,13 +29345,13 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jrR" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jst" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -29468,13 +29486,9 @@ "jus" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/flasher/directional/west{ - pixel_y = -26; - id = "AI" - }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "juw" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -29501,9 +29515,9 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/cable, -/obj/effect/spawner/random/armory/laser_gun, +/obj/effect/spawner/random/armory/pick_laser_loadout, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "juV" = ( /obj/structure/chair{ dir = 8 @@ -29722,7 +29736,7 @@ name = "Science Maintenance Hatch" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -30012,6 +30026,18 @@ /obj/machinery/meter, /turf/open/floor/iron, /area/station/engineering/atmos) +"jCX" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/dogbed{ + name = "cat bed"; + desc = "A comfy-looking cat bed. You can even strap your pet in, in case the gravity turns off." + }, +/mob/living/basic/pet/cat/jerry, +/turf/open/floor/iron, +/area/station/maintenance/tram/mid) "jDd" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/rnd_secure_all, @@ -30175,10 +30201,10 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jFR" = ( /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jGi" = ( /obj/effect/turf_decal/siding/thinplating, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30252,7 +30278,7 @@ "jHc" = ( /obj/structure/rack, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jHd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -30305,7 +30331,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jIy" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/rnd_all, @@ -30353,7 +30379,7 @@ /area/station/cargo/sorting) "jJv" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jJz" = ( /obj/structure/chair{ dir = 8 @@ -30410,7 +30436,7 @@ /area/station/cargo/storage) "jJX" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -30506,7 +30532,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jLy" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 4 @@ -30540,14 +30566,12 @@ /area/station/engineering/atmos) "jMe" = ( /obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/camera/directional/south{ network = list("ss13","Security"); c_tag = "Civilian - Security Outpost" }, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/security/checkpoint/arrivals) "jMo" = ( @@ -30902,7 +30926,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jUW" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ @@ -30928,15 +30952,12 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "jVG" = ( -/obj/structure/sign/warning/secure_area{ - name = "HIGH SECURITY STORAGE"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jVT" = ( /obj/structure/table, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -30968,7 +30989,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jWg" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/machinery/camera/directional/south{ @@ -31005,7 +31026,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jWs" = ( /turf/closed/wall/r_wall, /area/station/security/execution/transfer) @@ -31175,7 +31196,7 @@ /area/station/service/chapel/office) "jYf" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jYj" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -31190,7 +31211,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jYr" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance_hatch{ @@ -31198,7 +31219,7 @@ }, /obj/machinery/duct, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -31397,7 +31418,7 @@ pixel_y = 20 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kbi" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -31450,22 +31471,14 @@ /turf/open/floor/plating, /area/station/maintenance/tram/left) "kbG" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/warning{ +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 }, -/obj/structure/railing{ +/obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 4 }, -/obj/structure/transport/linear/public, -/obj/machinery/elevator_control_panel/directional/east{ - linked_elevator_id = "tram_lower_center_lift"; - preset_destination_names = list("2"="Lower Deck", "3"="Upper Deck") - }, -/turf/open/floor/plating/elevatorshaft, -/area/station/maintenance/tram/mid) +/turf/open/floor/iron, +/area/station/hallway/secondary/construction/engineering) "kbM" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31723,7 +31736,7 @@ "keJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "keN" = ( /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, @@ -31861,7 +31874,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kgG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -31951,6 +31964,9 @@ name = "Secure Medical Storage"; req_access = list("medical") }, +/obj/item/defibrillator/loaded{ + pixel_y = 6 + }, /obj/item/clothing/glasses/blindfold, /obj/item/clothing/glasses/blindfold, /obj/item/clothing/ears/earmuffs, @@ -31960,6 +31976,16 @@ }, /turf/open/floor/iron/dark, /area/station/medical/storage) +"kiG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "kiN" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -31967,6 +31993,7 @@ }, /obj/machinery/firealarm/directional/west, /obj/machinery/light/cold/directional/north, +/obj/machinery/airalarm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "kiT" = ( @@ -32027,7 +32054,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kjH" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/white/full, @@ -32090,7 +32117,8 @@ pixel_y = 9; id = "private_a"; specialfunctions = 4; - normaldoorcontrol = 1 + normaldoorcontrol = 1; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32165,7 +32193,7 @@ /obj/machinery/suit_storage_unit/security, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kli" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -32206,7 +32234,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/hallway/primary/tram/center) @@ -32300,6 +32328,11 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) +"knG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating, +/area/station/maintenance/tram/mid) "knM" = ( /obj/effect/turf_decal/trimline/neutral/warning, /obj/machinery/smartfridge/organ, @@ -32807,7 +32840,7 @@ "kwe" = ( /obj/structure/ladder, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "kwk" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -32846,7 +32879,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/spawner/random/armory/disablers, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kwD" = ( /obj/effect/landmark/start/cargo_technician, /turf/open/floor/glass, @@ -32858,15 +32891,11 @@ /turf/open/floor/iron, /area/station/commons/fitness/recreation) "kxC" = ( -/mob/living/basic/pet/cat/jerry, /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/dogbed{ - name = "cat bed"; - desc = "A comfy-looking cat bed. You can even strap your pet in, in case the gravity turns off." - }, +/obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/iron, /area/station/maintenance/tram/mid) "kxF" = ( @@ -33029,7 +33058,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "kzT" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -33232,7 +33261,7 @@ /turf/open/floor/iron/dark/corner{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kDF" = ( /obj/structure/closet/wardrobe/miner, /obj/structure/disposalpipe/segment, @@ -33269,6 +33298,12 @@ }, /turf/open/floor/iron/dark, /area/station/security/courtroom) +"kEM" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "kEN" = ( /obj/structure/stairs/north, /turf/open/floor/iron/stairs/right, @@ -34035,7 +34070,7 @@ /turf/open/floor/iron/dark/side{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kPC" = ( /turf/closed/wall/rust, /area/station/security/prison/workout) @@ -34090,7 +34125,7 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/power_store/cell/high, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kQR" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/item/food/grown/banana/bunch{ @@ -34649,7 +34684,7 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kZB" = ( /obj/effect/landmark/start/hangover, /obj/structure/cable, @@ -34698,7 +34733,7 @@ c_tag = "Secure - AI Antechamber East" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kZM" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -34905,14 +34940,17 @@ }, /obj/machinery/button/door/incinerator_vent_ordmix{ pixel_x = 24; - pixel_y = 8 + pixel_y = 8; + dir = 4 }, /obj/machinery/button/ignition/incinerator/ordmix{ pixel_x = 24; - pixel_y = -6 + pixel_y = -6; + dir = 4 }, /obj/machinery/airlock_controller/incinerator_ordmix{ - pixel_x = -24 + pixel_x = -24; + dir = 4 }, /obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/engine, @@ -34988,8 +35026,8 @@ "lgP" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/rack, -/obj/item/tank/jetpack/oxygen, -/obj/item/tank/jetpack/oxygen{ +/obj/item/tank/jetpack, +/obj/item/tank/jetpack{ pixel_x = 3; pixel_y = 3 }, @@ -35049,19 +35087,18 @@ /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) "liB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#52B4E9" }, -/obj/machinery/computer/crew, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/turf/open/floor/plating, +/area/station/medical/paramedic) "liC" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "liN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, @@ -35074,7 +35111,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lje" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -35287,18 +35324,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/main) -"llU" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/machinery/button/elevator/directional/north{ - id = "tram_lower_center_lift" - }, -/obj/machinery/lift_indicator/directional/north{ - linked_elevator_id = "tram_lower_center_lift" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) "llY" = ( /obj/machinery/computer/dna_console{ dir = 4 @@ -35350,6 +35375,16 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/station/commons/dorms) +"lmF" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/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/dark, +/area/station/medical/paramedic) "lmG" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -35377,11 +35412,18 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "lns" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/space_heater, /turf/open/floor/iron, -/area/station/maintenance/tram/mid) +/area/station/hallway/secondary/construction/engineering) "lnO" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 @@ -35471,7 +35513,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "loG" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 @@ -35592,7 +35634,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lqS" = ( /obj/structure/table/wood, /obj/item/book/bible, @@ -35663,13 +35705,13 @@ /obj/effect/mapping_helpers/requests_console/assistance, /obj/structure/cable/multilayer/connected, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lry" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lrA" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -35797,16 +35839,6 @@ "ltw" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/captain/private) -"ltL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/gauze, -/obj/structure/table/glass, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "ltZ" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 5 @@ -35996,7 +36028,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lxm" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -36141,7 +36173,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/spawner/random/armory/bulletproof_helmet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lyK" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 @@ -36249,7 +36281,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lAO" = ( /obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ dir = 4 @@ -36513,12 +36545,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"lEL" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "lEU" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 4 @@ -36628,10 +36654,10 @@ /obj/machinery/turretid{ name = "AI Antechamber turret control"; pixel_y = -25; - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior" + control_area = "/area/station/ai/satellite/interior" }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lHp" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/light/small/directional/north, @@ -36763,9 +36789,7 @@ /turf/open/floor/iron, /area/station/cargo/miningdock) "lJu" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, +/obj/structure/sign/warning/vacuum/external/directional/west, /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 }, @@ -36811,7 +36835,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lKE" = ( /obj/structure/table, /obj/item/storage/box/donkpockets, @@ -37171,12 +37195,8 @@ /area/station/cargo/warehouse) "lQH" = ( /obj/effect/turf_decal/caution/stand_clear/white, -/obj/machinery/door/window/elevator/left/directional/north{ - elevator_mode = 1; - transport_linked_id = "tram_lower_center_lift" - }, /turf/open/floor/iron, -/area/station/maintenance/tram/mid) +/area/station/hallway/secondary/construction/engineering) "lQM" = ( /turf/closed/wall/r_wall, /area/station/maintenance/port/central) @@ -37277,7 +37297,7 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lSI" = ( /obj/machinery/newscaster/directional/east, /obj/machinery/conveyor_switch/oneway{ @@ -37310,7 +37330,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/effect/landmark/start/paramedic, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "lTh" = ( @@ -37769,7 +37788,8 @@ pixel_x = 9; pixel_y = 27; id = "permafrontdoor"; - req_access = list("brig") + req_access = list("brig"); + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37911,7 +37931,7 @@ /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/security/armory) +/area/station/security/armory) "mcX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37944,13 +37964,13 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "mdr" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mdD" = ( /obj/effect/turf_decal/siding/thinplating, /obj/effect/turf_decal/siding/thinplating{ @@ -37980,7 +38000,7 @@ /area/station/maintenance/tram/left) "mdV" = ( /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "meb" = ( /obj/effect/landmark/carpspawn, /turf/open/space/openspace, @@ -38133,7 +38153,6 @@ listening = 0; freerange = 1 }, -/obj/effect/landmark/start/ai, /obj/machinery/button/door/directional/south{ name = "AI Core Shutters Control"; pixel_x = 24; @@ -38141,8 +38160,9 @@ req_access = list("ai_upload") }, /obj/structure/cable, +/obj/effect/landmark/start/ai, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mgj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -38692,7 +38712,7 @@ c_tag = "Secure - AI Upper Ring Access" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "mrS" = ( /obj/structure/chair{ dir = 8 @@ -38895,7 +38915,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mxf" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -38909,7 +38929,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mxw" = ( /obj/machinery/door/airlock/research{ name = "Chemical Storage" @@ -38927,11 +38947,10 @@ /turf/open/floor/carpet, /area/station/commons/vacant_room/office) "mxR" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 8 }, -/obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/structure/table, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) "mya" = ( @@ -39273,7 +39292,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mEd" = ( /obj/structure/railing{ dir = 1 @@ -39376,7 +39395,7 @@ "mGl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "mGo" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -39436,7 +39455,7 @@ c_tag = "Secure - AI Antechamber West" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mHc" = ( /turf/open/floor/iron/checker, /area/station/commons/lounge) @@ -39455,7 +39474,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/smooth, @@ -39482,6 +39501,9 @@ }, /obj/effect/turf_decal/stripes/white/line, /obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, /turf/open/floor/plating, /area/station/maintenance/tram/mid) "mHP" = ( @@ -39618,6 +39640,13 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/showroomfloor, /area/station/security/lockers) +"mJE" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "mJG" = ( /obj/structure/chair/stool/bar/directional/north, /obj/effect/turf_decal/siding/thinplating{ @@ -39678,7 +39707,7 @@ /obj/vehicle/ridden/secway, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mKQ" = ( /obj/machinery/dna_infuser, /obj/structure/extinguisher_cabinet/directional/east, @@ -39746,7 +39775,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "mMn" = ( @@ -39877,7 +39906,7 @@ dir = 8 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/security/brig, @@ -39935,6 +39964,13 @@ }, /turf/open/floor/iron, /area/station/security/courtroom/holding) +"mQH" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "mQS" = ( /obj/structure/chair/comfy/beige, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -40200,7 +40236,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mYw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -40213,7 +40249,7 @@ }, /obj/machinery/newscaster/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mYI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40372,7 +40408,7 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nbI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -40453,8 +40489,12 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/cable, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = -10 + }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ndz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40664,11 +40704,11 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "nhj" = ( @@ -40820,7 +40860,7 @@ /area/station/solars/starboard/fore) "njC" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "njI" = ( /obj/effect/turf_decal/siding/thinplating/corner{ dir = 1 @@ -40866,7 +40906,8 @@ dir = 4 }, /obj/structure/sign/departments/security{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/machinery/light/directional/west, /turf/open/floor/iron, @@ -40996,7 +41037,7 @@ /turf/open/floor/iron, /area/station/hallway/secondary/service) "nlF" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 8 }, /obj/structure/window/reinforced/spawner/directional/east, @@ -41300,7 +41341,7 @@ req_access = list("captain") }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nrh" = ( /obj/structure/table/glass, /obj/item/storage/fancy/coffee_cart_rack{ @@ -41395,7 +41436,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nsv" = ( /obj/machinery/camera/directional/north{ network = list("test","rd"); @@ -41533,7 +41574,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "nwd" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 @@ -41890,6 +41931,14 @@ /obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/catwalk_floor, /area/station/hallway/primary/tram/center) +"nBg" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/structure/closet/firecloset, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/service) "nBj" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -41913,7 +41962,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "nBy" = ( @@ -41934,7 +41983,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nCe" = ( /turf/open/floor/iron, /area/station/security/courtroom) @@ -41945,6 +41994,19 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/white, /area/station/science/ordnance) +"nCl" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east{ + pixel_x = 26 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "nCy" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -42010,32 +42072,22 @@ /turf/open/floor/plating, /area/station/hallway/primary/tram/center) "nEu" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/security{ +/obj/structure/sign/directions/vault{ dir = 1; - pixel_y = 34 + pixel_y = 7 }, /obj/structure/sign/directions/command{ dir = 1; - pixel_y = 40 + pixel_y = -7 }, -/obj/structure/sign/directions/vault{ +/obj/structure/sign/directions/security{ dir = 1; - pixel_y = 22 + pixel_y = 14 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/sign/directions/supply{ dir = 4 }, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/tram/left) "nEB" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -42296,22 +42348,6 @@ /turf/open/floor/iron, /area/station/hallway/secondary/command) "nKo" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = -34 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = -40 - }, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = -22 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42342,6 +42378,7 @@ dir = 4 }, /obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "nKU" = ( @@ -42474,7 +42511,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nNl" = ( /obj/structure/holosign/barrier/atmos/tram, /obj/structure/disposalpipe/segment{ @@ -42534,7 +42571,7 @@ name = "Tram Mechanical Room" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron/smooth, @@ -42692,12 +42729,14 @@ }, /area/station/command/gateway) "nRK" = ( -/obj/effect/turf_decal/trimline/dark_red/warning{ +/obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 }, -/obj/structure/transport/linear/public, -/turf/open/floor/plating/elevatorshaft, -/area/station/maintenance/tram/mid) +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction/engineering) "nRO" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -43099,22 +43138,6 @@ /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "nYq" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -34 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -40 - }, -/obj/structure/sign/directions/vault{ - dir = 1; - pixel_y = -22 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -43154,7 +43177,7 @@ name = "Recreation Area Maintenance Hatch" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43228,7 +43251,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 6 }, -/obj/machinery/airalarm/directional/east, /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -43318,7 +43340,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "obz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ @@ -43409,9 +43431,8 @@ "odF" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "odH" = ( -/obj/structure/closet/l3closet, /obj/effect/turf_decal/siding/white{ dir = 1 }, @@ -43600,31 +43621,10 @@ /turf/open/floor/wood, /area/station/commons/dorms) "oiv" = ( -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/structure/sign/departments/science{ + pixel_y = -32 }, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) @@ -43998,10 +43998,10 @@ "oqi" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oqp" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oqy" = ( /obj/machinery/conveyor{ id = "cargolower" @@ -44207,7 +44207,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ouE" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 @@ -44235,7 +44235,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ouQ" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, @@ -44502,7 +44502,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oCe" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -44573,7 +44573,7 @@ dir = 1 }, /obj/machinery/firealarm/directional/east, -/obj/machinery/suit_storage_unit/medical, +/obj/structure/closet/l3closet, /turf/open/floor/iron/dark, /area/station/medical/storage) "oDj" = ( @@ -44883,7 +44883,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "oLn" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/effect/turf_decal/siding/thinplating{ @@ -44928,13 +44928,13 @@ /area/station/science/research) "oMI" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "oMK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oMP" = ( /obj/machinery/firealarm/directional/south{ pixel_x = 3 @@ -44972,7 +44972,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oNp" = ( /obj/structure/sink{ pixel_y = 15 @@ -45025,15 +45025,15 @@ /turf/open/floor/iron/freezer, /area/station/science/lower) "oNW" = ( -/obj/effect/turf_decal/trimline/dark_red/warning{ +/obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 9 }, -/obj/structure/railing{ - dir = 8 +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 }, -/obj/structure/transport/linear/public, -/turf/open/floor/plating/elevatorshaft, -/area/station/maintenance/tram/mid) +/obj/structure/closet/firecloset, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction/engineering) "oOb" = ( /obj/structure/railing, /obj/effect/turf_decal/delivery, @@ -45166,7 +45166,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/dim/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oQU" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/open/misc/grass/jungle/station, @@ -45295,7 +45295,7 @@ dir = 9 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "oTc" = ( /obj/machinery/conveyor{ dir = 6; @@ -45487,7 +45487,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oWZ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -45517,7 +45517,7 @@ id = "teledoor" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "oXz" = ( /obj/machinery/iv_drip, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -45691,7 +45691,7 @@ /obj/structure/cable, /obj/effect/spawner/random/armory/e_gun, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pbr" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/stripes/line{ @@ -45741,16 +45741,6 @@ "pcu" = ( /turf/closed/wall/r_wall, /area/station/maintenance/tram/mid) -"pcx" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) "pcA" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/herringbone, @@ -46342,7 +46332,7 @@ /obj/item/folder/documents, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pnD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -46369,7 +46359,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "pnU" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -46475,12 +46465,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/office) -"pps" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "ppK" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -46513,7 +46497,8 @@ dir = 1 }, /obj/structure/sign/departments/security{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/machinery/light/directional/east, /turf/open/floor/iron, @@ -46657,7 +46642,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pth" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/structure/sign/warning/secure_area/directional/north, @@ -46745,7 +46730,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "puL" = ( /obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ name = "Burn Chamber Exterior Airlock" @@ -46790,7 +46775,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pvp" = ( /obj/effect/turf_decal/trimline/yellow/filled/end{ dir = 1 @@ -46815,32 +46800,23 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "pvI" = ( -/obj/structure/sign/directions/evac{ +/obj/structure/sign/directions/upload{ dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 34 + pixel_y = -7 }, /obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/upload{ - pixel_y = 22 + dir = 4; + pixel_y = 7 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 14 }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ - dir = 1 +/obj/structure/sign/directions/evac{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) +/turf/closed/wall, +/area/station/hallway/primary/tram/left) "pvL" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/trimline/yellow/filled/corner, @@ -46935,7 +46911,8 @@ "pxf" = ( /obj/structure/closet/secure_closet/hos, /obj/structure/secure_safe/hos{ - pixel_x = 35 + pixel_x = 35; + dir = 1 }, /obj/structure/sign/poster/official/space_cops/directional/north, /turf/open/floor/carpet, @@ -47030,6 +47007,18 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"pyq" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + 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, +/area/station/medical/medbay/central) "pyz" = ( /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -47049,7 +47038,7 @@ req_access = list("security") }, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pyG" = ( /obj/machinery/atmospherics/components/binary/tank_compressor{ dir = 8 @@ -47148,7 +47137,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pAv" = ( /obj/structure/curtain, /obj/machinery/shower/directional/north, @@ -47165,7 +47154,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/navigate_destination/vault, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pAC" = ( /obj/effect/turf_decal/siding/thinplating/end, /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4{ @@ -47175,7 +47164,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pAD" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ dir = 1 @@ -47205,7 +47194,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/science/research) "pAT" = ( @@ -47413,7 +47402,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white/side, /area/station/science/research) "pFm" = ( @@ -47421,7 +47410,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pFu" = ( /obj/item/experi_scanner{ pixel_x = 5 @@ -47618,6 +47607,9 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/miningdock) +"pIc" = ( +/turf/closed/wall, +/area/station/hallway/secondary/construction/engineering) "pIk" = ( /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47636,7 +47628,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "pIt" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -47683,7 +47675,7 @@ "pIQ" = ( /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pIS" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -47849,7 +47841,7 @@ "pMi" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pMk" = ( /turf/closed/wall/r_wall, /area/station/science/research) @@ -47881,7 +47873,7 @@ /obj/effect/turf_decal/siding/thinplating/corner, /obj/structure/ladder, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pMS" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 @@ -48087,15 +48079,15 @@ /turf/open/floor/glass, /area/station/commons/fitness/recreation) "pPN" = ( -/obj/effect/turf_decal/trimline/dark_red/warning{ - dir = 10 +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 }, -/obj/structure/railing{ +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 }, -/obj/structure/transport/linear/public, -/turf/open/floor/plating/elevatorshaft, -/area/station/maintenance/tram/mid) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction/engineering) "pPP" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 @@ -48164,7 +48156,7 @@ dir = 8 }, /turf/open/floor/plating/airless, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pRm" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -48277,7 +48269,7 @@ "pUz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pUC" = ( /obj/machinery/portable_atmospherics/pump{ name = "Lil Pump" @@ -48413,13 +48405,13 @@ /turf/open/floor/iron, /area/station/service/hydroponics/garden) "pWN" = ( -/obj/structure/plaque/static_plaque/golden/commission/tram, /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, +/obj/structure/plaque/static_plaque/golden/commission/tram, /turf/open/floor/iron/dark, /area/station/command/bridge) "pWO" = ( @@ -48467,7 +48459,7 @@ }, /obj/item/kirbyplants/photosynthetic, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pXq" = ( /mob/living/simple_animal/bot/mulebot, /obj/effect/turf_decal/delivery, @@ -48488,7 +48480,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pXG" = ( /obj/structure/railing{ dir = 8 @@ -48666,7 +48658,7 @@ /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/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qaN" = ( /obj/structure/cable, /turf/open/floor/carpet, @@ -48740,7 +48732,7 @@ /turf/open/floor/iron, /area/station/security/courtroom) "qcw" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/item/radio/intercom/directional/south, @@ -49052,9 +49044,7 @@ /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/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/tram/left) "qib" = ( @@ -49073,7 +49063,6 @@ /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/medical/coldroom) "qik" = ( -/obj/structure/sign/warning/radiation, /obj/effect/baseturf_helper/space, /turf/closed/wall/r_wall, /area/station/engineering/supermatter) @@ -49253,7 +49242,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Tunnel Access Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/smooth, @@ -49328,7 +49317,7 @@ }, /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron/dark/corner, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qnd" = ( /obj/structure/rack, /obj/item/reagent_containers/cup/bottle/iron{ @@ -49425,6 +49414,10 @@ }, /turf/open/floor/iron, /area/station/command/heads_quarters/ce) +"qpd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/asteroid) "qpj" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/landmark/start/prisoner, @@ -49447,6 +49440,10 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"qpv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/hallway/secondary/construction/engineering) "qpD" = ( /turf/open/misc/asteroid, /area/station/maintenance/department/eva) @@ -49508,15 +49505,12 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qrg" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/status_display/evac/directional/east{ - pixel_y = 32 - }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "qrl" = ( @@ -49543,6 +49537,17 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) +"qrF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/tram/mid) "qrI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -49575,6 +49580,7 @@ "qsm" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/sign/poster/official/safety_report/directional/south, +/obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/station/security/checkpoint/science) "qsJ" = ( @@ -49640,10 +49646,6 @@ /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 }, -/obj/structure/sign/departments/cargo{ - pixel_x = -32; - pixel_y = 32 - }, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) "qtM" = ( @@ -49679,7 +49681,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "qug" = ( /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49967,7 +49969,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Tunnel Access Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/disposalpipe/segment, @@ -50145,33 +50147,23 @@ /turf/open/floor/engine, /area/station/engineering/supermatter/room) "qCJ" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 34 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = 40 - }, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = 22 +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 14 }, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -7 }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ +/obj/structure/sign/directions/supply{ dir = 1 }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) +/turf/closed/wall, +/area/station/hallway/primary/tram/right) "qCP" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -50257,16 +50249,6 @@ /obj/effect/mapping_helpers/airlock/access/all/science/ordnance, /turf/open/floor/iron/dark/airless, /area/station/science/ordnance/freezerchamber) -"qDQ" = ( -/obj/structure/transport/linear/public, -/obj/effect/landmark/transport/transport_id{ - specific_transport_id = "tram_lower_center_lift" - }, -/obj/effect/abstract/elevator_music_zone{ - linked_elevator_id = "tram_lower_center_lift" - }, -/turf/open/floor/plating/elevatorshaft, -/area/station/maintenance/tram/mid) "qEb" = ( /obj/structure/easel, /obj/item/canvas/twentythree_twentythree, @@ -50455,6 +50437,7 @@ "qIq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /obj/machinery/light/directional/west, +/obj/machinery/status_display/ai/directional/west, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "qIs" = ( @@ -50519,7 +50502,7 @@ dir = 1 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "qJs" = ( /obj/structure/table/glass, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -50857,7 +50840,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qPX" = ( /obj/structure/table, /obj/item/analyzer, @@ -50891,7 +50874,8 @@ "qQW" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/sign/flag{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/cafeteria, /area/station/science/breakroom) @@ -51069,6 +51053,18 @@ /obj/effect/turf_decal/tile/neutral/tram, /turf/open/indestructible/tram/plate, /area/station/hallway/primary/tram/center) +"qUr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west{ + pixel_y = 5 + }, +/obj/structure/table/glass, +/obj/item/surgicaldrill, +/obj/item/toy/figure/paramedic, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "qUy" = ( /obj/machinery/camera/directional/south{ name = "holodeck camera"; @@ -51351,7 +51347,7 @@ id = "AI" }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qYQ" = ( /obj/machinery/computer/message_monitor{ dir = 1 @@ -51369,9 +51365,7 @@ /obj/machinery/door/airlock/external{ name = "Escape Airlock" }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "qYV" = ( @@ -51397,12 +51391,12 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "qZj" = ( @@ -51491,7 +51485,8 @@ dir = 8 }, /obj/structure/sign/departments/restroom{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/iron, /area/station/commons/dorms) @@ -51549,7 +51544,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rbM" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/north, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -51725,7 +51720,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/effect/landmark/navigate_destination/aiupload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "reU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/directional/south{ @@ -51737,9 +51732,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/obj/machinery/light/small/directional/south{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/disposal/incinerator) "rfi" = ( @@ -52017,7 +52010,7 @@ dir = 4 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rkd" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -52251,6 +52244,12 @@ /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /turf/open/floor/plating, /area/station/engineering/atmos/pumproom) +"rob" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/asteroid) "roi" = ( /obj/structure/chair/stool/directional/north, /obj/effect/turf_decal/trimline/dark_green/line{ @@ -52380,7 +52379,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Tunnel Access Hatch" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor, @@ -52527,7 +52526,8 @@ /area/station/engineering/break_room) "rsH" = ( /obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wideplating{ dir = 10 @@ -52536,11 +52536,11 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rsZ" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "rti" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -52588,9 +52588,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 }, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, +/obj/structure/sign/warning/secure_area/directional/west, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/security/office) @@ -53063,7 +53061,7 @@ }, /obj/effect/turf_decal/trimline/yellow/line, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rDT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/cafeteria, @@ -53212,12 +53210,12 @@ "rHC" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rIa" = ( /obj/machinery/porta_turret/ai, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "rIg" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -53631,7 +53629,7 @@ c_tag = "Secure - AI Core South" }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rOV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -53869,6 +53867,7 @@ /obj/item/mod/module/signlang_radio, /obj/item/mod/module/thermal_regulator, /obj/item/gun/syringe, +/obj/item/gun/syringe, /turf/open/floor/iron/dark, /area/station/medical/storage) "rSb" = ( @@ -53930,11 +53929,11 @@ /turf/open/floor/iron/dark/side{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rSB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rSC" = ( /obj/machinery/modular_computer/preset/civilian, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -53951,9 +53950,7 @@ /turf/open/floor/iron/white, /area/station/commons/vacant_room) "rTm" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, +/obj/structure/sign/warning/vacuum/external/directional/east, /obj/machinery/computer/security/labor, /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -54010,7 +54007,7 @@ /area/station/hallway/secondary/exit/departure_lounge) "rUR" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rUX" = ( /obj/structure/cable/multilayer/multiz, /obj/effect/turf_decal/stripes/box, @@ -54248,7 +54245,7 @@ /turf/open/floor/iron/dark/side{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rZx" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "Gas to Filter"; @@ -54356,9 +54353,6 @@ /obj/structure/plasticflaps/opaque, /turf/open/floor/plating, /area/station/engineering/atmos) -"saZ" = ( -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) "sbe" = ( /obj/structure/table/wood, /obj/structure/window/reinforced/spawner/directional/west{ @@ -54527,7 +54521,7 @@ c_tag = "Secure - AI Upload" }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "seR" = ( /turf/open/floor/glass/reinforced/tram, /area/station/hallway/primary/tram/right) @@ -54570,7 +54564,7 @@ /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/command/nuke_storage) +/area/station/command/vault) "sfX" = ( /obj/structure/table, /obj/item/radio/intercom/prison/directional/west, @@ -54640,7 +54634,7 @@ }, /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "shF" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump{ @@ -54867,7 +54861,7 @@ "skT" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -55023,7 +55017,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "snp" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw, /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ @@ -55139,7 +55133,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/rubbershot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "sql" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 @@ -55320,7 +55314,7 @@ name = "Maintenance Hatch" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, @@ -55623,7 +55617,7 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 9 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/primary/tram/right) @@ -55731,7 +55725,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, @@ -55812,7 +55806,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sAc" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/table, @@ -55949,7 +55943,7 @@ dir = 1 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "sDZ" = ( /turf/closed/wall, /area/station/maintenance/disposal/incinerator) @@ -55961,7 +55955,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sEx" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -55981,7 +55975,7 @@ }, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sEW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -56276,7 +56270,7 @@ pixel_y = -32 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "sKC" = ( /obj/structure/chair/office/light, /obj/effect/turf_decal/trimline/blue/filled/corner{ @@ -56492,31 +56486,23 @@ /turf/open/floor/iron, /area/station/engineering/main) "sOD" = ( -/obj/structure/sign/directions/supply{ +/obj/structure/sign/directions/upload{ dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -34 + pixel_y = 7 }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -40 +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 14 }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = -22 +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -7 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/sign/directions/evac{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/tram/filled/line, -/obj/effect/turf_decal/trimline/tram/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) +/turf/closed/wall, +/area/station/hallway/primary/tram/left) "sOI" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -56613,7 +56599,7 @@ "sQk" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "sQJ" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -56637,7 +56623,7 @@ c_tag = "Secure - AI Core North" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sRA" = ( /obj/structure/chair/sofa/corp/left, /turf/open/floor/wood/large, @@ -56653,7 +56639,7 @@ pixel_y = 20 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sRZ" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/chair{ @@ -56875,7 +56861,7 @@ /obj/machinery/holopad/secure, /obj/structure/cable, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "sVE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -56944,6 +56930,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/command/bridge) "sWY" = ( @@ -57007,7 +56994,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sXV" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/power/apc/auto_name/directional/south, @@ -57622,11 +57609,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/requests_console/directional/south{ - name = "Bridge Requests Console"; - pixel_y = 30; - department = "Bridge" - }, /obj/effect/mapping_helpers/requests_console/announcement, /obj/effect/mapping_helpers/requests_console/information, /obj/effect/mapping_helpers/requests_console/assistance, @@ -57636,6 +57618,10 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, +/obj/machinery/requests_console/directional/north{ + department = "Bridge"; + name = "Bridge Requests Console" + }, /turf/open/floor/iron, /area/station/command/bridge) "tjl" = ( @@ -58050,7 +58036,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "trr" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58094,7 +58080,7 @@ /obj/effect/spawner/random/maintenance/three, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "trZ" = ( /obj/effect/turf_decal/trimline/neutral/corner{ dir = 4 @@ -58129,7 +58115,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tsg" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 8 @@ -58414,6 +58400,7 @@ dir = 4 }, /obj/machinery/light/directional/west, +/obj/machinery/status_display/evac/directional/west, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "twS" = ( @@ -58506,7 +58493,7 @@ frequency = 1447 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tyB" = ( /obj/structure/bed{ dir = 4 @@ -58528,7 +58515,7 @@ dir = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tyV" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" @@ -58677,7 +58664,7 @@ /obj/structure/reagent_dispensers/wall/peppertank/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tBa" = ( /obj/structure/table, /obj/item/raw_anomaly_core/random{ @@ -58790,7 +58777,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/carpet, /area/station/commons/vacant_room/office) "tDn" = ( @@ -58798,7 +58785,7 @@ dir = 8 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "tDz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -59067,7 +59054,7 @@ "tIi" = ( /mob/living/basic/bot/repairbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tIk" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -59152,7 +59139,7 @@ "tJp" = ( /obj/machinery/teleport/station, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tJz" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/table, @@ -59209,7 +59196,7 @@ name = "Suit Storage" }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tKh" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 @@ -59289,7 +59276,8 @@ }, /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/structure/sign/warning/chem_diamond{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/structure/chair/office/light, /obj/effect/landmark/start/chemist, @@ -59366,7 +59354,7 @@ }, /obj/structure/cable, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "tNJ" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 @@ -59530,7 +59518,7 @@ "tQq" = ( /obj/machinery/recharge_station, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tQy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -59933,7 +59921,7 @@ "tXU" = ( /obj/structure/lattice, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "tXW" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/window/left/directional/east{ @@ -60058,7 +60046,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uba" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 @@ -60083,7 +60071,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ubt" = ( /obj/structure/chair/office/light{ dir = 1 @@ -60500,7 +60488,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uiV" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60684,9 +60672,9 @@ /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) +/area/station/security/armory) "ukE" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/structure/window/reinforced/spawner/directional/south, @@ -60709,7 +60697,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/power/port_gen/pacman, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "ulb" = ( /obj/machinery/chem_master, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -60836,22 +60824,22 @@ /turf/open/floor/circuit/telecomms/server, /area/station/science/server) "umx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/structure/sign/directions/upload{ + pixel_y = 7 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/west{ - pixel_y = -32 +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 14 }, -/obj/structure/cable/layer1, -/obj/effect/turf_decal/trimline/yellow/arrow_cw{ - dir = 8 +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -7 }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ +/obj/structure/sign/directions/evac{ dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/turf/closed/wall, +/area/station/hallway/primary/tram/right) "umC" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -60917,7 +60905,8 @@ dir = 5 }, /obj/structure/sign/warning/rad_shelter{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/light/directional/east, /turf/open/floor/iron, @@ -60951,11 +60940,11 @@ /turf/closed/wall/r_wall, /area/station/security/processing) "uoD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/iron/dark, /area/station/maintenance/tram/mid) "uoJ" = ( /obj/structure/closet/secure_closet/security/science, @@ -60986,7 +60975,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "upf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61111,7 +61100,7 @@ /area/station/hallway/secondary/entry) "uqS" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "ure" = ( /obj/machinery/portable_atmospherics/pump{ name = "Lil Pump" @@ -61540,7 +61529,7 @@ freerange = 1 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uxM" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 @@ -61767,7 +61756,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uBu" = ( /obj/item/radio/intercom/prison/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, @@ -61808,31 +61797,22 @@ dir = 5 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "uCl" = ( -/obj/structure/sign/directions/supply{ +/obj/structure/sign/directions/upload{ dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 40 + pixel_y = 14 }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = 22 +/obj/structure/sign/directions/engineering{ + pixel_y = 7 }, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 +/obj/structure/sign/directions/medical{ + pixel_y = -7 }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ - dir = 1 +/obj/structure/sign/directions/evac{ + dir = 4 }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/tram/center) "uCo" = ( /obj/effect/turf_decal/siding/thinplating, @@ -62159,6 +62139,17 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/engine_smes) +"uGB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/tram/mid) "uGL" = ( /obj/structure/bed/medical/emergency, /obj/effect/turf_decal/bot, @@ -62358,7 +62349,7 @@ c_tag = "Secure - AI Upper Ring East" }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "uJf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door_buttons/airlock_controller{ @@ -62377,7 +62368,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "uJk" = ( /obj/structure/easel, /obj/item/canvas/nineteen_nineteen, @@ -62592,7 +62583,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uNa" = ( /obj/machinery/computer/security/mining{ dir = 4 @@ -62778,7 +62769,7 @@ /obj/item/storage/lockbox/loyalty, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uQb" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/machinery/firealarm/directional/south, @@ -62804,13 +62795,20 @@ /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) +/area/station/ai/satellite/interior) +"uRh" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/iron/dark, +/area/station/maintenance/tram/mid) "uRi" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uRv" = ( /obj/structure/lattice, /turf/open/space/openspace, @@ -62846,7 +62844,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "uTm" = ( /obj/structure/window/reinforced/plasma/spawner/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, @@ -63261,7 +63259,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uZs" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -63451,7 +63449,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Tunnel Access Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/cable, @@ -63535,7 +63533,7 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 10 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit) @@ -63731,8 +63729,12 @@ /turf/open/floor/iron/grimy, /area/station/service/library/lounge) "vhF" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) "vhG" = ( @@ -63751,19 +63753,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plating, /area/station/maintenance/disposal/incinerator) -"vic" = ( -/obj/machinery/lift_indicator{ - pixel_x = -5; - pixel_y = -3; - linked_elevator_id = "tram_lower_center_lift" - }, -/obj/machinery/button/elevator{ - pixel_x = -7; - pixel_y = -1; - id = "tram_lower_center_lift" - }, -/turf/closed/wall, -/area/station/hallway/primary/tram/center) "viC" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63935,7 +63924,7 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "vkE" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4 }, /turf/open/floor/glass/reinforced, @@ -63967,7 +63956,7 @@ "vlb" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner, /obj/machinery/camera{ - dir = 6; + dir = 4; c_tag = "Hallway - Port Tram Platform South-East" }, /obj/machinery/firealarm/directional/east, @@ -64137,9 +64126,6 @@ /turf/open/floor/wood/large, /area/station/service/theater) "vpa" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/stripes/white/full, /obj/machinery/door/firedoor, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -64346,13 +64332,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) -"vrO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/light/dim/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) "vrP" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/cable/layer1, @@ -64433,7 +64412,7 @@ "vsM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vsU" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -64519,7 +64498,7 @@ /area/station/hallway/secondary/construction/engineering) "vvd" = ( /obj/machinery/camera{ - dir = 10; + dir = 8; c_tag = "Hallway - Starboard Tram Platform South-West" }, /obj/machinery/firealarm/directional/west, @@ -65124,6 +65103,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/parquet, /area/station/service/library) +"vFE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "vFL" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -65272,7 +65259,7 @@ /turf/open/floor/iron/dark/side{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vHO" = ( /obj/structure/railing/corner{ dir = 1 @@ -65311,7 +65298,7 @@ "vIv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vIC" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -65518,7 +65505,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vNe" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -65609,7 +65596,7 @@ /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/hallway) +/area/station/ai/satellite/hallway) "vOE" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -65735,7 +65722,7 @@ /turf/open/floor/iron/dark/corner{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vRv" = ( /turf/open/floor/iron, /area/station/command/heads_quarters/ce) @@ -65913,7 +65900,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vTF" = ( /obj/structure/tank_dispenser{ pixel_x = -1 @@ -66012,7 +65999,7 @@ dir = 6 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "vWx" = ( /turf/closed/wall/r_wall, /area/station/cargo/miningdock/oresilo) @@ -66060,7 +66047,6 @@ "vXT" = ( /obj/structure/chair/sofa/corp/left, /obj/item/radio/intercom/directional/east, -/obj/effect/landmark/start/paramedic, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -66114,7 +66100,8 @@ /area/station/command/bridge) "vYy" = ( /obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wideplating{ dir = 6 @@ -66123,7 +66110,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -66178,7 +66165,7 @@ /area/station/hallway/secondary/service) "waj" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "wao" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -66231,7 +66218,7 @@ /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/bot, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "wbH" = ( /turf/open/floor/iron, /area/station/security/office) @@ -66264,12 +66251,12 @@ }, /obj/machinery/turretid{ name = "AI Hallway turret control"; - icon_state = "control_stun"; pixel_x = 3; - pixel_y = 28 + pixel_y = 28; + dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "wce" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -66326,14 +66313,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/cafeteria, /area/station/command/heads_quarters/rd) -"wcN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/full, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) "wcW" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 6 @@ -66460,7 +66439,7 @@ }, /obj/structure/cable, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "wfb" = ( /obj/structure/closet/crate/coffin, /turf/open/floor/plating, @@ -66813,7 +66792,7 @@ /obj/structure/table, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "wlo" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" @@ -66965,7 +66944,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wpq" = ( /obj/structure/cable, /obj/machinery/light/floor, @@ -67043,6 +67022,16 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/service) +"wqV" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction/engineering) "wqY" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -67058,7 +67047,7 @@ dir = 1 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wri" = ( /obj/structure/closet/wardrobe/mixed, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -67119,6 +67108,9 @@ /obj/item/book/manual/wiki/grenades, /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, /turf/open/floor/iron/white, /area/station/medical/pharmacy) "wsb" = ( @@ -67146,7 +67138,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wsI" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -67269,7 +67261,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wvG" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -67572,7 +67564,7 @@ c_tag = "Secure - AI Minisat Chargebay" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wzJ" = ( /obj/structure/sign/warning/electric_shock, /turf/closed/wall/r_wall, @@ -67984,7 +67976,7 @@ dir = 6 }, /obj/structure/closet/toolcloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/machinery/camera/directional/east{ c_tag = "Civilian - Aux Tool Storage" }, @@ -68198,7 +68190,7 @@ "wLe" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "wLl" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -68218,11 +68210,11 @@ /turf/open/floor/iron/checker, /area/station/commons/lounge) "wLx" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wLP" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -68332,7 +68324,7 @@ /turf/open/floor/iron/white/side, /area/station/science/lobby) "wNY" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 8 }, /obj/machinery/requests_console/directional/east{ @@ -68365,7 +68357,7 @@ /area/station/cargo/miningdock) "wOw" = ( /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wOx" = ( /obj/structure/kitchenspike, /obj/effect/turf_decal/weather/snow, @@ -68504,7 +68496,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wRR" = ( /obj/structure/dresser, /turf/open/floor/iron/white, @@ -68735,7 +68727,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wXM" = ( /turf/open/floor/carpet, /area/station/commons/vacant_room/office) @@ -68781,7 +68773,7 @@ /obj/machinery/recharger, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wYO" = ( /obj/machinery/rnd/production/protolathe/department/engineering, /obj/effect/turf_decal/trimline/yellow/filled/end{ @@ -68803,7 +68795,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wZl" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/item/bikehorn/rubberducky, @@ -69102,7 +69094,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "xfd" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/effect/turf_decal/trimline/red/filled/corner{ @@ -69213,7 +69205,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xhL" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -69420,7 +69412,7 @@ }, /obj/effect/turf_decal/bot, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xlT" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 4 @@ -69540,7 +69532,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xnU" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner, /obj/effect/turf_decal/trimline/neutral/filled/corner{ @@ -69558,7 +69550,6 @@ "xog" = ( /obj/machinery/door/airlock/security/glass{ name = "Isolation Wing"; - unres_sensor = 1; unres_sides = 8 }, /obj/machinery/door/firedoor, @@ -69635,9 +69626,6 @@ /obj/machinery/door/airlock/medical/glass{ name = "Treatment Center" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, @@ -69649,6 +69637,9 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "xqO" = ( @@ -69771,7 +69762,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xsX" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -69841,7 +69832,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "xuk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, /obj/machinery/meter, @@ -69910,7 +69901,7 @@ /area/station/service/hydroponics/garden) "xvl" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xvm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/slippery, @@ -69969,7 +69960,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xwi" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -70495,7 +70486,7 @@ }, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xIV" = ( /obj/structure/table, /obj/item/stock_parts/micro_laser{ @@ -70548,7 +70539,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xJD" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -70625,6 +70616,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/command/bridge) +"xLl" = ( +/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/medical/paramedic) "xLm" = ( /obj/machinery/vending/coffee, /turf/open/floor/wood, @@ -70667,7 +70664,7 @@ /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) +/area/station/command/eva) "xMl" = ( /obj/machinery/vending/hydronutrients, /obj/structure/noticeboard/directional/south, @@ -70941,7 +70938,7 @@ pixel_y = 2 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xQM" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 5 @@ -71009,7 +71006,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xRI" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 6 @@ -71251,7 +71248,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "xWj" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/trinary/filter/flipped/layer2{ @@ -71263,7 +71260,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xWu" = ( /obj/machinery/status_display/shuttle, /turf/closed/wall, @@ -71346,6 +71343,17 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/service) +"xYy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/fireaxecabinet/jawsofrecovery/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/structure/closet/secure_closet/paramedic, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/paramedic) "xYZ" = ( /mob/living/basic/bot/cleanbot, /obj/effect/turf_decal/stripes/line{ @@ -71354,7 +71362,7 @@ /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/maint) +/area/station/ai/satellite/maintenance) "xZi" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -71380,7 +71388,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xZC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -71505,6 +71513,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, +/obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/station/security/checkpoint/science) "ybZ" = ( @@ -71869,13 +71878,21 @@ /area/station/command/heads_quarters/hop) "yhs" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 + dir = 8 }, -/obj/machinery/computer/records/medical, -/obj/machinery/light/cold/directional/north, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Paramedic Dispatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/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/medical/paramedic) "yhI" = ( /obj/structure/cable, /obj/structure/cable/layer1, @@ -71943,7 +71960,7 @@ dir = 4 }, /obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, @@ -72001,7 +72018,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "yjr" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/effect/turf_decal/siding/thinplating{ @@ -101379,7 +101396,7 @@ ldf dJM saC cIw -eNM +cIw nKQ cIw dQs @@ -102360,7 +102377,7 @@ kJY ovL ahy vhF -qjU +dsm gmj pnF tqp @@ -102617,10 +102634,10 @@ toh xpb jeS bMZ -qjU +uRh uoD -pnF -kFp +gtC +jqH kFp eYs kFp @@ -103124,7 +103141,7 @@ cWZ cWZ cWZ cWZ -wcN +dJJ mjG lSC dJJ @@ -103136,7 +103153,7 @@ qjU lhI kFp kFp -eYs +qrF kFp kFp qXj @@ -103393,7 +103410,7 @@ qjU lhI kFp kFp -eYs +qrF kFp kFp okG @@ -103650,7 +103667,7 @@ qjU lhI kFp kFp -eYs +qrF kFp kFp mqq @@ -103907,7 +103924,7 @@ qjU fMS kFp kFp -eYs +qrF kFp kFp byM @@ -103949,7 +103966,7 @@ aDm fuj lDy cyN -umx +cyN twR hKM jux @@ -104421,7 +104438,7 @@ qjU ioh kFp kFp -eYs +qrF kFp kFp mqq @@ -104678,7 +104695,7 @@ qjU npX kFp kFp -eYs +qrF kFp kFp mqq @@ -104923,7 +104940,7 @@ ocn uyf ecJ cWZ -pjC +nBg jra lIe qjU @@ -104935,7 +104952,7 @@ qjU npX kFp kFp -eYs +qrF kFp kFp mqq @@ -105180,7 +105197,7 @@ cWZ cWZ cWZ cWZ -wcN +dJJ mjG rxy qjU @@ -105192,20 +105209,20 @@ qjU npX kFp kFp -eYs +qrF kFp kFp mqq qjU -aaa -aaa +rob +hPO fal fal fal fal fal -pcu -llU +fGF +nRK tpm wjB vJA @@ -105455,12 +105472,12 @@ qyr xdJ qjU qjU -aaa -qjU +hPO +pIc oNW -pWP +wqV pPN -ceb +lns lns cgd vIC @@ -105706,19 +105723,19 @@ dyZ rhL kFp kFp -eYs -kFp -kFp +uGB +knG +knG dcq kxC -qjU -aaa -qjU +knG +qpd +qpv nRK -qDQ -hxL +oFd +oFd lQH -saZ +oFd akM wRi oFd @@ -105959,7 +105976,7 @@ rrC bHn lTP qjU -gmj +jCX pnF tqp kFp @@ -105967,15 +105984,15 @@ ycV kFp tqp kGR -byW -qjU -aaa -qjU +lhi +kFp +qpd +qpv crU kbG hQK -ceb -pcx +cbU +vuT vuT vuT nku @@ -106226,8 +106243,8 @@ tqp qjU qjU qjU -aaa -qjU +aaS +pIc hZr hZr hZr @@ -106482,7 +106499,7 @@ mDx pwh fNX nag -qjU +cbc qjU aaa hZr @@ -120097,7 +120114,7 @@ qxm nOo myD myD -myD +glv myD myD myD @@ -145530,7 +145547,7 @@ tPE qnv tld nmY -fXf +nmY nmY pMW pMW @@ -145787,7 +145804,7 @@ tPE rhF jEu mlu -tCT +fXf kHa pMW pMW @@ -147586,7 +147603,7 @@ iyc hfy jEu mlu -tCT +fXf kHa pMW pMW @@ -147843,7 +147860,7 @@ jde kIZ aVT nmY -fXf +nmY nmY pMW pMW @@ -154791,14 +154808,14 @@ aQO aQO rxI nYq -yiM +nEu cFs nVr gbe jGG cFs -yiM nEu +pow rLP mlj yjQ @@ -157349,7 +157366,7 @@ uVo eVC qyZ tfX -htr +hGc aQO aQO aQO @@ -157361,14 +157378,14 @@ aQO aQO qhM nKo -yiM +sOD cFs nVr gbe jGG cFs -yiM -qCJ +pvI +pow vNF prs gtQ @@ -168411,15 +168428,15 @@ izU izU izU tAL -sOD -izU +mYI +gnK kkR nIU ejH euV qvf -izU -uCl +gnK +lej lRC ofT ofT @@ -168678,7 +168695,7 @@ oKm qrl lej iVr -wyd +lDt wyd rks rks @@ -168935,7 +168952,7 @@ bHm ykP lej iVr -lDt +wyd kiN xJA gHh @@ -169719,7 +169736,7 @@ aKq aKP aLe oIU -aLB +aLA whF ecW dXo @@ -170736,12 +170753,12 @@ lej fxs wyd wyd -rks -rks -rks +fDA +fDA +fDA wyd wyd -dyI +mJE gMT uHB jtr @@ -170981,24 +170998,24 @@ izU izU hce aEm -gnK -izU +mpa +uCl kBG nIU ejH euV mjp -izU -eQL +dtz +lej ycx -vrO -fnb -eSz -eSz -eSz -qNI +eHN +ayP +kEM +kEM +cas +qUr liB -lEL +dyI qPd iTt rjs @@ -171248,14 +171265,14 @@ eSz dTx sIM uZb -rOu +eHN dYU -eSz -eSz -eSz -qNI +vFE +hbv +xLl +lmF yhs -jVw +pyq qPd jVw pnU @@ -171505,14 +171522,14 @@ kNT ghs rOu rSo -aHA -fnb +eHN +mQH fWX -eSz -eSz -qNI -ltL -pps +xYy +kiG +nCl +liB +dyI sqT sTF sTF @@ -171762,11 +171779,11 @@ kNT krM keN csl -vic -izU -izU -clT -clT +eHN +eHN +eHN +eHN +eHN clT clT sbO @@ -182032,15 +182049,15 @@ kNf whL esQ rEB -glv -bMb +oPw +eQL brm gay fXl jwH brm -bMb -oiv +qCJ +blg aHq lfQ cnV @@ -184354,7 +184371,7 @@ jwH brm idI xZQ -stt +oiv wpK lfQ ehz @@ -184603,14 +184620,14 @@ bIp evu qtF iIS -bMb +umx brm gay fXl jwH brm -bMb -pvI +umx +xZQ aHs aHt sSr @@ -187259,8 +187276,8 @@ dVM hFY lSG xsW -jJv -dtz +iYD +njC jJv bcx jJv diff --git a/_maps/map_files/wawastation/wawastation.dmm b/_maps/map_files/wawastation/wawastation.dmm index d843bfc405b2..2a07700a6ad2 100644 --- a/_maps/map_files/wawastation/wawastation.dmm +++ b/_maps/map_files/wawastation/wawastation.dmm @@ -64,7 +64,7 @@ "abi" = ( /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "abm" = ( /obj/structure/railing{ dir = 1 @@ -103,14 +103,14 @@ }, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aby" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/structure/cable/layer3, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "abC" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -174,8 +174,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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/research) "adc" = ( @@ -190,7 +190,7 @@ dir = 4 }, /obj/structure/table/wood/fancy/orange, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 9 }, @@ -254,7 +254,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable, /turf/open/floor/plating, @@ -264,7 +264,7 @@ /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/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -326,7 +326,6 @@ /area/station/hallway/primary/central) "afp" = ( /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 @@ -719,7 +718,7 @@ /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "alJ" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -822,7 +821,7 @@ /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/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "anf" = ( /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, @@ -1042,7 +1041,7 @@ "aqT" = ( /mob/living/basic/bot/cleanbot, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "arl" = ( /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, @@ -1090,6 +1089,10 @@ /obj/structure/sign/poster/random/directional/south, /turf/open/floor/iron, /area/station/cargo/warehouse) +"asd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "asl" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/engine, @@ -1138,7 +1141,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/white, -/area/station/medical/paramedic) +/area/station/medical/exam_room) "asZ" = ( /turf/open/floor/glass/airless, /area/space/nearstation) @@ -1206,7 +1209,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "auB" = ( /turf/open/floor/engine, /area/station/medical/chemistry) @@ -1326,9 +1329,7 @@ /area/station/science/breakroom) "awd" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/security/prison) "awf" = ( @@ -1360,7 +1361,7 @@ /obj/structure/sign/poster/official/random/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "awC" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -1492,7 +1493,7 @@ /obj/effect/turf_decal/bot_white, /obj/item/folder/documents, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ayC" = ( /obj/machinery/light/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1581,8 +1582,6 @@ /obj/effect/turf_decal/trimline/yellow/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/engineering/gravity_generator) "azQ" = ( @@ -1611,7 +1610,7 @@ /obj/machinery/holopad, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aAl" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 @@ -1682,6 +1681,14 @@ }, /turf/open/openspace, /area/station/security/prison/shower) +"aCk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/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) "aCp" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 @@ -1851,13 +1858,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"aEY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/tile, -/area/station/service/bar) "aFb" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -1875,14 +1875,6 @@ }, /turf/open/floor/carpet/orange, /area/station/service/theater) -"aFw" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "aFz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -2128,7 +2120,6 @@ }, /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 }, @@ -2185,11 +2176,6 @@ /obj/machinery/vending/cigarette, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"aKd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/parquet, -/area/station/cargo/boutique) "aKg" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment{ @@ -2205,9 +2191,9 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "aKj" = ( -/obj/machinery/computer/station_alert/station_only{ +/obj/machinery/computer/station_alert{ dir = 1 }, /obj/effect/turf_decal/trimline/yellow/filled/line, @@ -2230,23 +2216,21 @@ /turf/open/floor/plating, /area/station/maintenance/department/cargo) "aKJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/directions/engineering/directional/east{ - pixel_y = -8 +/obj/structure/sign/directions/command/directional/north{ + dir = 4; + pixel_y = -10 }, -/obj/structure/sign/directions/security/directional/east{ - dir = 1; - pixel_y = 8 +/obj/structure/sign/directions/engineering/directional/north{ + dir = 4; + pixel_y = 10 }, -/obj/structure/sign/directions/supply/directional/east{ - dir = 1 +/obj/structure/sign/directions/science/directional/north{ + dir = 4; + pixel_y = 0 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/security/courtroom) "aKP" = ( -/obj/structure/cable, /turf/open/floor/iron/half, /area/station/service/hydroponics/garden) "aKS" = ( @@ -2280,7 +2264,7 @@ pixel_y = 8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aLe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2301,7 +2285,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aLA" = ( /obj/machinery/door/poddoor/massdriver_chapel, /obj/effect/turf_decal/stripes/full, @@ -2359,7 +2343,7 @@ /obj/item/electronics/apc, /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aMx" = ( /obj/structure/cable, /obj/machinery/camera/autoname/motion/directional/south{ @@ -2372,7 +2356,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/random/maintenance/no_decals/three, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "aME" = ( /obj/structure/cable/multilayer/multiz, /obj/effect/turf_decal/stripes/line{ @@ -2480,8 +2464,6 @@ /area/station/command/heads_quarters/qm) "aNR" = ( /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/storage) "aNV" = ( @@ -2517,7 +2499,7 @@ /area/station/security/brig/entrance) "aOQ" = ( /turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "aOY" = ( /obj/structure/chair/stool/bar/directional/north, /obj/effect/turf_decal/siding/wood, @@ -2546,7 +2528,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aPC" = ( /obj/effect/spawner/structure/window/plasma, /turf/open/floor/engine, @@ -2567,7 +2549,6 @@ pixel_y = -8; req_access = list("xenobiology") }, -/obj/structure/cable, /obj/machinery/shower/directional/south, /obj/effect/turf_decal{ icon = 'icons/obj/mining_zones/survival_pod.dmi'; @@ -2733,7 +2714,7 @@ }, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aSS" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/dark_green/opposingcorners, @@ -2840,7 +2821,7 @@ /area/station/hallway/primary/central) "aUB" = ( /obj/structure/closet/wardrobe/black, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, @@ -2865,10 +2846,10 @@ /area/station/service/cafeteria) "aVm" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "aVp" = ( @@ -2938,8 +2919,8 @@ "aXA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "aXD" = ( @@ -3191,6 +3172,7 @@ "bcm" = ( /obj/machinery/camera/autoname/directional/south, /obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured, /area/station/engineering/storage/tech) "bco" = ( @@ -3275,6 +3257,8 @@ dir = 8 }, /obj/item/trash/shrimp_chips, +/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) "bej" = ( @@ -3361,7 +3345,6 @@ /area/station/maintenance/department/science) "bfD" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/chapel{ dir = 1 @@ -3460,7 +3443,7 @@ name = "Aft Solar Access" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -3473,6 +3456,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/command/bridge) +"bhG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/main) "bhL" = ( /obj/effect/turf_decal/siding/dark, /obj/machinery/door/firedoor/border_only, @@ -3533,7 +3520,7 @@ /area/station/engineering/supermatter/room) "biS" = ( /turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bjb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/kirbyplants/random/dead, @@ -3656,9 +3643,11 @@ /turf/open/floor/plating, /area/station/maintenance/department/medical) "bme" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/obj/structure/sign/warning/directional/east, +/turf/closed/mineral/random/stationside/asteroid/porus{ + mineralChance = 20 + }, +/area/station/asteroid) "bmf" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -3890,7 +3879,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "bqT" = ( /obj/structure/cable, @@ -3901,17 +3890,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/lesser) -"bqV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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/dark, -/area/station/security/lockers) "bqX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -3929,7 +3907,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "brx" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -3995,13 +3973,13 @@ /obj/item/electronics/airalarm, /obj/item/electronics/airlock, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "bsZ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/table/reinforced, /obj/item/pai_card, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "btl" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4073,10 +4051,9 @@ /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/security/armory) +/area/station/security/armory) "buw" = ( /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/freezer, /area/station/commons/toilet/restrooms) @@ -4588,6 +4565,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark, /area/station/security/lockers) "bDy" = ( @@ -4623,9 +4601,7 @@ "bDN" = ( /obj/item/stack/tile/iron/white, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white/smooth_large, /area/station/medical/chemistry/minisat) "bDX" = ( @@ -4651,7 +4627,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bEd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ @@ -4750,7 +4726,7 @@ /area/station/commons/vacant_room/commissary) "bFS" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bGc" = ( /obj/structure/table, /obj/item/stack/package_wrap, @@ -4777,7 +4753,7 @@ /obj/item/electronics/firelock, /obj/machinery/light/cold/dim/directional/south, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "bGk" = ( /turf/closed/wall/r_wall, /area/station/medical/chemistry) @@ -4790,7 +4766,8 @@ dir = 5 }, /obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/white, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "bGu" = ( /obj/structure/chair/sofa/bench/right{ @@ -4844,7 +4821,6 @@ /turf/open/floor/iron, /area/station/engineering/atmos/upper) "bGW" = ( -/obj/structure/cable, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/station/command/bridge) @@ -4874,11 +4850,15 @@ /obj/item/paper, /obj/item/pen, /obj/effect/turf_decal/stripes/box, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters"; + dir = 8 + }, /turf/open/floor/iron, /area/station/service/hydroponics) "bHc" = ( /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/medical/psychology) @@ -4901,7 +4881,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "bHj" = ( /obj/structure/chair/sofa/bench/left{ dir = 1 @@ -4923,7 +4903,7 @@ /area/station/maintenance/department/cargo) "bIe" = ( /obj/structure/table, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -3; pixel_y = 3 }, @@ -4980,7 +4960,7 @@ /area/station/maintenance/department/medical/central) "bJQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /obj/structure/cable, /turf/open/floor/iron/chapel{ @@ -5084,7 +5064,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bNp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5098,7 +5078,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "bNz" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ @@ -5147,7 +5127,7 @@ pixel_y = 2 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bNL" = ( /turf/closed/wall, /area/station/cargo/bitrunning/den) @@ -5172,7 +5152,7 @@ "bOl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bOr" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -5189,6 +5169,7 @@ dir = 4 }, /obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/command/corporate_showroom) "bOT" = ( @@ -5245,8 +5226,6 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "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 }, @@ -5331,7 +5310,7 @@ }, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bSH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5420,7 +5399,7 @@ "bTO" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, /area/station/hallway/secondary/entry) @@ -5490,7 +5469,6 @@ "bUJ" = ( /obj/effect/landmark/start/shaft_miner, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/miningoffice) "bUM" = ( @@ -5533,22 +5511,13 @@ /turf/open/floor/plating, /area/station/maintenance/department/cargo) "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{ - dir = 1; - pixel_y = -8 - }, -/obj/structure/sign/directions/medical/directional/east{ - dir = 8; - pixel_y = 8 +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/captain/private) "bVY" = ( /obj/machinery/holopad{ pixel_x = 1 @@ -5700,8 +5669,8 @@ "bYF" = ( /obj/effect/turf_decal/arrows, /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/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "bYP" = ( @@ -5757,7 +5726,7 @@ "bZH" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /turf/open/floor/wood, /area/station/service/lawoffice) @@ -5766,7 +5735,7 @@ /mob/living/simple_animal/bot/secbot/beepsky/armsky, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "caq" = ( /obj/effect/spawner/surgery_tray/full/deployed, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -5779,6 +5748,7 @@ /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /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/command) "cax" = ( @@ -5801,9 +5771,7 @@ /turf/open/floor/iron/white, /area/station/science/lobby) "caP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "caW" = ( @@ -5835,7 +5803,7 @@ /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/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cbn" = ( /obj/machinery/conveyor{ dir = 4; @@ -5889,7 +5857,7 @@ /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/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cca" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5923,17 +5891,11 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ccT" = ( /obj/machinery/light/directional/west, /turf/open/floor/wood/large, /area/station/cargo/boutique) -"ccZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) "cda" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -6092,11 +6054,11 @@ /obj/machinery/power/smes{ charge = 5e+006 }, -/obj/structure/cable, /obj/machinery/light/directional/north, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "cgj" = ( @@ -6175,7 +6137,6 @@ /area/station/cargo/lobby) "chF" = ( /obj/machinery/newscaster/directional/east, -/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/wood/large, @@ -6256,7 +6217,7 @@ icon_state = "catwalk-8" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ciV" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -6277,7 +6238,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/east, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cjp" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, @@ -6360,8 +6321,6 @@ /area/station/medical/surgery) "clG" = ( /obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/multi_tile/public/glass{ name = "Restrooms" }, @@ -6377,7 +6336,6 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos) "clM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/table, /obj/item/storage/box/hug/medical, /turf/open/floor/iron, @@ -6562,7 +6520,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "cqH" = ( /obj/structure/transit_tube, /obj/structure/lattice, @@ -6600,7 +6558,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "crg" = ( /obj/effect/turf_decal/trimline/blue/corner{ dir = 1 @@ -6749,7 +6707,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/door/firedoor, @@ -7116,22 +7074,10 @@ "cBb" = ( /turf/closed/wall, /area/station/medical/paramedic) -"cBh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "cBj" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/commons/lounge) -"cBr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "cBt" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -7283,11 +7229,10 @@ /turf/open/floor/plating, /area/station/maintenance/department/cargo) "cEy" = ( -/obj/structure/cable, /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/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "cEG" = ( /obj/effect/spawner/structure/window/reinforced, @@ -7298,7 +7243,13 @@ /obj/structure/table/reinforced, /obj/item/book/manual/wiki/robotics_cyborgs, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"cEU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) "cEV" = ( /obj/machinery/light_switch/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -7362,7 +7313,6 @@ /obj/effect/turf_decal/stripes{ dir = 8 }, -/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/dark, @@ -7421,7 +7371,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/sand/plating, @@ -7510,7 +7460,7 @@ dir = 8 }, /turf/open/floor/iron/white, -/area/station/medical/paramedic) +/area/station/medical/exam_room) "cJx" = ( /obj/structure/closet/crate/preopen, /obj/effect/spawner/random/engineering/flashlight, @@ -7748,7 +7698,6 @@ /area/station/cargo/boutique) "cOb" = ( /obj/item/food/grown/banana, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/grass, /area/station/medical/chemistry) @@ -7845,7 +7794,7 @@ /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/security/armory) +/area/station/security/armory) "cPQ" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 8 @@ -7979,7 +7928,8 @@ "cRM" = ( /obj/machinery/button/curtain{ id = "chapelc"; - pixel_y = 26 + pixel_y = 26; + dir = 1 }, /turf/open/floor/iron/chapel{ dir = 1 @@ -8040,7 +7990,6 @@ /turf/open/floor/wood, /area/station/service/theater) "cSy" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/white/corner{ dir = 4 }, @@ -8109,7 +8058,7 @@ network = list("ss13","medbay") }, /obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "cUe" = ( /obj/machinery/rnd/production/protolathe/department/science, @@ -8124,12 +8073,14 @@ /area/station/science/xenobiology) "cUk" = ( /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/science/lobby) "cUm" = ( /obj/effect/turf_decal/stripes/red/corner, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/morgue) @@ -8272,7 +8223,7 @@ /obj/effect/turf_decal/bot, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cWv" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -8329,6 +8280,12 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron/dark, /area/station/maintenance/department/engine) +"cXn" = ( +/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/service/chapel) "cXo" = ( /obj/structure/barricade/wooden/crude, /obj/structure/holosign/barrier/atmos, @@ -8464,7 +8421,7 @@ /obj/structure/window/spawner/directional/east, /obj/structure/window/spawner/directional/north, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "cZp" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/reinforced/airless, @@ -8494,7 +8451,7 @@ /obj/structure/cable, /obj/machinery/flasher/directional/south, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "daK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -8509,6 +8466,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "dbl" = ( @@ -8613,7 +8571,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "dco" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -8668,6 +8626,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/construction/mining/aux_base) +"dcI" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + 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/primary/central) "dcO" = ( /obj/machinery/vending/wardrobe/science_wardrobe, /obj/effect/turf_decal/delivery, @@ -8691,10 +8658,10 @@ "dda" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/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/any/science/maintenance, /turf/open/floor/plating, /area/station/commons/vacant_room/commissary) "ddb" = ( @@ -8725,9 +8692,14 @@ "des" = ( /obj/structure/closet/lasertag/blue, /obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"deW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "deY" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/firealarm/directional/east, @@ -8742,7 +8714,7 @@ "dfd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dfk" = ( /turf/open/floor/engine, /area/station/command/heads_quarters/rd) @@ -8771,7 +8743,9 @@ dir = 8 }, /obj/machinery/light_switch/directional/south{ - pixel_x = 26 + pixel_y = -10; + dir = 4; + pixel_x = 20 }, /turf/open/floor/iron, /area/station/security/brig/entrance) @@ -8903,9 +8877,7 @@ /area/station/maintenance/port/lesser) "dhv" = ( /obj/effect/landmark/start/shaft_miner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/cargo/miningoffice) "dhN" = ( @@ -8919,6 +8891,7 @@ }, /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "dhO" = ( @@ -8931,7 +8904,6 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "dhR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/rack, /obj/item/wrench, /obj/item/knife/kitchen{ @@ -9032,8 +9004,6 @@ "dko" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /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/lobby) "dkq" = ( @@ -9124,10 +9094,9 @@ /obj/item/storage/toolbox/emergency, /obj/structure/table, /obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "dla" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/stairs/right{ dir = 1 }, @@ -9194,7 +9163,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/door/firedoor, @@ -9229,9 +9198,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ 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/white, /area/station/medical/storage) "dni" = ( @@ -9450,7 +9416,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dqK" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w, @@ -9478,6 +9444,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/cargo) +"dra" = ( +/obj/structure/sign/warning/directional/west, +/turf/open/misc/asteroid, +/area/station/asteroid) "drb" = ( /obj/machinery/newscaster/directional/west, /obj/machinery/vending/wardrobe/curator_wardrobe, @@ -9620,8 +9590,6 @@ /area/station/service/janitor) "dsY" = ( /obj/effect/turf_decal/trimline/yellow/filled/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/engineering/gravity_generator) "dtc" = ( @@ -9685,6 +9653,12 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"duf" = ( +/obj/item/stack/tile/iron/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/white, +/area/station/medical/chemistry/minisat) "dum" = ( /obj/structure/table/wood, /obj/item/clothing/head/helmet/toggleable/justice/escape{ @@ -9740,19 +9714,22 @@ /turf/open/floor/plating, /area/station/maintenance/department/medical) "dvz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, /obj/structure/sign/directions/medical/directional/east{ dir = 8; - pixel_y = 8 + pixel_y = 8; + pixel_x = 0 }, /obj/structure/sign/directions/evac/directional/east{ - pixel_y = -8 + dir = 8; + pixel_x = 0 }, -/obj/structure/sign/directions/engineering/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/obj/structure/sign/directions/science/directional/east{ + dir = 1; + pixel_y = -8; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/maintenance/port/lesser) "dvC" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/grille, @@ -9837,7 +9814,7 @@ /area/station/hallway/primary/central) "dyb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/dark/textured, /area/station/science/robotics/lab) @@ -9849,6 +9826,9 @@ /area/station/science/ordnance) "dyv" = ( /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, /turf/open/floor/iron, /area/station/engineering/lobby) "dyA" = ( @@ -10040,7 +10020,7 @@ }, /obj/structure/closet/secure_closet/personal, /turf/open/floor/iron/white, -/area/station/medical/paramedic) +/area/station/medical/exam_room) "dAu" = ( /obj/structure/chair/sofa/bench/left{ dir = 8 @@ -10093,7 +10073,6 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "dBn" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/machinery/incident_display/bridge/directional/south, /turf/open/floor/iron, @@ -10195,7 +10174,7 @@ name = "EVA Requests Console" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dCv" = ( /obj/structure/railing, /obj/structure/dresser, @@ -10212,7 +10191,7 @@ /obj/structure/disposalpipe/trunk/multiz{ dir = 1 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "dCI" = ( /obj/structure/disposalpipe/segment{ @@ -10310,7 +10289,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/disposalpipe/segment, @@ -10343,18 +10322,24 @@ /obj/machinery/door/airlock/engineering{ name = "Floor Electrical Relay" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/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/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/catwalk_floor, /area/station/maintenance/central/lesser) "dGh" = ( /obj/structure/cable, /turf/open/floor/carpet/executive, /area/station/command/heads_quarters/captain/private) +"dGk" = ( +/obj/structure/sign/warning/directional/south, +/turf/closed/mineral/random/stationside/asteroid/porus{ + mineralChance = 20 + }, +/area/station/asteroid) "dGq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -10441,12 +10426,10 @@ /turf/open/floor/iron/white, /area/station/science/auxlab/firing_range) "dHk" = ( -/obj/structure/cable, -/obj/effect/landmark/start/paramedic, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "dHy" = ( /obj/machinery/light/small/directional/north, @@ -10523,6 +10506,7 @@ /obj/structure/disposalpipe/sorting/mail/flip, /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) "dIv" = ( @@ -10894,7 +10878,7 @@ /obj/effect/landmark/start/medical_doctor, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 4 }, /turf/open/floor/iron/white/textured_large, /area/station/medical/exam_room) @@ -10947,7 +10931,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dQr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured, @@ -11036,12 +11020,12 @@ "dSl" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/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/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/central/greater) "dSn" = ( @@ -11173,7 +11157,7 @@ /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/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dTR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/siding/white{ @@ -11205,7 +11189,7 @@ "dUl" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "dUA" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ @@ -11246,9 +11230,6 @@ /obj/effect/turf_decal/trimline/blue/filled/corner{ 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/white, /area/station/medical/storage) "dVp" = ( @@ -11268,7 +11249,7 @@ dir = 8 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dVx" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 @@ -11303,7 +11284,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dWl" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/turf_decal/siding/wideplating/dark, @@ -11533,7 +11514,7 @@ /area/station/engineering/atmos) "dZy" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "dZA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11592,7 +11573,8 @@ id = "theater_curtains"; name = "curtain control"; pixel_y = 32; - req_access = list("theatre") + req_access = list("theatre"); + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -11611,17 +11593,11 @@ /obj/effect/mapping_helpers/requests_console/supplies, /turf/open/floor/iron/white, /area/station/medical/chemistry) -"ebo" = ( -/obj/effect/landmark/start/paramedic, -/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/paramedic) "ebs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/event_spawn, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ebz" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 @@ -11940,6 +11916,9 @@ pixel_y = 3 }, /obj/item/defibrillator/loaded, +/obj/item/defibrillator/loaded{ + pixel_y = -4 + }, /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/white, /area/station/medical/storage) @@ -12004,7 +11983,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -12017,7 +11996,7 @@ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eiJ" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 @@ -12144,6 +12123,14 @@ dir = 4 }, /area/station/service/chapel) +"ekF" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/commons/locker) "ekL" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment{ @@ -12197,11 +12184,11 @@ /area/station/engineering/atmos/upper) "ely" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/turf_decal/sand/plating, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/central/greater) "elE" = ( @@ -12259,7 +12246,7 @@ /area/station/service/kitchen) "enz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) @@ -12271,6 +12258,7 @@ /obj/effect/spawner/random/structure/chair_comfy{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/bridge) "eoo" = ( @@ -12306,7 +12294,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, @@ -12343,7 +12331,6 @@ /obj/machinery/door/airlock/medical{ name = "Medical Breakroom and Paramedic Dispatch" }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/structure/cable, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12351,7 +12338,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/white, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/turf/open/floor/holofloor/dark, /area/station/medical/exam_room) "epr" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -12436,10 +12424,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"eqQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/science/robotics/lab) "era" = ( /obj/structure/cable, /obj/machinery/door/firedoor, @@ -12482,7 +12466,7 @@ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "esc" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -12657,7 +12641,7 @@ /area/station/maintenance/solars/port/aft) "euF" = ( /obj/structure/closet/wardrobe/white, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, @@ -12881,7 +12865,7 @@ pixel_y = -12 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ezg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -12923,11 +12907,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/medical/morgue) -"ezP" = ( -/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) "eAg" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood{ @@ -12978,7 +12957,7 @@ "eAW" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eAZ" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -13046,11 +13025,11 @@ /area/station/science/ordnance/storage) "eBK" = ( /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/dark_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/command/bridge) "eBY" = ( @@ -13207,15 +13186,10 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/station/security) -"eDV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/lounge) "eEa" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -13251,7 +13225,7 @@ /obj/structure/stairs/east, /obj/structure/railing, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eEC" = ( /obj/machinery/barsign/directional/south, /obj/machinery/vending/cigarette, @@ -13267,7 +13241,7 @@ }, /obj/structure/closet/emcloset, /obj/structure/window/spawner/directional/east, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/fitness/recreation) "eEG" = ( @@ -13387,7 +13361,6 @@ /obj/effect/turf_decal/siding/green, /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/commons/storage/art) "eGM" = ( @@ -13495,6 +13468,9 @@ /area/station/maintenance/department/science) "eIY" = ( /obj/effect/landmark/event_spawn, +/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/medical/storage) "eJi" = ( @@ -13550,7 +13526,7 @@ /obj/structure/flora/bush/flowers_pp/style_random, /obj/structure/window/spawner/directional/south, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eJS" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/air, @@ -13660,7 +13636,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "eMk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/effect/turf_decal/stripes{ @@ -13683,7 +13659,7 @@ /area/station/security) "eMD" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "eMG" = ( /obj/structure/closet/firecloset, /turf/open/floor/iron/textured, @@ -13724,7 +13700,7 @@ "eOn" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eOx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -13753,6 +13729,10 @@ /area/station/command/heads_quarters/cmo) "eOY" = ( /obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/plating, /area/station/service/hydroponics) "eOZ" = ( @@ -13819,7 +13799,7 @@ /obj/item/radio/intercom/directional/south, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eQY" = ( /obj/structure/cable, /turf/open/floor/iron/freezer, @@ -14046,16 +14026,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/button/door/directional/north{ - id = "triage"; - name = "triage button"; - normaldoorcontrol = 1; - pixel_x = -26 - }, -/obj/machinery/button/ticket_machine{ - pixel_x = -26; - pixel_y = 36 - }, /turf/open/floor/iron/white, /area/station/medical/exam_room) "eVA" = ( @@ -14070,7 +14040,7 @@ pixel_y = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eVG" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/trash/hobo_squat, @@ -14084,7 +14054,6 @@ req_access = list("robotics") }, /obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/lobby) "eWB" = ( @@ -14104,7 +14073,7 @@ "eWD" = ( /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eWJ" = ( /obj/item/radio/intercom/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -14117,7 +14086,7 @@ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "eXb" = ( /obj/machinery/door/airlock{ id_tag = "u2"; @@ -14265,7 +14234,6 @@ /obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/mannequin/skeleton, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -14381,7 +14349,7 @@ /area/station/medical/pharmacy) "faK" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "faP" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/holopad, @@ -14401,7 +14369,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, -/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{ @@ -14412,8 +14379,6 @@ "fbC" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/command) @@ -14536,9 +14501,6 @@ /area/station/hallway/primary/central) "feN" = ( /obj/effect/turf_decal/tile/red, -/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) "feQ" = ( @@ -14562,7 +14524,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ffk" = ( /obj/structure/chair/stool/directional/west, /turf/open/floor/wood, @@ -14639,7 +14601,7 @@ name = "Port Bow Solar Access" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -14659,7 +14621,7 @@ }, /obj/structure/table, /obj/machinery/requests_console/auto_name/directional/west, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "fhu" = ( /turf/open/floor/engine/n2, @@ -14672,7 +14634,7 @@ /obj/structure/sign/poster/official/random/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "fhH" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/machinery/door/airlock/engineering/glass{ @@ -14694,14 +14656,13 @@ "fhN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/science) "fhP" = ( /obj/structure/railing/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/catwalk_floor/iron_white, /area/station/science/lobby) @@ -14884,7 +14845,7 @@ /area/space/nearstation) "flH" = ( /obj/structure/closet/boxinggloves, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/white/textured_large, /area/station/commons/fitness/recreation) "flN" = ( @@ -14987,7 +14948,7 @@ icon_state = "catwalk-13" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fnU" = ( /obj/machinery/door/airlock/virology/glass{ name = "Virology Lab" @@ -15055,13 +15016,13 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "fpm" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue, /obj/effect/turf_decal/tile/dark_blue{ 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/hallway/secondary/command) "fpo" = ( @@ -15132,7 +15093,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fqs" = ( /obj/structure/cable, /obj/structure/railing{ @@ -15159,11 +15120,6 @@ }, /turf/open/misc/asteroid/airless, /area/station/asteroid) -"fqF" = ( -/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/exam_room) "frd" = ( /obj/machinery/vending/wardrobe/hydro_wardrobe, /obj/effect/turf_decal/stripes/line{ @@ -15209,7 +15165,7 @@ /area/station/medical/morgue) "fry" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "frG" = ( /obj/structure/railing{ dir = 4 @@ -15363,7 +15319,9 @@ /turf/open/floor/iron/dark, /area/station/security/lockers) "ftR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /obj/effect/turf_decal/tile/dark_blue{ dir = 8 }, @@ -15382,13 +15340,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/central/greater) -"fun" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "fuo" = ( /obj/effect/landmark/start/geneticist, /obj/structure/chair/office{ @@ -15397,10 +15348,10 @@ /turf/open/floor/glass/reinforced, /area/station/science/genetics) "fus" = ( +/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/machinery/holopad, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "fux" = ( @@ -15539,7 +15490,7 @@ /obj/machinery/light/small/dim/directional/north, /obj/effect/turf_decal/stripes, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fxp" = ( /turf/closed/indestructible/riveted{ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; @@ -15582,7 +15533,7 @@ }, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fyn" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15592,23 +15543,17 @@ /obj/machinery/door/airlock/medical{ name = "Surgery" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /obj/effect/turf_decal/tile/blue/fourcorners, /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/unres{ + dir = 8 + }, /turf/open/floor/iron/white/smooth_large, /area/station/medical/surgery) -"fyA" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/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) "fyC" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -15616,7 +15561,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fyJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/door/airlock/command/glass{ @@ -15688,7 +15633,7 @@ "fzK" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -15736,7 +15681,7 @@ "fAg" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/decal/cleanable/dirt, @@ -15756,7 +15701,6 @@ /area/station/maintenance/central/greater) "fAR" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /obj/effect/turf_decal/tile/red, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, @@ -15966,6 +15910,8 @@ "fEa" = ( /obj/structure/railing/corner, /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/corner, /area/station/command/meeting_room) "fEe" = ( @@ -15975,7 +15921,7 @@ dir = 4 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "fEm" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 1; @@ -16080,14 +16026,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"fFz" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/spawner/random/maintenance, -/obj/effect/spawner/random/structure/closet_empty/crate, -/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) "fFE" = ( /obj/effect/decal/cleanable/rubble, /turf/open/misc/asteroid, @@ -16118,7 +16056,7 @@ /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "fGo" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -16207,6 +16145,15 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"fHI" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/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/white, +/area/station/science/lobby) "fHJ" = ( /obj/effect/turf_decal/siding/white{ dir = 6 @@ -16279,6 +16226,8 @@ /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/iron, /area/station/engineering/gravity_generator) "fIX" = ( @@ -16359,8 +16308,6 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ 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/engineering/gravity_generator) "fLe" = ( @@ -16467,7 +16414,7 @@ "fNk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "fNn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt/dust, @@ -16697,7 +16644,6 @@ /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, /obj/item/radio/intercom/command/directional/east, /obj/machinery/suit_storage_unit/captain{ @@ -16821,7 +16767,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fSk" = ( /obj/structure/chair/office{ dir = 1 @@ -16868,9 +16814,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ 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/iron/white, /area/station/medical/storage) "fSP" = ( @@ -16901,13 +16844,13 @@ name = "Cyborg Entertainment Closet"; req_access = list("something only silicons open") }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/locked, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "fTl" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -16930,6 +16873,8 @@ /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/science/research) "fTX" = ( @@ -17029,7 +16974,7 @@ "fVI" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, @@ -17123,7 +17068,7 @@ /obj/effect/mapping_helpers/airlock/access/any/service/general, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/dark, @@ -17152,7 +17097,6 @@ /turf/open/floor/iron/cafeteria, /area/station/commons/locker) "fXU" = ( -/obj/structure/cable, /obj/effect/spawner/xmastree, /turf/open/floor/wood, /area/station/commons/lounge) @@ -17208,7 +17152,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "fZc" = ( /obj/structure/cable, @@ -17285,7 +17229,6 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/service/chapel) "gak" = ( @@ -17437,6 +17380,8 @@ /area/station/cargo/storage) "gcV" = ( /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/iron, /area/station/hallway/secondary/exit/departure_lounge) "gcZ" = ( @@ -17445,7 +17390,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "gdf" = ( @@ -17629,7 +17574,7 @@ /obj/item/food/grown/harebell, /obj/item/food/grown/harebell, /turf/open/floor/iron/chapel{ - dir = 1 + dir = 4 }, /area/station/service/chapel) "ghp" = ( @@ -17657,6 +17602,10 @@ desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; name = "HoochMaster Deluxe" }, +/obj/machinery/button/door/directional/west{ + name = "Bar shuttters"; + id = "bar_shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "ghU" = ( @@ -17697,7 +17646,9 @@ /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "giv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) "giy" = ( @@ -17727,13 +17678,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_white, /area/station/science/lab) -"giK" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) "gjt" = ( /obj/machinery/pdapainter/medbay, /obj/effect/turf_decal/trimline/dark_blue/filled/line{ @@ -17873,7 +17817,7 @@ uses = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "gls" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -18007,9 +17951,9 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/unres, /obj/structure/cable, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/white, /area/station/medical/exam_room) "gok" = ( @@ -18068,7 +18012,7 @@ "gpR" = ( /obj/machinery/light/dim/directional/south, /obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/textured, /area/station/hallway/primary/central) "gpV" = ( @@ -18261,7 +18205,6 @@ "gsn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/miningoffice) "gsM" = ( @@ -18269,7 +18212,7 @@ dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 1 }, /turf/open/floor/iron, /area/station/engineering/lobby) @@ -18301,15 +18244,11 @@ /obj/structure/railing/corner, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gty" = ( /obj/effect/landmark/carpspawn, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) -"gtB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) "gtE" = ( /obj/machinery/door/poddoor/shutters/window/preopen{ dir = 8; @@ -18344,9 +18283,8 @@ "gub" = ( /obj/machinery/firealarm/directional/north, /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/teleporter) +/area/station/ai/satellite/teleporter) "guk" = ( /obj/machinery/vending/wardrobe/gene_wardrobe, /turf/open/floor/iron/white/textured, @@ -18523,9 +18461,8 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "gwA" = ( -/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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/storage) "gwE" = ( @@ -18571,7 +18508,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gxy" = ( /obj/machinery/light/small/dim/directional/west, /obj/effect/decal/cleanable/blood/tracks, @@ -18647,7 +18584,8 @@ id = "theater_curtains"; name = "curtain control"; pixel_x = 32; - req_access = list("theatre") + req_access = list("theatre"); + dir = 4 }, /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -18840,7 +18778,7 @@ /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/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gBy" = ( /obj/structure/sign/warning/electric_shock/directional/south, /turf/open/floor/plating, @@ -18968,8 +18906,6 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/trunk/multiz/down{ dir = 1 }, @@ -19107,7 +19043,7 @@ /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) +/area/station/ai/upload/foyer) "gGm" = ( /obj/effect/spawner/random/engineering/tank, /turf/open/floor/plating, @@ -19221,7 +19157,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gHS" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -19231,7 +19167,6 @@ /turf/open/floor/iron, /area/station/security/breakroom) "gHX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/executive, /area/station/command/heads_quarters/captain/private) @@ -19260,7 +19195,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "gIw" = ( /obj/machinery/door/airlock/research/glass{ name = "Robotics Lab" @@ -19322,7 +19257,7 @@ /obj/structure/window/spawner/directional/north, /mob/living/basic/butterfly, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gJA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19331,10 +19266,10 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) "gJC" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/white{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/iron/large, /area/station/service/hydroponics/garden) "gJE" = ( @@ -19429,7 +19364,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "gLK" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -19492,7 +19427,7 @@ "gMH" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -19571,7 +19506,7 @@ /area/station/medical/pharmacy) "gNV" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gNZ" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -19619,14 +19554,6 @@ }, /turf/open/floor/iron/white/textured, /area/station/science/genetics) -"gOG" = ( -/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/tile, -/area/station/service/bar) "gOY" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance) @@ -19654,7 +19581,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "gPZ" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -19682,7 +19609,7 @@ }, /obj/machinery/holopad, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gQt" = ( /obj/machinery/door/airlock{ id_tag = "Cabin6"; @@ -19701,12 +19628,6 @@ /obj/structure/sign/warning/directional/west, /turf/closed/wall/rust, /area/station/medical/chemistry/minisat) -"gQN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) "gRp" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -19720,14 +19641,14 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gRA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gRG" = ( /obj/effect/turf_decal/stripes, /turf/open/floor/engine, @@ -19774,8 +19695,8 @@ /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) "gSJ" = ( -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/white, /area/station/medical/chemistry/minisat) "gSY" = ( @@ -19827,7 +19748,7 @@ }, /obj/item/radio/intercom/directional/east, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "gTM" = ( /obj/effect/spawner/structure/window/reinforced, @@ -19903,6 +19824,10 @@ /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{ + name = "Hydroponics shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/iron, /area/station/service/hydroponics) "gUv" = ( @@ -20011,7 +19936,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "gWX" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -20086,7 +20011,6 @@ dir = 8 }, /obj/machinery/airalarm/directional/west, -/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/engineering/atmospherics_engine) @@ -20101,7 +20025,7 @@ /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/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/turf_decal/siding/wood, @@ -20137,6 +20061,9 @@ /area/station/engineering/atmos) "gZe" = ( /obj/machinery/holopad, +/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/execution/transfer) "gZk" = ( @@ -20184,7 +20111,6 @@ 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/security/checkpoint/science) "gZF" = ( @@ -20292,7 +20218,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -20484,7 +20409,7 @@ "hep" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -20547,7 +20472,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hfn" = ( /obj/structure/chair/office{ dir = 1 @@ -20586,7 +20511,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hfS" = ( /obj/machinery/door/airlock{ id_tag = "Cabin5"; @@ -20640,7 +20565,7 @@ /obj/machinery/door/airlock/maintenance/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/barricade/wooden, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -20748,7 +20673,6 @@ /obj/structure/chair{ 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/service/lawoffice) @@ -20833,7 +20757,7 @@ /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/burnt_floor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -20862,7 +20786,6 @@ /area/station/science/lobby) "hlh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20996,7 +20919,7 @@ "hna" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "hnh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -21041,6 +20964,11 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "capspace" }, +/obj/machinery/button/door/directional/north{ + id = "cap_ext"; + name = "bolt control"; + specialfunctions = 4 + }, /turf/open/floor/engine, /area/station/command/heads_quarters/captain/private) "hnJ" = ( @@ -21050,7 +20978,7 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hnL" = ( /obj/structure/tank_holder/extinguisher, /obj/machinery/light/small/dim/directional/south, @@ -21058,7 +20986,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hnY" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -21125,23 +21053,19 @@ /turf/open/floor/wood/tile, /area/station/service/bar) "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/medical/directional/east{ + dir = 8; + pixel_y = 8; + pixel_x = 0 }, -/obj/structure/sign/directions/supply/directional/west{ - dir = 1; - pixel_y = 8 +/obj/structure/sign/directions/engineering/directional/east{ + pixel_x = 0 }, -/obj/structure/sign/directions/science/directional/west{ - dir = 1; - pixel_y = -8 +/obj/structure/sign/directions/evac/directional/east{ + pixel_y = -8; + pixel_x = 0 }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/central) "hpT" = ( /obj/machinery/door/airlock/command{ @@ -21409,7 +21333,6 @@ dir = 4 }, /obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/service/chapel) "htN" = ( @@ -21434,7 +21357,7 @@ /obj/structure/closet/masks, /obj/structure/window/spawner/directional/west, /obj/machinery/light/directional/north, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/fitness/recreation) "huj" = ( @@ -21545,7 +21468,7 @@ pixel_y = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hvT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -21555,7 +21478,7 @@ "hvV" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "hwb" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -21697,7 +21620,8 @@ }, /obj/machinery/button/flasher{ id = "executionflash"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, @@ -21707,7 +21631,7 @@ /area/station/hallway/secondary/exit/departure_lounge) "hAa" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hAd" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 @@ -21718,7 +21642,7 @@ "hAg" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/carpet/executive, /area/station/command/heads_quarters/captain/private) @@ -21740,7 +21664,8 @@ dir = 1 }, /obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "hAL" = ( /obj/structure/cable, @@ -21760,7 +21685,7 @@ pixel_y = 10 }, /turf/open/floor/iron/chapel{ - dir = 4 + dir = 1 }, /area/station/service/chapel) "hBi" = ( @@ -21771,18 +21696,14 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/commons/storage/tools) -"hBD" = ( -/obj/effect/turf_decal/tile/red/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, -/area/station/security) "hBF" = ( /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"hBQ" = ( +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lobby) "hBX" = ( /obj/machinery/computer/records/security, /obj/effect/turf_decal/tile/green/anticorner/contrasted{ @@ -21945,7 +21866,7 @@ /area/station/service/theater) "hED" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hEI" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -22022,11 +21943,13 @@ /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/science/lobby) "hGh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/chapel{ dir = 1 @@ -22080,7 +22003,7 @@ /obj/machinery/light/small/dim/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "hHa" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -22146,7 +22069,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/west, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hHS" = ( /obj/machinery/airalarm/directional/north, /obj/structure/cable, @@ -22199,7 +22122,6 @@ name = "Reception" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22207,7 +22129,8 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/iron/white, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "hIv" = ( /obj/effect/turf_decal/tile/neutral{ @@ -22314,6 +22237,8 @@ /turf/open/floor/iron/white/textured_large, /area/station/science/xenobiology) "hLG" = ( +/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/dark, /area/station/command/bridge) @@ -22370,7 +22295,7 @@ icon_state = "catwalk-4" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hNG" = ( /obj/effect/turf_decal/siding/green, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -22382,9 +22307,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/chemistry) "hNP" = ( @@ -22508,7 +22431,7 @@ }, /obj/machinery/light/cold/dim/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "hPF" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/closet/crate/trashcart, @@ -22567,9 +22490,7 @@ /area/station/cargo/storage) "hQy" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/cargo/storage) "hQA" = ( @@ -22588,7 +22509,7 @@ /obj/structure/cable, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22725,7 +22646,6 @@ /area/station/hallway/secondary/exit/departure_lounge) "hSi" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 8 }, @@ -22797,6 +22717,8 @@ dir = 4 }, /obj/effect/mapping_helpers/mail_sorting/security/general, +/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) "hTf" = ( @@ -22804,7 +22726,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "hTl" = ( /obj/machinery/computer/records/medical{ dir = 1 @@ -22813,7 +22735,7 @@ dir = 10 }, /obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "hTQ" = ( /obj/machinery/atmospherics/components/unary/passive_vent{ @@ -22850,7 +22772,7 @@ "hUm" = ( /obj/machinery/light/cold/dim/directional/south, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hUo" = ( /obj/machinery/shieldgen, /obj/effect/decal/cleanable/dirt, @@ -22986,7 +22908,7 @@ dir = 8 }, /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hWx" = ( /obj/effect/spawner/random/structure/closet_empty/crate/with_loot, /obj/structure/broken_flooring/corner/directional/north, @@ -23136,7 +23058,7 @@ "hZM" = ( /obj/machinery/light/cold/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hZN" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/item/food/grown/banana, @@ -23198,7 +23120,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "ibl" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -23356,7 +23278,7 @@ "idU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "idV" = ( /obj/docking_port/stationary{ dwidth = 3; @@ -23459,7 +23381,7 @@ /area/space/nearstation) "ifj" = ( /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ifl" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -23559,6 +23481,7 @@ "igS" = ( /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/tile, /area/station/service/bar) "ihd" = ( @@ -23605,6 +23528,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/iron/textured, /area/station/cargo/miningoffice) "iin" = ( @@ -23684,7 +23608,7 @@ /area/station/maintenance/department/science) "ikc" = ( /obj/structure/closet/crate/secure/loot{ - codelen = 2; + code_length = 2; name = "malfunctioning abandoned crate" }, /turf/open/misc/asteroid, @@ -23701,7 +23625,7 @@ pixel_x = 3; pixel_y = 12 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -6; pixel_y = 4 }, @@ -23742,7 +23666,7 @@ /obj/structure/transport/linear/public, /obj/machinery/holopad, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ilx" = ( /obj/machinery/smartfridge/organ, /turf/open/floor/plating, @@ -23805,7 +23729,7 @@ "imZ" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "ina" = ( /obj/effect/spawner/random/structure/steam_vent, /obj/effect/decal/cleanable/dirt/dust, @@ -23830,7 +23754,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "inz" = ( /obj/machinery/door/airlock/research{ glass = 1; @@ -23873,7 +23797,6 @@ /area/station/service/lawoffice) "iom" = ( /obj/effect/mapping_helpers/dead_body_placer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/medical/morgue) "iov" = ( @@ -23884,7 +23807,6 @@ /turf/open/floor/carpet/purple, /area/station/service/library) "iow" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue, /obj/structure/disposalpipe/junction/flip{ dir = 1 @@ -23922,7 +23844,7 @@ /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/security/armory) +/area/station/security/armory) "ipq" = ( /obj/structure/table, /obj/item/reagent_containers/condiment/saltshaker{ @@ -23981,7 +23903,7 @@ "ipR" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "ipT" = ( /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 1 @@ -24001,8 +23923,6 @@ "ipZ" = ( /obj/effect/landmark/event_spawn, /obj/machinery/iv_drip, -/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) "iqa" = ( @@ -24035,7 +23955,7 @@ /obj/item/pen, /obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iqW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24249,7 +24169,7 @@ /area/station/maintenance/department/medical/central) "iuB" = ( /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iuU" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/airalarm/directional/south, @@ -24258,12 +24178,12 @@ /obj/item/storage/toolbox/emergency, /obj/item/stack/cable_coil, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iuV" = ( /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, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "ivh" = ( /obj/machinery/atmospherics/pipe/smart/manifold/cyan/hidden{ @@ -24298,7 +24218,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "ivR" = ( /obj/effect/turf_decal/tile/neutral{ @@ -24356,7 +24276,7 @@ /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/tlv_cold_room, /turf/open/floor/iron/dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ixa" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/yellow, @@ -24366,7 +24286,7 @@ /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -24440,6 +24360,12 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"iyg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry/minisat) "iyw" = ( /obj/machinery/power/smes, /obj/structure/cable, @@ -24494,7 +24420,7 @@ "izd" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /turf/open/floor/wood/large, /area/station/cargo/boutique) @@ -24535,14 +24461,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/auxlab/firing_range) -"iAw" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) "iAE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24558,12 +24476,18 @@ /obj/machinery/computer/security/telescreen/rd/directional/south, /turf/open/floor/glass/reinforced/plasma, /area/station/command/heads_quarters/rd) +"iAQ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/white, +/area/station/medical/chemistry/minisat) "iBe" = ( /obj/structure/chair/pew/right{ 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/chapel, /area/station/service/chapel) "iBg" = ( @@ -24593,7 +24517,7 @@ dir = 1 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -24743,8 +24667,6 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "iEK" = ( -/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/chapel{ dir = 1 @@ -24755,8 +24677,6 @@ /area/station/security/prison/mess) "iEQ" = ( /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/dark/smooth_large, /area/station/command/meeting_room) "iFb" = ( @@ -24768,7 +24688,7 @@ }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -24884,9 +24804,7 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "iGK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, /area/station/commons/lounge) "iHr" = ( @@ -24915,7 +24833,6 @@ /area/station/maintenance/solars/port) "iHG" = ( /obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "iHH" = ( @@ -24976,7 +24893,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iIq" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -25024,7 +24941,7 @@ /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) +/area/station/ai/upload/foyer) "iIY" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -25043,6 +24960,14 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, +/obj/machinery/button/door/directional/north{ + id = "triage"; + name = "triage button"; + normaldoorcontrol = 1 + }, +/obj/machinery/button/ticket_machine{ + pixel_y = 36 + }, /turf/open/floor/iron/white, /area/station/medical/exam_room) "iJg" = ( @@ -25053,7 +24978,7 @@ }, /obj/item/ai_module/supplied/freeform, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iJm" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/airless, @@ -25079,7 +25004,7 @@ name = "Psychology Bedroom" }, /obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25094,7 +25019,7 @@ /area/station/medical/patients_rooms/room_a) "iJG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/dark, /area/station/security/lockers) @@ -25103,7 +25028,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iJS" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -25116,7 +25041,6 @@ "iJT" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/small, /area/station/science/cytology) "iJZ" = ( @@ -25150,7 +25074,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "iLb" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -25175,7 +25099,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iLo" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/dirt/dust, @@ -25224,6 +25148,8 @@ "iMD" = ( /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/wood/tile, /area/station/service/bar) "iMK" = ( @@ -25231,9 +25157,13 @@ /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) +"iMS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "iMT" = ( /obj/effect/spawner/random/trash/mess, /obj/effect/turf_decal/stripes/corner{ @@ -25395,16 +25325,12 @@ "iPH" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iPQ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) -"iPS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/corporate_showroom) +/area/station/ai/satellite/teleporter) "iQs" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -25433,7 +25359,7 @@ /turf/open/floor/iron/stairs{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iQJ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -25453,7 +25379,7 @@ /obj/structure/table/reinforced, /obj/item/newspaper, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iRs" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25461,6 +25387,7 @@ /obj/structure/disposalpipe/junction/flip{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/security) "iRy" = ( @@ -25487,6 +25414,10 @@ /area/station/commons/fitness/recreation) "iRL" = ( /obj/structure/sink/kitchen/directional/east, +/obj/machinery/button/door/directional/west{ + id = "kitchen_counter"; + name = "Kitchen Shutters" + }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "iRR" = ( @@ -25504,7 +25435,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iSz" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/trash, @@ -25622,7 +25553,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iUX" = ( /obj/structure/transport/linear/public, /obj/machinery/elevator_control_panel{ @@ -25631,7 +25562,7 @@ preset_destination_names = list("2" = "Telecomms", "3" = "AI Core") }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iVk" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -25659,7 +25590,7 @@ "iVJ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -25672,7 +25603,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "iVL" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -25702,7 +25633,6 @@ /area/station/cargo/miningoffice) "iWO" = ( /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, @@ -25747,7 +25677,7 @@ dir = 8 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iXA" = ( /obj/machinery/door/airlock/research/glass{ name = "Chemistry Minisat" @@ -25846,20 +25776,14 @@ /turf/open/floor/iron/white/smooth_large, /area/station/science/research) "jaa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/directions/command/directional/north, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4; - pixel_y = 40 - }, -/obj/structure/sign/directions/security/directional/north{ - dir = 8; - pixel_y = 24 +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/button/door/directional/west{ + id = "maintbridge"; + name = "Shutter Control" }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) "jaf" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, @@ -25958,7 +25882,8 @@ /obj/machinery/light/warm/directional/west, /obj/item/storage/fancy/coffee_condi_display, /obj/structure/table, -/turf/open/floor/iron/white, +/obj/item/surgicaldrill, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "jbV" = ( /obj/structure/plasticflaps, @@ -25976,7 +25901,6 @@ dir = 1 }, /obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "jco" = ( @@ -26069,12 +25993,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) -"jea" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) "jer" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/landmark/event_spawn, @@ -26098,7 +26016,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jeY" = ( /obj/structure/railing/corner{ dir = 1 @@ -26126,7 +26044,6 @@ /obj/effect/turf_decal/stripes{ 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/station/engineering/atmospherics_engine) @@ -26176,8 +26093,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ 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/execution/transfer) "jge" = ( @@ -26196,7 +26111,7 @@ /area/station/science/xenobiology) "jgB" = ( /obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/textured, /area/station/hallway/primary/central) @@ -26281,7 +26196,7 @@ "jir" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/misc/asteroid, @@ -26373,14 +26288,14 @@ /area/station/engineering/supermatter/room) "jjQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) "jjS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/rack, /obj/effect/spawner/random/entertainment/cigarette_pack, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) "jka" = ( @@ -26389,7 +26304,7 @@ }, /obj/structure/closet/secure_closet/medical1, /turf/open/floor/iron/white, -/area/station/medical/paramedic) +/area/station/medical/exam_room) "jkc" = ( /obj/structure/bed{ dir = 1 @@ -26427,6 +26342,11 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "jkG" = ( @@ -26558,7 +26478,7 @@ }, /obj/machinery/firealarm/directional/east, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "jlU" = ( /obj/machinery/newscaster/directional/south, /obj/machinery/hydroponics/soil/rich, @@ -26805,7 +26725,6 @@ /obj/structure/railing{ dir = 5 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor/border_only{ dir = 4 }, @@ -26888,7 +26807,7 @@ /obj/machinery/teleport/station, /obj/machinery/light/cold/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "jqG" = ( /obj/machinery/computer/security{ dir = 1 @@ -27031,11 +26950,9 @@ /obj/structure/table/reinforced, /obj/item/analyzer, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jui" = ( /obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/chair/sofa/bench/right{ dir = 8 }, @@ -27077,13 +26994,6 @@ }, /turf/open/floor/carpet/purple, /area/station/service/library) -"jvd" = ( -/obj/structure/cable, -/obj/effect/landmark/start/paramedic, -/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/paramedic) "jvt" = ( /obj/structure/closet/secure_closet/chemical, /obj/effect/turf_decal/stripes/line{ @@ -27106,9 +27016,7 @@ }, /area/station/science/robotics/lab) "jvN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/textured_large, /area/station/engineering/storage/tech) "jvO" = ( @@ -27160,6 +27068,11 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "jwK" = ( @@ -27226,12 +27139,9 @@ /area/station/command/meeting_room) "jyg" = ( /obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/suit_storage_unit/medical, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, /obj/item/radio/intercom/directional/north, /obj/machinery/light_switch/directional/west, +/obj/structure/closet/l3closet, /turf/open/floor/iron/white, /area/station/medical/storage) "jyu" = ( @@ -27246,8 +27156,8 @@ /area/station/security/checkpoint/supply) "jyx" = ( /obj/structure/chair/office, -/obj/structure/cable, -/turf/open/floor/iron/white, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "jyM" = ( /obj/structure/ladder{ @@ -27303,10 +27213,10 @@ /area/station/engineering/storage/tcomms) "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, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) "jzI" = ( @@ -27362,7 +27272,7 @@ "jAd" = ( /obj/machinery/teleport/hub, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "jAe" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/iron, @@ -27400,7 +27310,6 @@ /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, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) "jAG" = ( @@ -27429,7 +27338,7 @@ network = list("minisat") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jBh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -27734,7 +27643,7 @@ "jEY" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jFc" = ( /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, @@ -27812,10 +27721,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/office) -"jGK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/station/cargo/boutique) "jGW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ @@ -27833,13 +27738,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"jGZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) "jHn" = ( /obj/structure/railing{ dir = 8 @@ -27899,7 +27797,7 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -27934,8 +27832,6 @@ /obj/structure/railing{ dir = 1 }, -/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 }, @@ -27945,7 +27841,6 @@ /area/station/command/meeting_room) "jIm" = ( /obj/structure/sign/poster/random/directional/south, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) "jIn" = ( @@ -28066,7 +27961,7 @@ /area/station/medical/morgue) "jKp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 1 }, /turf/open/floor/iron, /area/station/engineering/storage) @@ -28178,7 +28073,7 @@ }, /obj/machinery/camera/autoname/directional/south, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jMN" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/misc/asteroid, @@ -28201,7 +28096,7 @@ "jNg" = ( /mob/living/basic/bot/repairbot, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jNh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -28376,7 +28271,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jQf" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -28476,7 +28371,6 @@ /obj/structure/chair/office{ name = "grimy chair" }, -/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/vacant_room/commissary) @@ -28608,11 +28502,13 @@ /obj/machinery/door/airlock/security/glass, /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/all/security/general, /obj/structure/disposalpipe/segment{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, +/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) "jUU" = ( @@ -28720,14 +28616,14 @@ /area/station/service/chapel) "jWh" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jWj" = ( /obj/structure/cable, /obj/structure/cable/layer3, /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) +/area/station/ai/satellite/maintenance/storage) "jWm" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -28957,11 +28853,6 @@ /obj/machinery/light/small/dim/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"kaz" = ( -/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/command) "kaJ" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /obj/structure/cable, @@ -28988,15 +28879,16 @@ /area/station/cargo/miningoffice) "kbv" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "AI Antechamber turret control"; - pixel_x = 27 + pixel_x = 27; + dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kbD" = ( /obj/machinery/newscaster/directional/south, /obj/effect/turf_decal/siding/purple, @@ -29051,7 +28943,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "kco" = ( /obj/effect/turf_decal/stripes/asteroid/line{ dir = 5 @@ -29062,7 +28954,6 @@ /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") }, @@ -29082,6 +28973,8 @@ /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/security) "kcB" = ( @@ -29155,7 +29048,7 @@ /area/station/hallway/primary/central) "kdc" = ( /obj/effect/spawner/random/trash/graffiti, -/obj/machinery/light/small/dim/directional/east, +/obj/machinery/light/small/dim/directional/north, /turf/open/floor/plating, /area/station/maintenance/central/greater) "kde" = ( @@ -29170,6 +29063,15 @@ "kdg" = ( /turf/closed/wall, /area/station/science/research) +"kdh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) "kdo" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, @@ -29239,13 +29141,17 @@ network = list("aicore") }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kdW" = ( /obj/machinery/smartfridge, /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 }, /obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/iron, /area/station/service/hydroponics) "ked" = ( @@ -29256,7 +29162,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "keg" = ( /obj/structure/cable, /obj/machinery/light/small/directional/east, @@ -29309,6 +29215,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/lockers) "kfr" = ( @@ -29384,6 +29291,10 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"kgO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage/tech) "kgT" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/door/firedoor, @@ -29536,7 +29447,7 @@ "kjp" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /turf/open/floor/iron, /area/station/engineering/gravity_generator) @@ -29551,12 +29462,12 @@ /area/station/command/bridge) "kju" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /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/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/science) "kjx" = ( @@ -29637,12 +29548,12 @@ "kkC" = ( /obj/machinery/light/small/directional/east, /obj/structure/rack, -/obj/effect/spawner/random/armory/laser_gun, +/obj/effect/spawner/random/armory/pick_laser_loadout, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kkD" = ( /obj/machinery/smartfridge/extract, /obj/structure/sign/poster/official/random/directional/south, @@ -29666,19 +29577,13 @@ req_access = list("command") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kkK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"kkT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/lockers) +/area/station/command/vault) "kkU" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/machinery/camera/autoname/directional/south, @@ -29998,6 +29903,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/security) "kpD" = ( @@ -30012,7 +29918,7 @@ pixel_y = 11 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kpG" = ( /obj/effect/turf_decal/stripes/red/corner, /obj/effect/turf_decal/stripes/red/corner{ @@ -30116,7 +30022,7 @@ }, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kqW" = ( /turf/open/floor/wood, /area/station/service/library) @@ -30525,7 +30431,6 @@ /obj/effect/landmark/start/station_engineer, /obj/effect/landmark/event_spawn, /obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/storage) "kyi" = ( @@ -30543,7 +30448,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "kyA" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/structure/cable, @@ -30678,7 +30583,7 @@ /obj/structure/cable/multilayer/multiz, /obj/machinery/light/small/dim/directional/west, /turf/open/floor/glass, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kBo" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -30722,7 +30627,7 @@ /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/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "kBM" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -30790,9 +30695,7 @@ dir = 4 }, /obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "kCD" = ( @@ -30877,7 +30780,7 @@ /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kEn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31110,7 +31013,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "kIm" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -31153,12 +31056,6 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/medical/treatment_center) -"kJl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) "kJp" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ @@ -31180,7 +31077,7 @@ /area/station/maintenance/department/medical/central) "kJN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) @@ -31316,7 +31213,6 @@ dir = 1 }, /obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "kNk" = ( @@ -31369,10 +31265,12 @@ }, /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kOl" = ( /obj/structure/railing, /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, /area/station/command/meeting_room) "kOn" = ( @@ -31398,7 +31296,8 @@ /area/station/security/courtroom) "kOE" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -31472,6 +31371,7 @@ }, /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) "kQF" = ( @@ -31484,10 +31384,10 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, /turf/open/floor/iron/white, @@ -31719,7 +31619,7 @@ "kTx" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kTy" = ( /obj/structure/railing, /turf/open/floor/iron/dark/side, @@ -31832,13 +31732,6 @@ }, /turf/open/floor/iron/large, /area/station/service/hydroponics/garden) -"kUW" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) "kUX" = ( /turf/closed/wall/r_wall, /area/station/engineering/atmospherics_engine) @@ -31864,7 +31757,7 @@ /area/station/cargo/miningoffice) "kWb" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kWc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/structure/closet_maintenance, @@ -31876,6 +31769,11 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron, /area/station/science/robotics/lab) +"kWC" = ( +/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/atmos/upper) "kWH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ @@ -31930,10 +31828,10 @@ /area/station/command/bridge) "kXV" = ( /obj/structure/cable, -/obj/structure/plaque/static_plaque/golden/commission/wawa, /obj/structure/disposalpipe/segment{ dir = 8 }, +/obj/structure/plaque/static_plaque/golden/commission/wawa, /turf/open/floor/iron, /area/station/hallway/primary/central) "kYc" = ( @@ -31981,12 +31879,11 @@ /area/station/medical/chemistry/minisat) "kYu" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "kYB" = ( /obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 8 @@ -32019,6 +31916,11 @@ }, /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "kYZ" = ( @@ -32030,12 +31932,6 @@ /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/central) -"kZg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/turf/open/floor/iron, -/area/station/command/bridge) "kZj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32056,8 +31952,6 @@ 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/security/execution/transfer) "kZw" = ( @@ -32087,6 +31981,10 @@ req_access = list("hydroponics") }, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/iron, /area/station/service/hydroponics) "lac" = ( @@ -32131,7 +32029,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lar" = ( /obj/structure/table/reinforced/rglass, /obj/effect/landmark/start/lawyer, @@ -32190,7 +32088,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "lbw" = ( /obj/structure/closet/l3closet, /obj/effect/decal/cleanable/dirt/dust, @@ -32288,7 +32186,7 @@ /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, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -32399,10 +32297,7 @@ /turf/open/floor/iron/showroomfloor, /area/station/maintenance/department/engine) "lfx" = ( -/obj/structure/cable, /obj/machinery/light/dim/directional/south, -/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) "lfy" = ( @@ -32547,7 +32442,7 @@ "lib" = ( /obj/machinery/light/directional/west, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lil" = ( /obj/machinery/atmospherics/components/binary/valve, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32593,7 +32488,6 @@ /obj/effect/decal/cleanable/glass, /obj/item/stack/rods/two, /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/commons/vacant_room/commissary) @@ -32720,7 +32614,7 @@ /obj/structure/transport/linear/public, /obj/machinery/porta_turret/ai, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lmt" = ( /obj/structure/cable, /obj/effect/mapping_helpers/burnt_floor, @@ -32739,7 +32633,6 @@ /obj/effect/turf_decal/bot_white, /obj/effect/spawner/random/maintenance, /obj/effect/spawner/random/structure/closet_empty/crate, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) "lmU" = ( @@ -32749,7 +32642,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) "lno" = ( @@ -32784,7 +32676,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/item/clothing/head/costume/cardborg, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "lnG" = ( /obj/structure/bed, /obj/machinery/airalarm/directional/north, @@ -32804,7 +32696,7 @@ /obj/item/stack/sheet/glass/fifty, /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "loa" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -32813,10 +32705,10 @@ /area/station/service/theater) "log" = ( /obj/effect/decal/cleanable/blood/oil, -/obj/machinery/light/small/directional/west, /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/disposal) "loh" = ( @@ -32846,7 +32738,7 @@ /obj/structure/rack, /obj/item/toy/figure/borg, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "loC" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel's Quarters" @@ -32959,6 +32851,8 @@ /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/tile, /area/station/service/bar) "lqy" = ( @@ -32974,17 +32868,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) +"lqM" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) "lqR" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/cargo/drone_bay) -"lrc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/stairs/right{ - dir = 1 - }, -/area/station/command/bridge) "lrk" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance, @@ -33011,6 +32908,7 @@ /obj/effect/turf_decal/siding/red{ dir = 10 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, /area/station/science/robotics/lab) "lrV" = ( @@ -33091,7 +32989,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "ltF" = ( /obj/structure/cable, @@ -33181,7 +33079,6 @@ /area/station/engineering/atmos/project) "lvg" = ( /obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "lvj" = ( @@ -33246,7 +33143,7 @@ /obj/structure/railing, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lwu" = ( /turf/open/floor/carpet/red, /area/station/command/heads_quarters/qm) @@ -33291,11 +33188,11 @@ /obj/machinery/power/terminal{ dir = 8 }, -/obj/structure/cable, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 }, /obj/machinery/power/port_gen/pacman, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "lwI" = ( @@ -33366,6 +33263,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured, /area/station/construction/mining/aux_base) +"lxX" = ( +/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/research) "lyr" = ( /obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -33446,6 +33352,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "lzs" = ( @@ -33490,6 +33397,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, /area/station/engineering/gravity_generator) "lAc" = ( @@ -33549,8 +33458,6 @@ /obj/structure/railing/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/dark/corner{ dir = 4 }, @@ -33659,7 +33566,6 @@ "lCU" = ( /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, /obj/structure/cable, /obj/machinery/duct, /turf/open/floor/iron/freezer, @@ -33692,7 +33598,6 @@ }, /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/textured, /area/station/medical/pharmacy) "lDn" = ( @@ -33743,7 +33648,7 @@ /area/station/hallway/secondary/entry) "lDZ" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_smooth, @@ -33756,7 +33661,7 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lEu" = ( /obj/structure/railing/corner{ dir = 4 @@ -33788,8 +33693,8 @@ }, /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/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "lES" = ( @@ -33819,7 +33724,6 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/central) "lFG" = ( @@ -34050,7 +33954,7 @@ /obj/effect/mapping_helpers/mob_buckler, /obj/machinery/light/small/dim/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "lJw" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -34067,7 +33971,6 @@ "lJT" = ( /obj/machinery/photocopier/prebuilt, /obj/machinery/light_switch/directional/east, -/obj/structure/cable, /obj/machinery/firealarm/directional/south, /turf/open/floor/carpet/black, /area/station/command/heads_quarters/hos) @@ -34105,7 +34008,7 @@ dir = 1 }, /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lKN" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/stripes/white/line{ @@ -34280,7 +34183,7 @@ /obj/structure/cable, /obj/machinery/door/firedoor, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lNJ" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, @@ -34345,14 +34248,14 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "lPj" = ( /obj/machinery/firealarm/directional/north, /obj/structure/rack, /obj/item/storage/toolbox/emergency, /obj/effect/turf_decal/stripes, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lPn" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -34375,7 +34278,9 @@ /turf/open/floor/engine, /area/station/command/corporate_dock) "lPz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/dark, /area/station/command/bridge) @@ -34400,7 +34305,7 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/power_store/cell/high, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "lQl" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/hollow/reinforced/end{ @@ -34467,14 +34372,14 @@ "lRk" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/open/floor/iron/dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lRr" = ( /obj/machinery/door/airlock/maintenance/glass, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) "lRJ" = ( @@ -34569,13 +34474,13 @@ /turf/open/floor/iron, /area/station/service/janitor) "lSI" = ( -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, /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/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/white, /area/station/medical/chemistry/minisat) "lSM" = ( @@ -34677,6 +34582,12 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron/dark, /area/station/security/prison/safe) +"lUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) "lVj" = ( /obj/effect/turf_decal/loading_area/white{ dir = 4 @@ -34769,7 +34680,7 @@ "lWW" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lXb" = ( /obj/machinery/light/warm/directional/east, /obj/effect/turf_decal/siding/wood{ @@ -34784,7 +34695,7 @@ /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/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "lXi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34928,7 +34839,7 @@ /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "lYR" = ( /obj/machinery/flasher/portable, /obj/effect/turf_decal/tile/blue/half/contrasted{ @@ -35055,7 +34966,7 @@ /area/station/science/xenobiology) "mbL" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "mbM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -35089,6 +35000,9 @@ "mcw" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/tile/neutral, +/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/command/heads_quarters/hop) "mcA" = ( @@ -35157,7 +35071,7 @@ /obj/item/electronics/airlock, /obj/item/electronics/airlock, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "meL" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -35170,9 +35084,6 @@ /obj/effect/turf_decal/trimline/blue/filled/corner{ 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/white, /area/station/medical/storage) "meQ" = ( @@ -35258,7 +35169,7 @@ "mgV" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -35348,8 +35259,14 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"mic" = ( +/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/tile, +/area/station/service/bar) "mio" = ( -/obj/machinery/computer/station_alert/station_only, +/obj/machinery/computer/station_alert, /turf/open/floor/iron, /area/station/engineering/atmos/upper) "mit" = ( @@ -35418,16 +35335,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/main) +"mjj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/medical/chemistry) "mjq" = ( /obj/structure/cable/layer3, /obj/machinery/camera/autoname/directional/north{ network = list("aicore") }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mju" = ( /obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) "mjx" = ( @@ -35435,7 +35355,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, @@ -35465,7 +35385,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -35482,9 +35402,9 @@ /area/station/engineering/atmos) "mkc" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /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/department/medical) "mks" = ( @@ -35513,7 +35433,7 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/security/hos, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/carpet/red, @@ -35620,7 +35540,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "mmh" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/engineering) @@ -35833,7 +35753,7 @@ "mpG" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/plating, @@ -35843,7 +35763,6 @@ dir = 1 }, /obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) "mpP" = ( @@ -35884,7 +35803,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mqE" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 10 @@ -35896,14 +35815,18 @@ /obj/effect/turf_decal/trimline/yellow/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, /area/station/engineering/gravity_generator) "mra" = ( /obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_y = 40 + pixel_y = 40; + dir = 1 }, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -36082,6 +36005,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/firealarm/directional/west, +/obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "mua" = ( @@ -36094,6 +36018,8 @@ 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/chapel, /area/station/service/chapel) "mut" = ( @@ -36241,7 +36167,6 @@ /area/station/commons/fitness/recreation) "mwc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/east, /turf/open/floor/carpet/red, /area/station/command/heads_quarters/qm) @@ -36250,7 +36175,7 @@ /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/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "mwo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/herringbone, @@ -36435,8 +36360,6 @@ /area/station/medical/pharmacy) "mAd" = ( /obj/effect/turf_decal/tile/red/half/contrasted, -/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) "mAi" = ( @@ -36480,7 +36403,6 @@ /obj/effect/turf_decal/box/corners{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/firealarm/directional/south, /obj/machinery/camera/autoname/directional/south, @@ -36551,7 +36473,7 @@ /area/station/engineering/lobby) "mBY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /turf/open/floor/carpet/red, /area/station/command/heads_quarters/qm) @@ -36584,7 +36506,7 @@ "mCt" = ( /obj/machinery/light/cold/dim/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mCv" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -36662,7 +36584,7 @@ pixel_y = -29 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mDT" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -36766,7 +36688,8 @@ dir = 1 }, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/tile, /area/station/service/bar) @@ -36884,7 +36807,6 @@ "mId" = ( /obj/structure/urinal/directional/north, /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/restrooms) @@ -36893,7 +36815,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mIk" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/cobweb, @@ -36909,6 +36831,11 @@ }, /turf/open/floor/wood/large, /area/station/cargo/boutique) +"mIC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/engineering/lobby) "mIH" = ( /obj/structure/lattice, /obj/effect/turf_decal/stripes/asteroid/line{ @@ -36925,9 +36852,6 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/department/engine) "mJb" = ( -/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/filled/corner, /turf/open/floor/iron, /area/station/engineering/lobby) @@ -36969,8 +36893,6 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/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/lobby) "mJL" = ( @@ -37116,7 +37038,7 @@ dir = 5 }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mLH" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/delivery, @@ -37161,7 +37083,7 @@ /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/security/armory) +/area/station/security/armory) "mMC" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37252,7 +37174,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/door/firedoor, @@ -37271,7 +37193,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "mOI" = ( /obj/machinery/button/door/directional/south{ id = "warehouse" @@ -37354,7 +37276,7 @@ /area/station/service/chapel) "mQE" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "mQM" = ( /obj/structure/cable, /turf/open/floor/iron/dark/textured_half, @@ -37960,7 +37882,7 @@ "naZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "nbf" = ( /obj/structure/cable, @@ -38011,7 +37933,7 @@ /obj/structure/window/spawner/directional/north, /mob/living/basic/butterfly, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nck" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 4 @@ -38066,6 +37988,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/wood, /area/station/commons/lounge) "ncZ" = ( @@ -38087,7 +38010,7 @@ /obj/structure/window/spawner/directional/west, /obj/structure/window/spawner/directional/south, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ndr" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -38161,7 +38084,11 @@ dir = 8 }, /obj/machinery/digital_clock/directional/west, -/turf/open/floor/iron/white, +/obj/machinery/suit_storage_unit/medical, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "neb" = ( /obj/structure/table, @@ -38209,7 +38136,7 @@ "nes" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "net" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -38233,7 +38160,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -38358,6 +38285,10 @@ /obj/machinery/atmospherics/components/binary/valve/digital/on{ dir = 4 }, +/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) "ngp" = ( @@ -38429,7 +38360,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/wood/tile, /area/station/command/corporate_showroom) @@ -38440,8 +38371,8 @@ /obj/effect/turf_decal/stripes/red/line{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/medical/morgue) "niQ" = ( @@ -38535,7 +38466,7 @@ /area/station/maintenance/department/science) "nkf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /turf/open/floor/iron/white/smooth_large, /area/station/medical/exam_room) @@ -38697,11 +38628,13 @@ /turf/open/floor/iron, /area/station/engineering/atmos/project) "nnF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ +/obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/iron/white, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "nnL" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ @@ -38732,7 +38665,7 @@ /obj/structure/cable/multilayer/multiz, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "nod" = ( /obj/machinery/button/elevator/directional/east{ id = "cargo" @@ -38753,11 +38686,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron, /area/station/maintenance/department/medical/central) -"noi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) "nor" = ( /obj/machinery/door/airlock/command{ name = "Head of Security's Office" @@ -38820,8 +38748,9 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, +/obj/structure/sign/warning/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "npw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -38830,13 +38759,13 @@ /area/station/medical/treatment_center) "npH" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "npL" = ( @@ -38855,13 +38784,13 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ 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/foyer) +/area/station/ai/satellite/foyer) "nqg" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -38985,6 +38914,8 @@ "ntS" = ( /obj/structure/cable, /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/freezer, /area/station/commons/toilet/restrooms) "nun" = ( @@ -39023,6 +38954,12 @@ }, /turf/open/floor/iron, /area/station/cargo/sorting) +"nuH" = ( +/obj/structure/sign/warning/directional/west, +/turf/closed/mineral/random/stationside/asteroid/porus{ + mineralChance = 20 + }, +/area/station/asteroid) "nuM" = ( /obj/machinery/door/airlock/public/glass{ name = "Courtroom" @@ -39234,7 +39171,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "nzi" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 8 @@ -39248,11 +39185,6 @@ "nzk" = ( /turf/closed/wall/r_wall, /area/station/maintenance/central/greater) -"nzn" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/openspace, -/area/station/science/lobby) "nzw" = ( /obj/machinery/computer/slot_machine, /obj/effect/turf_decal/sand/plating, @@ -39303,7 +39235,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/apc/cell_5k, /turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nAb" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/station/maintenance/department/cargo) @@ -39314,8 +39246,6 @@ /area/station/maintenance/department/bridge) "nAi" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/rack, /obj/effect/spawner/random/techstorage/custom_shuttle, /turf/open/floor/iron/textured_large, @@ -39349,14 +39279,11 @@ }, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) -"nAx" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) "nAG" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/locker) "nAR" = ( @@ -39385,15 +39312,6 @@ }, /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{ - dir = 8; - pixel_y = -24 - }, -/obj/structure/sign/directions/science/directional/south{ - dir = 4; - pixel_y = -40 - }, /turf/open/floor/iron, /area/station/hallway/primary/central) "nBV" = ( @@ -39428,7 +39346,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nCm" = ( /turf/open/openspace/xenobio, /area/station/science/xenobiology) @@ -39639,6 +39557,8 @@ /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/wood/tile, /area/station/service/bar) "nHw" = ( @@ -39810,17 +39730,17 @@ /turf/open/floor/iron, /area/station/construction/mining/aux_base) "nKe" = ( -/obj/machinery/door/airlock/medical{ - name = "Medical Breakroom and Paramedic Dispatch" - }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, /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, +/obj/machinery/door/airlock/medical{ + name = "Paramedic Dispatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "nKi" = ( /obj/effect/landmark/start/cargo_technician, @@ -39847,11 +39767,13 @@ /obj/effect/spawner/random/decoration/showcase, /obj/structure/sign/picture_frame/showroom/two{ pixel_x = 8; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/sign/picture_frame/showroom/one{ pixel_x = -8; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -39867,7 +39789,7 @@ /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/teleporter) +/area/station/ai/satellite/teleporter) "nKx" = ( /obj/machinery/light/dim/directional/south, /turf/open/floor/glass, @@ -39900,7 +39822,7 @@ /area/station/science/xenobiology) "nLb" = ( /obj/structure/closet/wardrobe/grey, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, @@ -39918,7 +39840,6 @@ 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/engineering/atmospherics_engine) "nLg" = ( @@ -39939,8 +39860,6 @@ dir = 1 }, /obj/structure/extinguisher_cabinet/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/engineering/gravity_generator) "nLz" = ( @@ -39961,6 +39880,7 @@ /obj/effect/turf_decal/tile/red{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "nLT" = ( @@ -40125,10 +40045,12 @@ /obj/effect/spawner/random/vending/colavend, /obj/machinery/airalarm/directional/east, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "nOZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/iron/dark/textured, /area/station/science/robotics/lab) "nPf" = ( @@ -40138,7 +40060,6 @@ /turf/open/floor/engine, /area/station/engineering/atmospherics_engine) "nPm" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron, /area/station/command/bridge) @@ -40158,7 +40079,9 @@ /obj/effect/turf_decal/siding/dark_blue{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) "nPV" = ( @@ -40250,22 +40173,14 @@ /turf/open/floor/iron/large, /area/station/service/hydroponics/garden) "nSn" = ( -/obj/structure/cable, /obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/siding/wood, /obj/effect/mapping_helpers/broken_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "nSC" = ( /turf/closed/wall, /area/station/security/prison/shower) -"nSF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/medical/chemistry/minisat) "nSH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -40380,8 +40295,6 @@ dir = 8 }, /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/science/xenobiology) "nVm" = ( @@ -40558,7 +40471,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nZt" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -40722,7 +40635,7 @@ c_tag = "Security Armory - Lethals" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ocm" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -40738,10 +40651,10 @@ /turf/open/floor/iron/white/textured_large, /area/station/science/research) "ocB" = ( -/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/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/engineering/lobby) "ocF" = ( @@ -40757,10 +40670,7 @@ /turf/open/floor/iron/grimy, /area/station/maintenance/central/greater) "ocV" = ( -/obj/structure/cable, /obj/structure/reagent_dispensers/water_cooler, -/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) "odg" = ( @@ -40846,22 +40756,22 @@ /turf/open/floor/iron, /area/station/cargo/drone_bay) "oez" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/directions/science/directional/north{ - dir = 4 +/obj/structure/sign/directions/supply/directional/west{ + dir = 1; + pixel_y = 8; + pixel_x = 0 }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4; - pixel_y = 40 +/obj/structure/sign/directions/security/directional/west{ + dir = 1; + pixel_x = 0 }, -/obj/structure/sign/directions/command/directional/north{ - dir = 4; - pixel_y = 24 +/obj/structure/sign/directions/science/directional/west{ + dir = 1; + pixel_y = -8; + pixel_x = 0 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/medical/pharmacy) "oeL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40920,7 +40830,7 @@ "ogb" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "ogH" = ( /obj/machinery/computer/atmos_alert/station_only, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ @@ -41104,7 +41014,7 @@ /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "okm" = ( /turf/open/floor/engine/hull/reinforced, /area/station/asteroid) @@ -41122,7 +41032,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "okL" = ( /obj/structure/railing{ dir = 8 @@ -41246,7 +41156,7 @@ /obj/structure/transit_tube/station/dispenser/reverse, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "onm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_half{ @@ -41318,6 +41228,8 @@ codes_txt = "patrol;next_patrol=P1-Central-Primary"; location = "P15-Central-Primary" }, +/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) "opN" = ( @@ -41343,6 +41255,11 @@ /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "oqj" = ( @@ -41375,13 +41292,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/service/hydroponics) -"oqt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) "oqz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41516,12 +41426,12 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ 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/segment{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/lobby) "osK" = ( @@ -41530,7 +41440,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "osX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -41569,14 +41479,14 @@ id_tag = "r2"; name = "Room B" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, /turf/open/floor/iron/white, /area/station/medical/patients_rooms/room_b) "ouk" = ( @@ -41642,7 +41552,8 @@ /obj/machinery/button/curtain{ id = "court"; pixel_x = -24; - pixel_y = -8 + pixel_y = -8; + dir = 8 }, /turf/open/floor/iron/dark, /area/station/security/courtroom) @@ -41717,7 +41628,6 @@ }, /obj/structure/sign/warning/radiation/rad_area/directional/east, /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/engineering/atmospherics_engine) "oxe" = ( @@ -41760,12 +41670,14 @@ }, /obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/admin/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/command/meeting_room) "oxU" = ( @@ -41790,7 +41702,7 @@ /obj/structure/window/spawner/directional/south, /mob/living/basic/butterfly, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "oyP" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -41812,7 +41724,7 @@ dir = 4 }, /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ozx" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -41829,6 +41741,7 @@ "ozF" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) "ozU" = ( @@ -41928,12 +41841,12 @@ /turf/open/floor/grass, /area/station/science/genetics) "oAY" = ( -/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/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "oBe" = ( @@ -41994,6 +41907,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "oBP" = ( @@ -42053,11 +41967,19 @@ /obj/machinery/meter, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"oDw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry/minisat) "oDC" = ( /obj/effect/turf_decal/trimline/blue/filled/corner, /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/storage) "oDH" = ( @@ -42100,7 +42022,9 @@ color = "#52B4E9" }, /obj/effect/turf_decal/tile/blue/full, -/obj/effect/landmark/start/paramedic, +/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/smooth_large, /area/station/medical/storage) "oDZ" = ( @@ -42109,7 +42033,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -42135,6 +42059,8 @@ /obj/structure/sink/directional/west, /obj/structure/mirror/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/freezer, /area/station/commons/toilet/restrooms) "oEB" = ( @@ -42191,13 +42117,14 @@ /area/station/construction/mining/aux_base) "oFn" = ( /obj/machinery/door/airlock/maintenance_hatch, -/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, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "oFu" = ( @@ -42210,11 +42137,10 @@ name = "Cell 3 locker" }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/east{ - id = "Cell 3"; - pixel_y = 26 - }, /obj/structure/cable, +/obj/machinery/flasher/directional/north{ + id = "Cell 3" + }, /turf/open/floor/iron, /area/station/security/brig) "oFK" = ( @@ -42228,7 +42154,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "oGk" = ( /obj/effect/turf_decal/siding/purple, /obj/structure/disposalpipe/segment{ @@ -42480,7 +42406,7 @@ pixel_y = 8 }, /turf/open/floor/iron/chapel{ - dir = 1 + dir = 4 }, /area/station/service/chapel) "oJU" = ( @@ -42498,7 +42424,7 @@ pixel_y = 2 }, /turf/open/floor/glass/reinforced/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oKc" = ( /obj/machinery/door/airlock{ id_tag = "u5"; @@ -42621,6 +42547,7 @@ /area/station/hallway/primary/fore) "oMi" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "oMk" = ( @@ -42680,7 +42607,6 @@ req_access = list("ai_upload") }, /obj/machinery/turretid{ - icon_state = "control_stun"; name = "AI Chamber turret control"; pixel_x = 3; pixel_y = -23 @@ -42695,7 +42621,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oOb" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -42704,7 +42630,7 @@ /obj/structure/window/spawner/directional/west, /obj/structure/window/spawner/directional/east, /obj/machinery/camera/autoname/directional/north, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/fitness/recreation) "oOe" = ( @@ -42721,7 +42647,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "oOF" = ( /obj/item/surgery_tray/deployed, /turf/open/floor/iron, @@ -42761,7 +42687,6 @@ /turf/closed/wall/r_wall, /area/station/security/prison/garden) "oPl" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue{ dir = 1 }, @@ -42918,11 +42843,11 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, +/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 }, -/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/exam_room) "oRD" = ( @@ -42974,7 +42899,6 @@ "oSd" = ( /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /mob/living/carbon/human/species/monkey/punpun, /turf/open/floor/iron/dark, /area/station/service/bar) @@ -43040,7 +42964,7 @@ /obj/structure/cable, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oTv" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -43069,8 +42993,6 @@ /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/purple/half/contrasted, /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/lobby) "oUd" = ( @@ -43186,7 +43108,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oVS" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/purple, @@ -43201,23 +43123,11 @@ /turf/open/floor/engine/xenobio, /area/station/science/xenobiology) "oVX" = ( -/obj/structure/table, -/obj/structure/window/spawner/directional/east, -/obj/item/clothing/suit/jacket/straight_jacket, -/obj/item/clothing/glasses/blindfold{ - pixel_y = 3 - }, -/obj/item/clothing/glasses/blindfold{ - pixel_y = 3 - }, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 3 +/obj/structure/closet/secure_closet/paramedic, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 4 }, -/turf/open/floor/iron/white/textured, +/turf/open/floor/holofloor/dark, /area/station/medical/paramedic) "oWd" = ( /obj/structure/cable, @@ -43225,11 +43135,13 @@ /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/wood/tile, /area/station/service/bar) "oWg" = ( /obj/machinery/door/airlock/maintenance/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/science/lobby) "oWr" = ( @@ -43255,13 +43167,13 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ 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/foyer) +/area/station/ai/satellite/foyer) "oWE" = ( /obj/structure/closet/radiation{ anchored = 1 @@ -43331,7 +43243,7 @@ "oXz" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/white, /area/station/science/lobby) @@ -43390,7 +43302,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oZb" = ( /obj/machinery/light/dim/directional/south, /obj/structure/disposalpipe/segment{ @@ -43413,7 +43325,7 @@ /obj/item/clothing/head/helmet/space/orange, /obj/item/tank/internals/oxygen, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oZp" = ( /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark/telecomms, @@ -43433,7 +43345,7 @@ "oZK" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -43488,6 +43400,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) "pau" = ( @@ -43503,7 +43416,7 @@ }, /obj/item/storage/toolbox/mechanical, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "paS" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -43597,6 +43510,11 @@ /area/station/engineering/main) "pco" = ( /obj/machinery/biogenerator, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters"; + dir = 8 + }, /turf/closed/wall, /area/station/service/hydroponics) "pcN" = ( @@ -43617,14 +43535,14 @@ /area/station/maintenance/department/bridge) "pdg" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /turf/open/floor/iron/large, /area/station/hallway/secondary/exit/departure_lounge) "pdo" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/glass, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "pdp" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/tile, @@ -43673,6 +43591,9 @@ /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/smooth_edge{ dir = 1 }, @@ -43735,7 +43656,7 @@ /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/teleporter) +/area/station/ai/satellite/teleporter) "pgm" = ( /obj/machinery/button/door/directional/east{ id = "Secure Storage"; @@ -43804,7 +43725,7 @@ }, /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "phi" = ( /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43830,7 +43751,7 @@ /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/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "phJ" = ( /obj/structure/closet/secure_closet{ name = "contraband locker"; @@ -43842,7 +43763,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "phO" = ( /obj/machinery/vending/wardrobe/chef_wardrobe, /turf/open/floor/iron/kitchen, @@ -44052,7 +43973,7 @@ /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) +/area/station/ai/upload/foyer) "pld" = ( /obj/effect/turf_decal/siding/purple{ dir = 10 @@ -44125,7 +44046,7 @@ name = "Chemistry Minisat" }, /obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/landmark/navigate_destination/chemfactory, @@ -44161,16 +44082,22 @@ "pnQ" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) "pnS" = ( /turf/closed/mineral/random/stationside/asteroid, /area/station/asteroid) +"poe" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "pof" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/firealarm/directional/north, @@ -44178,7 +44105,7 @@ /area/station/science/lobby) "pog" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "poi" = ( /turf/closed/wall, /area/station/maintenance/department/cargo) @@ -44195,6 +44122,7 @@ dir = 8 }, /obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/command/corporate_showroom) "pos" = ( @@ -44316,7 +44244,7 @@ "pqd" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pql" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden, /obj/effect/mapping_helpers/airlock/locked, @@ -44384,14 +44312,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "prz" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "prB" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -44452,8 +44380,8 @@ /area/station/science/lobby) "pso" = ( /obj/machinery/door/airlock/maintenance/glass, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) "psy" = ( @@ -44543,7 +44471,6 @@ desc = "A memorial wall for pinning mementos upon."; name = "memorial board" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) "ptX" = ( @@ -44600,7 +44527,7 @@ icon_state = "catwalk-3" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "puQ" = ( /obj/effect/baseturf_helper/reinforced_plating/ceiling, /turf/open/floor/engine/vacuum, @@ -44807,7 +44734,7 @@ /area/station/maintenance/department/medical/central) "pya" = ( /turf/open/floor/glass/reinforced/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pyi" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -44878,10 +44805,8 @@ /obj/structure/table/reinforced, /obj/item/circuitboard/machine/cyborgrecharger, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "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) "pyO" = ( @@ -44901,7 +44826,7 @@ "pzw" = ( /obj/machinery/door/airlock/maintenance/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/station/hallway/secondary/exit/departure_lounge) @@ -45006,7 +44931,7 @@ /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/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/turf_decal/siding/wood{ @@ -45104,7 +45029,6 @@ }, /area/station/hallway/secondary/exit/departure_lounge) "pCK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/smooth_edge{ dir = 4 @@ -45401,7 +45325,7 @@ "pHA" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pHP" = ( /obj/effect/decal/cleanable/glass, /obj/effect/decal/cleanable/dirt, @@ -45455,7 +45379,7 @@ "pIN" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "pIV" = ( /turf/open/floor/engine/plasma, /area/station/engineering/atmos) @@ -45472,11 +45396,14 @@ /turf/open/floor/plating, /area/station/cargo/storage) "pJk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, /turf/open/floor/iron/white/smooth_large, /area/station/medical/storage) +"pJp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos) "pJt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45509,7 +45436,7 @@ "pJN" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/white, /area/station/science/lobby) @@ -45623,9 +45550,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white/smooth_large, /area/station/medical/chemistry) "pLB" = ( @@ -45691,7 +45616,7 @@ dir = 1 }, /obj/machinery/camera/autoname/directional/south, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "pMG" = ( @@ -45825,11 +45750,17 @@ /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/department/cargo) +"pOQ" = ( +/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/xenobiology) "pPv" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -45955,7 +45886,7 @@ }, /obj/structure/plasticflaps/kitchen, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pRq" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 9 @@ -46096,10 +46027,10 @@ /area/station/engineering/atmos/project) "pTC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "pTJ" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/yellow/filled/line, @@ -46110,8 +46041,8 @@ "pTO" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible/layer4, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) "pTP" = ( @@ -46231,7 +46162,7 @@ /turf/open/misc/asteroid, /area/station/hallway/primary/starboard) "pVC" = ( -/obj/machinery/computer/station_alert/station_only, +/obj/machinery/computer/station_alert, /obj/effect/turf_decal/tile/yellow/half/contrasted, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, @@ -46300,11 +46231,6 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, -/obj/machinery/button/door/directional/south{ - id = "brigdesk"; - name = "shutter control"; - pixel_x = -24 - }, /turf/open/floor/iron, /area/station/security/brig/entrance) "pWE" = ( @@ -46409,7 +46335,6 @@ name = "Port To Turbine" }, /obj/effect/turf_decal/delivery, -/obj/machinery/camera/autoname/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) @@ -46447,7 +46372,7 @@ /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) +/area/station/ai/satellite/uppernorth) "pYE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -46522,22 +46447,10 @@ /turf/open/openspace, /area/station/science/xenobiology) "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{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/evac/directional/north{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/brig/entrance) "qaE" = ( /obj/effect/landmark/start/janitor, /obj/effect/decal/cleanable/dirt, @@ -46745,7 +46658,7 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qeo" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/mapping_helpers/broken_floor, @@ -46818,7 +46731,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/navigate_destination/techstorage, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/door/firedoor, @@ -46856,7 +46769,7 @@ pixel_x = 4; pixel_y = -2 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 5; pixel_y = 12 }, @@ -46896,10 +46809,8 @@ /area/station/security) "qgY" = ( /obj/structure/cable, -/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/iron/textured_large, /area/station/engineering/storage/tech) "qhg" = ( @@ -46953,7 +46864,7 @@ "qia" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qic" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47037,7 +46948,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -47053,7 +46964,7 @@ /obj/structure/flora/bush/flowers_yw/style_random, /obj/structure/window/spawner/directional/north, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qjw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -47076,6 +46987,12 @@ "qka" = ( /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) +"qkc" = ( +/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/medical/paramedic) "qkv" = ( /obj/machinery/door/airlock/public{ name = "Jim Norton's Quebecois Coffee" @@ -47160,7 +47077,7 @@ "qmf" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qmg" = ( /obj/structure/table/wood, /obj/item/stock_parts/power_store/cell/crap, @@ -47287,15 +47204,16 @@ }, /obj/machinery/light_switch/directional/west, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "qod" = ( /obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) "qof" = ( @@ -47333,7 +47251,7 @@ }, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "qoJ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -47360,11 +47278,11 @@ /area/station/engineering/atmos) "qpb" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/turf_decal/siding/wood{ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/wood, /area/station/maintenance/central/lesser) "qpc" = ( @@ -47372,7 +47290,7 @@ network = list("aicore") }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qpj" = ( /obj/machinery/turretid{ control_area = /area/station/tcommsat/server; @@ -47520,7 +47438,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "qru" = ( /obj/structure/cable, /obj/structure/chair/sofa/bench/right, @@ -47621,7 +47539,7 @@ /obj/item/stack/spacecash/c1000, /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qug" = ( /obj/machinery/door/airlock/mining{ name = "Mining Office" @@ -47699,8 +47617,11 @@ dir = 8 }, /obj/structure/sign/painting/library{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "qvA" = ( @@ -47737,11 +47658,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) -"qvX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) "qwu" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -47885,6 +47801,14 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/commons/lounge) +"qyU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/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) "qzr" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -47916,21 +47840,19 @@ /turf/open/floor/iron/dark, /area/station/maintenance/radshelter/civil) "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{ - dir = 8; - pixel_y = -24 +/obj/structure/sign/directions/science/directional/south{ + dir = 4; + pixel_y = 10 }, -/obj/structure/sign/directions/supply/directional/south{ - dir = 8 +/obj/structure/sign/directions/medical/directional/south{ + dir = 8; + pixel_y = -10 }, -/obj/structure/sign/directions/engineering/directional/south{ - pixel_y = -40 +/obj/structure/sign/directions/evac/directional/south{ + pixel_y = 0 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) "qAp" = ( /mob/living/basic/mining/goliath/ancient, /turf/open/misc/asteroid/airless, @@ -47975,7 +47897,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qBu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small/broken/directional/east, @@ -48046,6 +47968,9 @@ dir = 1 }, /obj/structure/disposalpipe/trunk/multiz, +/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/medical/storage) "qCE" = ( @@ -48060,7 +47985,7 @@ }, /area/station/security/execution/transfer) "qCT" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/structure/cable, /obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron/dark, @@ -48097,7 +48022,7 @@ "qDl" = ( /obj/structure/lattice/catwalk, /turf/open/openspace/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qDH" = ( /obj/structure/chair/sofa/corner/maroon, /obj/item/toy/plush/moth{ @@ -48160,6 +48085,7 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /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/security) "qEm" = ( @@ -48251,7 +48177,7 @@ uses = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "qFS" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/glass/reinforced, @@ -48267,7 +48193,7 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qGB" = ( /obj/machinery/ticket_machine/directional/north, /obj/structure/chair/sofa/bench, @@ -48316,7 +48242,7 @@ dir = 1 }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qHp" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 6 @@ -48344,7 +48270,7 @@ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qHE" = ( /obj/effect/decal/cleanable/rubble, /turf/open/misc/asteroid/airless, @@ -48511,12 +48437,6 @@ dir = 1 }, /area/station/engineering/atmos) -"qKm" = ( -/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/science/robotics/lab) "qKH" = ( /turf/open/floor/glass/reinforced, /area/station/science/research) @@ -48581,7 +48501,7 @@ /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/cargo/sorting) "qMC" = ( @@ -48709,6 +48629,7 @@ dir = 9 }, /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/funeral) "qPC" = ( @@ -48900,7 +48821,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qTG" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 @@ -48953,7 +48874,7 @@ /area/station/science/xenobiology) "qUz" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -49093,7 +49014,7 @@ /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qWG" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -49176,7 +49097,6 @@ "qXK" = ( /obj/effect/turf_decal/tile/red, /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "qXN" = ( @@ -49198,7 +49118,7 @@ /turf/open/floor/iron/stairs{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qYe" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -49235,12 +49155,12 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qYW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49356,6 +49276,8 @@ "raR" = ( /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/cargo/storage) "raT" = ( @@ -49377,11 +49299,11 @@ /area/station/command/heads_quarters/hop) "raZ" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/misc/asteroid, /area/station/science/research) "rbe" = ( @@ -49391,8 +49313,8 @@ /turf/open/floor/plating, /area/station/maintenance/department/engine) "rbg" = ( -/obj/structure/cable, /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/stairs/medium{ dir = 1 @@ -49400,8 +49322,7 @@ /area/station/command/bridge) "rbs" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; pixel_x = -28 }, @@ -49413,7 +49334,7 @@ /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) +/area/station/ai/upload/foyer) "rbt" = ( /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49472,6 +49393,7 @@ 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/research) "rcy" = ( @@ -49699,7 +49621,7 @@ "rgp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rgs" = ( /obj/structure/holosign/barrier/atmos, /turf/open/misc/asteroid, @@ -49798,6 +49720,13 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/maintenance/port/greater) +"rhs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "rhK" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 @@ -49813,7 +49742,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rhS" = ( /turf/open/floor/iron, /area/station/engineering/main) @@ -49881,7 +49810,7 @@ /area/station/command/heads_quarters/cmo) "riQ" = ( /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "riS" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ dir = 4 @@ -49941,6 +49870,7 @@ /area/station/maintenance/department/science) "rjk" = ( /obj/machinery/holopad, +/obj/structure/cable, /turf/open/floor/iron/large, /area/station/service/hydroponics/garden) "rjn" = ( @@ -49979,7 +49909,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 4 }, /turf/open/floor/iron, /area/station/security/interrogation) @@ -50027,7 +49957,6 @@ /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/dark, /area/station/science/xenobiology) @@ -50162,9 +50091,8 @@ network = list("minisat") }, /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/teleporter) +/area/station/ai/satellite/teleporter) "rlw" = ( /turf/closed/wall, /area/station/science/xenobiology/hallway) @@ -50172,10 +50100,11 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/structure/cable, /obj/structure/disposalpipe/segment{ 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/security) "rmi" = ( @@ -50206,7 +50135,7 @@ /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) +/area/station/ai/satellite/maintenance/storage) "rmy" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -50266,7 +50195,7 @@ }, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rnY" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/stripes/line{ @@ -50284,7 +50213,7 @@ "roB" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -50384,7 +50313,6 @@ dir = 1 }, /obj/machinery/camera/autoname/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "rqh" = ( @@ -50709,7 +50637,7 @@ /obj/item/radio/intercom/directional/north, /obj/item/piggy_bank/vault, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rwx" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 9 @@ -50914,11 +50842,8 @@ /turf/open/floor/iron/white/herringbone, /area/station/maintenance/department/medical/central) "rzb" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/wood, /obj/machinery/camera/autoname/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "rzg" = ( @@ -50942,12 +50867,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) -"rzF" = ( -/obj/effect/turf_decal/bot_white, -/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) "rzI" = ( /obj/machinery/camera/autoname/directional/south{ network = list("ss13","rd") @@ -50958,7 +50877,7 @@ "rzJ" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/misc/asteroid, /area/station/hallway/secondary/entry) "rzP" = ( @@ -50994,7 +50913,7 @@ /obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rAu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/directional/east, @@ -51041,6 +50960,10 @@ }, /turf/open/floor/engine/n2o, /area/station/engineering/atmos) +"rBr" = ( +/obj/machinery/air_sensor/engine_chamber, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "rBt" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -51102,13 +51025,14 @@ "rBZ" = ( /obj/structure/cable, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "AI Antechamber turret control"; - pixel_y = 27 + pixel_y = 27; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "rCd" = ( /obj/machinery/door/window/brigdoor/left/directional/east{ name = "Command Desk"; @@ -51128,7 +51052,6 @@ /area/station/engineering/storage/tech) "rCz" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "rCL" = ( @@ -51184,6 +51107,9 @@ dir = 1 }, /obj/effect/turf_decal/tile/dark_red/opposingcorners, +/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/science/robotics/lab) "rDs" = ( @@ -51245,12 +51171,16 @@ }, /turf/open/floor/circuit/telecomms/server, /area/station/science/server) +"rEw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) "rEK" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, @@ -51267,7 +51197,7 @@ "rFd" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -51303,6 +51233,8 @@ dir = 4 }, /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/dark, /area/station/command/corporate_showroom) "rFZ" = ( @@ -51357,8 +51289,8 @@ /turf/open/space/basic, /area/station/solars/port/fore) "rGQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel{ dir = 4 }, @@ -51508,7 +51440,6 @@ /turf/open/floor/iron/textured, /area/station/security/processing) "rKb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 4 }, @@ -51532,7 +51463,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/machinery/light/cold/directional/west, /obj/machinery/firealarm/directional/west, @@ -51690,7 +51620,6 @@ /area/station/security/office) "rOL" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/miningoffice) "rPe" = ( @@ -51721,7 +51650,7 @@ /obj/structure/window/spawner/directional/west, /obj/structure/window/spawner/directional/north, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rPk" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -51976,11 +51905,10 @@ /obj/structure/bed, /obj/item/bedsheet, /obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/east{ - id = "Cell 4"; - pixel_y = -26 - }, /obj/structure/cable, +/obj/machinery/flasher/directional/south{ + id = "Cell 4" + }, /turf/open/floor/iron, /area/station/security/brig) "rTo" = ( @@ -52101,14 +52029,6 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/service/bar) -"rVu" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) "rVv" = ( /obj/machinery/door/airlock/security{ id_tag = "IsolationCell"; @@ -52133,12 +52053,12 @@ /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) "rVD" = ( -/obj/effect/turf_decal/tile/neutral, /obj/structure/sign/directions/supply/directional/east{ - dir = 8 + dir = 8; + pixel_x = 0 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall/r_wall, +/area/station/command/gateway) "rVL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52274,7 +52194,6 @@ dir = 1 }, /obj/effect/landmark/start/lawyer, -/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/lawoffice) @@ -52363,7 +52282,7 @@ /turf/open/openspace, /area/station/security/prison/garden) "rXS" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, @@ -52480,7 +52399,7 @@ name = "Maintenance Bathroom" }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/broken_flooring/side/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/abandoned, @@ -52555,6 +52474,7 @@ dir = 8 }, /obj/machinery/holopad, +/obj/structure/cable, /turf/open/floor/carpet/black, /area/station/command/heads_quarters/hos) "sas" = ( @@ -52663,7 +52583,7 @@ name = "Aft Port Solar Access" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -52688,14 +52608,13 @@ /turf/open/floor/plating, /area/station/maintenance/department/cargo) "sbZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "scg" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "sco" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/turf_decal/siding/wood{ @@ -52756,7 +52675,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/iron, /area/station/security/execution/transfer) "sdB" = ( @@ -52780,7 +52698,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/turf/open/floor/iron/white/smooth_large, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "set" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ @@ -52803,7 +52721,7 @@ /obj/effect/landmark/start/hangover, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/dark, /area/station/service/bar) @@ -52865,6 +52783,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, /area/station/science/robotics/lab) @@ -52876,14 +52795,14 @@ "sfT" = ( /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sfY" = ( /obj/structure/stairs/east, /obj/structure/railing{ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sgc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4 @@ -53088,7 +53007,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sjD" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -53106,7 +53025,9 @@ /area/station/medical/virology) "sjJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/storage) "sjL" = ( @@ -53167,10 +53088,8 @@ /obj/machinery/door/airlock/security/glass, /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /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, +/obj/effect/mapping_helpers/airlock/autoname, /turf/open/floor/iron, /area/station/security/office) "skw" = ( @@ -53180,7 +53099,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "skH" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -53210,6 +53129,7 @@ "skV" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/locker) "slb" = ( @@ -53237,10 +53157,10 @@ "slx" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/central/lesser) "slG" = ( @@ -53269,7 +53189,7 @@ /area/station/medical/treatment_center) "smh" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/welded, /turf/open/floor/plating, @@ -53417,11 +53337,17 @@ /turf/open/floor/iron/grimy, /area/station/service/chapel/office) "soB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/textured_large, /area/station/engineering/storage/tech) +"soC" = ( +/obj/structure/railing{ + 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/secondary/exit/departure_lounge) "soG" = ( /obj/structure/sink/directional/south, /obj/structure/mirror/directional/north{ @@ -53473,7 +53399,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/tank_holder/extinguisher, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "spr" = ( /obj/effect/turf_decal/stripes{ dir = 5 @@ -53504,7 +53430,7 @@ "spG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "spS" = ( /obj/item/mop, /obj/effect/spawner/random/trash/bucket, @@ -53597,15 +53523,15 @@ /obj/effect/turf_decal/siding/green/corner{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "srs" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "srv" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/landmark/generic_maintenance_landmark, @@ -53718,7 +53644,7 @@ /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/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "stp" = ( /obj/structure/railing{ dir = 1 @@ -53739,7 +53665,9 @@ /obj/item/wheelchair{ pixel_y = 3 }, -/turf/open/floor/iron/white/textured, +/obj/structure/fireaxecabinet/jawsofrecovery/directional/west, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/holofloor/dark, /area/station/medical/paramedic) "stw" = ( /obj/effect/spawner/structure/window/reinforced, @@ -53764,7 +53692,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "stP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, /turf/closed/wall/r_wall, @@ -53812,17 +53740,6 @@ /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{ - dir = 4; - pixel_y = -40 - }, -/obj/structure/sign/directions/security/directional/south{ - dir = 8; - pixel_y = -24 - }, /turf/open/floor/iron, /area/station/hallway/primary/central) "suw" = ( @@ -53927,7 +53844,7 @@ /turf/open/floor/iron/stairs{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "swv" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/dirt/dust, @@ -53952,7 +53869,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "swS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -54060,11 +53977,11 @@ /area/station/science/server) "szp" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /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/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "szq" = ( @@ -54121,12 +54038,12 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /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/iron/white, /area/station/medical/treatment_center) "sAs" = ( @@ -54239,7 +54156,7 @@ /turf/open/floor/iron/stairs{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sBG" = ( /obj/machinery/light/warm/directional/north, /obj/effect/turf_decal/siding/wood{ @@ -54289,8 +54206,9 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "sCO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /turf/open/floor/iron/dark, /area/station/security/lockers) "sCT" = ( @@ -54458,7 +54376,7 @@ /area/station/maintenance/port/lesser) "sGj" = ( /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/maintenance{ @@ -54473,7 +54391,7 @@ "sGk" = ( /obj/effect/turf_decal/siding/white/corner, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/herringbone, /area/station/hallway/primary/central) @@ -54608,18 +54526,13 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/white, /area/station/medical/chemistry) -"sIm" = ( -/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/engineering/supermatter/room) "sIv" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /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, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/station/medical/paramedic) "sIx" = ( /obj/structure/cable, @@ -54667,7 +54580,7 @@ "sIW" = ( /obj/structure/transport/linear/public, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sIX" = ( /obj/effect/turf_decal/arrows{ dir = 4; @@ -54742,11 +54655,7 @@ /area/station/hallway/secondary/exit/departure_lounge) "sJT" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) -"sJX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/cargo/storage) +/area/station/ai/satellite/uppersouth) "sKs" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -54842,7 +54751,7 @@ /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/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sLW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -54907,8 +54816,6 @@ "sNi" = ( /obj/machinery/light/directional/north, /obj/effect/mapping_helpers/broken_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/chair/sofa/bench/left{ dir = 4 }, @@ -54974,7 +54881,7 @@ /area/station/science/genetics) "sPi" = ( /obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/textured, /area/station/hallway/primary/central) "sPv" = ( @@ -54988,6 +54895,7 @@ dir = 4 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/structure/cable, /turf/open/floor/iron/white/smooth_large, /area/station/medical/surgery/theatre) "sPD" = ( @@ -55036,7 +54944,7 @@ "sQd" = ( /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sQe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55127,19 +55035,9 @@ }, /turf/open/floor/iron, /area/station/engineering/main) -"sRM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/stairs/left{ - dir = 1 - }, -/area/station/command/bridge) "sRP" = ( /obj/machinery/photocopier/prebuilt, /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) "sRU" = ( @@ -55156,12 +55054,12 @@ /area/station/service/lawoffice) "sSm" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /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/service/maintenance, /turf/open/floor/iron, /area/station/commons/locker) "sSL" = ( @@ -55504,7 +55402,7 @@ /area/station/service/bar) "sYu" = ( /obj/structure/closet/crate/wooden/toy, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -55548,7 +55446,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "sYU" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "Air to Port" @@ -55558,7 +55456,7 @@ "sYZ" = ( /obj/machinery/duct, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /obj/machinery/light/directional/west, /obj/machinery/firealarm/directional/west, @@ -55573,7 +55471,7 @@ dir = 8 }, /turf/open/floor/iron/white, -/area/station/medical/paramedic) +/area/station/medical/exam_room) "sZs" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/siding/wood, @@ -55602,6 +55500,7 @@ /turf/open/floor/iron/white, /area/station/medical/chemistry) "sZK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/bridge) "sZS" = ( @@ -55639,7 +55538,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tac" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -55893,18 +55792,18 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "tgW" = ( /obj/machinery/door/airlock/medical{ name = "Primary Surgical Theatre" }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) "tgZ" = ( @@ -55932,6 +55831,22 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) +"thj" = ( +/obj/structure/sign/directions/security/directional/east{ + dir = 1; + pixel_y = 8; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/east{ + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/engineering/directional/east{ + pixel_y = -8; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/maintenance/port/lesser) "tho" = ( /obj/machinery/power/port_gen, /obj/effect/decal/cleanable/dirt/dust, @@ -56064,8 +55979,10 @@ /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, /turf/open/floor/iron/white/smooth_edge, /area/station/medical/pharmacy) +"tjn" = ( +/turf/open/floor/iron/dark, +/area/station/medical/morgue) "tjq" = ( -/obj/structure/cable, /obj/machinery/shower/directional/south, /obj/effect/turf_decal{ icon = 'icons/obj/mining_zones/survival_pod.dmi'; @@ -56110,6 +56027,7 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "tkh" = ( @@ -56153,6 +56071,10 @@ }, /obj/structure/desk_bell, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/iron, /area/station/service/hydroponics) "tla" = ( @@ -56161,7 +56083,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "tlb" = ( /obj/effect/turf_decal/tile/dark_red/opposingcorners, /turf/open/floor/iron/dark, @@ -56193,7 +56115,7 @@ "tlW" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tmg" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -56231,6 +56153,11 @@ dir = 1 }, /area/station/medical/pharmacy) +"tmQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/medical/chemistry/minisat) "tmR" = ( /obj/structure/bed/maint, /obj/item/bedsheet/yellow{ @@ -56315,7 +56242,7 @@ }, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "tnD" = ( /obj/item/bodypart/leg/left, /turf/open/floor/plating/airless, @@ -56374,10 +56301,10 @@ "toC" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "toD" = ( @@ -56393,7 +56320,7 @@ /obj/machinery/newscaster/directional/north, /obj/machinery/light/warm/directional/east, /turf/open/floor/iron/chapel{ - dir = 4 + dir = 1 }, /area/station/service/chapel) "toJ" = ( @@ -56825,7 +56752,7 @@ "tww" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "twx" = ( /turf/open/openspace, /area/station/maintenance/disposal) @@ -56852,7 +56779,7 @@ /obj/effect/spawner/round_default_module, /obj/machinery/flasher/directional/north, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "txx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -56863,7 +56790,7 @@ /area/station/maintenance/department/cargo) "txy" = ( /obj/machinery/door/airlock/hatch, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -56960,8 +56887,8 @@ "tzT" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "tzW" = ( @@ -57001,7 +56928,7 @@ /area/station/asteroid) "tAr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/large, /area/station/hallway/secondary/exit/departure_lounge) @@ -57074,7 +57001,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/item/radio/intercom/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "tBh" = ( /obj/structure/railing/corner{ dir = 4 @@ -57133,11 +57060,12 @@ /area/space/nearstation) "tBL" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/sand/plating, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) "tCb" = ( @@ -57342,8 +57270,6 @@ 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, /area/station/hallway/primary/central) "tFa" = ( @@ -57357,7 +57283,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -57415,7 +57341,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tGE" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -57440,14 +57366,16 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "tGR" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ dir = 8 }, @@ -57535,18 +57463,14 @@ "tIH" = ( /turf/open/floor/grass, /area/station/service/hydroponics/garden) -"tIN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/corporate_showroom) "tIO" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, /area/station/medical/chemistry/minisat) "tIS" = ( @@ -57559,7 +57483,7 @@ /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/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tIT" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -57620,7 +57544,7 @@ /obj/machinery/door/airlock/engineering, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -57636,7 +57560,7 @@ "tKm" = ( /obj/machinery/firealarm/directional/west, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tKX" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical{ @@ -57675,8 +57599,8 @@ name = "Departure Lounge" }, /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/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "tLH" = ( @@ -57753,7 +57677,7 @@ /obj/effect/mapping_helpers/requests_console/supplies, /obj/effect/mapping_helpers/requests_console/assistance, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tMF" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -57766,13 +57690,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/button/door/directional/east{ - id = "cap_ext"; - name = "bolt control"; - normaldoorcontrol = 1; - pixel_y = 24; - specialfunctions = 4 - }, /turf/open/floor/engine, /area/station/command/heads_quarters/captain/private) "tMO" = ( @@ -57805,7 +57722,7 @@ dir = 1 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tNh" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -57870,14 +57787,14 @@ id_tag = "r1"; name = "Room A" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, /turf/open/floor/iron/white, /area/station/medical/patients_rooms/room_a) "tNR" = ( @@ -58041,7 +57958,7 @@ "tRb" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58076,17 +57993,11 @@ "tRp" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/disposal/bin, -/obj/structure/cable, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) -"tRP" = ( -/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/xenobiology) "tRX" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 @@ -58118,7 +58029,7 @@ c_tag = "Security Armory" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tSn" = ( /obj/structure/chair/office/light{ dir = 4 @@ -58128,12 +58039,6 @@ }, /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) -"tSH" = ( -/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, -/area/station/hallway/secondary/exit/departure_lounge) "tSX" = ( /obj/item/stack/tile/iron/white/smooth_large, /obj/effect/decal/cleanable/dirt/dust, @@ -58166,7 +58071,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tTE" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/showroomfloor, @@ -58279,20 +58184,20 @@ /area/station/security/processing) "tVI" = ( /obj/effect/turf_decal/trimline/blue/filled/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/sorting/mail/flip{ dir = 1 }, /obj/effect/mapping_helpers/mail_sorting/medbay/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/storage) "tVJ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tVP" = ( /obj/item/instrument/musicalmoth, /obj/effect/spawner/random/entertainment/musical_instrument, @@ -58339,6 +58244,12 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"tWl" = ( +/obj/item/stack/tile/iron/white, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry/minisat) "tWs" = ( /obj/effect/spawner/random/structure/grille, /obj/structure/cable, @@ -58378,13 +58289,13 @@ /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "tXg" = ( -/obj/structure/sign/warning, -/turf/closed/wall/rock/porous, +/obj/structure/sign/warning/directional/north, +/turf/closed/mineral/random/stationside/asteroid/porus{ + mineralChance = 20 + }, /area/station/asteroid) "tXi" = ( /obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) @@ -58414,7 +58325,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tXt" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/siding/white{ @@ -58466,7 +58377,7 @@ /obj/item/emergency_bed{ pixel_y = 11 }, -/turf/open/floor/iron/white/textured, +/turf/open/floor/holofloor/dark, /area/station/medical/paramedic) "tYI" = ( /obj/effect/landmark/start/head_of_security, @@ -58478,10 +58389,13 @@ /area/station/command/heads_quarters/hos) "tYQ" = ( /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/command/bridge) "tZt" = ( /obj/machinery/airalarm/directional/north, +/obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) "tZv" = ( @@ -58611,7 +58525,7 @@ }, /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uaY" = ( /obj/item/kirbyplants/random/dead, /obj/structure/window/reinforced/spawner/directional/north, @@ -58661,7 +58575,7 @@ /obj/structure/closet/lasertag/red, /obj/structure/window/spawner/directional/east, /obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/fitness/recreation) "ubV" = ( @@ -58722,7 +58636,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "udG" = ( /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, @@ -58979,7 +58893,7 @@ pixel_y = 3 }, /turf/open/floor/iron/chapel{ - dir = 4 + dir = 1 }, /area/station/service/chapel) "uin" = ( @@ -59042,7 +58956,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uiU" = ( /obj/effect/spawner/random/structure/table, /obj/effect/decal/cleanable/dirt/dust, @@ -59104,7 +59018,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -59153,7 +59067,7 @@ /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/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "ukY" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -59260,6 +59174,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"umv" = ( +/obj/machinery/button/door/directional/south{ + id = "brigdesk"; + name = "shutter control"; + pixel_y = 0; + pixel_x = 10 + }, +/turf/closed/wall/r_wall, +/area/station/security/processing) "umA" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, @@ -59400,7 +59323,7 @@ /obj/structure/cable/layer3, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "upy" = ( /obj/effect/turf_decal/tile/yellow/diagonal_centre, /obj/machinery/holopad, @@ -59429,7 +59352,7 @@ }, /obj/machinery/camera/autoname/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "upS" = ( /obj/machinery/holopad, /turf/open/floor/iron, @@ -59468,9 +59391,9 @@ /area/station/maintenance/port/greater) "uqy" = ( /obj/machinery/door/airlock/maintenance, -/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/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/commons/vacant_room/commissary) "uqI" = ( @@ -59636,7 +59559,7 @@ pixel_y = -3 }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "usQ" = ( /obj/effect/turf_decal/tile/yellow, /obj/item/kirbyplants/random, @@ -59664,7 +59587,7 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/catwalk_floor/iron_dark, @@ -59676,15 +59599,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/prison/safe) -"utH" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "utM" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "utP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59783,9 +59700,7 @@ /turf/open/floor/iron/white, /area/station/science/ordnance/testlab) "uvN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) "uww" = ( @@ -59796,6 +59711,11 @@ /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/effect/spawner/random/entertainment/lighter, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "uwx" = ( @@ -59904,6 +59824,11 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"uyo" = ( +/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/xenobiology) "uyu" = ( /obj/structure/railing/corner{ dir = 8 @@ -59915,6 +59840,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) +"uyx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/bridge) "uyA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/broken/directional/east, @@ -59971,7 +59903,9 @@ dir = 1 }, /obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/white/herringbone, /area/station/science/breakroom) "uzB" = ( @@ -60133,6 +60067,21 @@ }, /turf/open/floor/iron, /area/station/service/theater) +"uCl" = ( +/obj/structure/sign/directions/evac/directional/north{ + dir = 2; + pixel_y = 10 + }, +/obj/structure/sign/directions/command/directional/north{ + dir = 8; + pixel_y = -10 + }, +/obj/structure/sign/directions/science/directional/north{ + dir = 4; + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/science/lobby) "uCo" = ( /obj/machinery/power/shieldwallgen, /obj/effect/decal/cleanable/dirt/dust, @@ -60197,7 +60146,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uCS" = ( /obj/machinery/telecomms/receiver/preset_right, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -60476,7 +60425,9 @@ /area/station/maintenance/aft/upper) "uIU" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) "uIW" = ( @@ -60559,15 +60510,13 @@ icon_state = "catwalk-14" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uLh" = ( /obj/structure/cable, /obj/machinery/camera/autoname/directional/north, /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, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "uLi" = ( @@ -60706,6 +60655,7 @@ "uNc" = ( /obj/structure/rack, /obj/effect/spawner/random/engineering/vending_restock, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) "uNd" = ( @@ -60758,7 +60708,7 @@ plasmatanks = 0 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uOb" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -60777,9 +60727,6 @@ name = "Primary Surgical Theatre" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/effect/mapping_helpers/airlock/access/all/medical/surgery, /obj/structure/cable, @@ -60787,6 +60734,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) "uOo" = ( @@ -60833,10 +60783,6 @@ 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) "uPi" = ( @@ -60940,13 +60886,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"uSd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) "uSe" = ( /obj/structure/closet/crate, /obj/effect/spawner/random/maintenance, @@ -61044,7 +60983,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uUk" = ( /obj/structure/rack, /obj/item/storage/briefcase{ @@ -61117,7 +61056,8 @@ /obj/effect/spawner/random/trash/hobo_squat, /obj/machinery/button/curtain{ id = "neverstopgambling"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/maintenance/central/lesser) @@ -61439,7 +61379,6 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "vbY" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/wood, /obj/structure/sign/painting/large/library{ pixel_y = -35 @@ -61484,7 +61423,7 @@ /obj/machinery/light/cold/directional/north, /obj/structure/closet/wardrobe/white/medical, /turf/open/floor/iron/white, -/area/station/medical/paramedic) +/area/station/medical/exam_room) "vdD" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -61570,7 +61509,7 @@ dir = 9 }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vfy" = ( /obj/machinery/door/airlock/medical/glass{ name = "Pharmacy" @@ -61603,7 +61542,6 @@ }, /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) @@ -61651,7 +61589,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vgz" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/firealarm/directional/south, @@ -61661,8 +61599,6 @@ /area/station/hallway/primary/central) "vgI" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted, -/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/execution/transfer) "vgM" = ( @@ -61744,6 +61680,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/bridge) +"viM" = ( +/obj/structure/sign/directions/engineering/directional/south{ + pixel_y = 10 + }, +/obj/structure/sign/directions/supply/directional/south{ + dir = 8; + pixel_y = -10 + }, +/obj/structure/sign/directions/security/directional/south{ + dir = 8; + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/hallway/primary/central) "viT" = ( /obj/machinery/camera/autoname/directional/west{ network = list("ss13","rd","xeno") @@ -61759,7 +61709,6 @@ /turf/open/floor/grass, /area/station/science/research) "vja" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/white/corner{ dir = 1 }, @@ -62095,7 +62044,7 @@ /turf/open/floor/carpet/executive, /area/station/command/meeting_room) "voQ" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/white, /area/station/science/lab) @@ -62162,8 +62111,6 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "vqq" = ( @@ -62273,6 +62220,21 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/iron/grimy, /area/station/maintenance/central/greater) +"vsJ" = ( +/obj/structure/sign/directions/security/directional/south{ + dir = 8; + pixel_y = -10 + }, +/obj/structure/sign/directions/engineering/directional/south{ + dir = 4; + pixel_y = 10 + }, +/obj/structure/sign/directions/supply/directional/south{ + dir = 8; + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) "vsO" = ( /obj/structure/cable, /obj/structure/disposalpipe/sorting/mail{ @@ -62296,7 +62258,7 @@ /obj/effect/spawner/random/aimodule/harmless, /obj/machinery/camera/autoname/directional/west, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vtv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -62386,10 +62348,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"vwb" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) "vwd" = ( /obj/machinery/newscaster/directional/south, /turf/open/floor/engine, @@ -62661,10 +62619,10 @@ /area/station/commons/fitness/recreation) "vAs" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/misc/asteroid, /area/station/science/research) "vAu" = ( @@ -62675,7 +62633,7 @@ /area/station/security/breakroom) "vAB" = ( /turf/open/openspace/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vAD" = ( /obj/machinery/door/airlock/multi_tile/public/glass{ name = "Dormitories" @@ -62687,7 +62645,7 @@ /area/station/commons/locker) "vAE" = ( /obj/structure/closet/wardrobe/green, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, @@ -62702,13 +62660,13 @@ "vBp" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vBs" = ( /obj/machinery/holopad, /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vBD" = ( /obj/structure/chair/office/light{ dir = 1 @@ -62734,13 +62692,13 @@ /obj/effect/decal/cleanable/blood/oil, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "vCw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 }, /obj/structure/closet/boxinggloves, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/fitness/recreation) "vCy" = ( @@ -62758,6 +62716,11 @@ /area/station/command/corporate_showroom) "vCL" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters"; + dir = 8 + }, /turf/open/floor/plating, /area/station/service/hydroponics) "vCQ" = ( @@ -62792,7 +62755,7 @@ /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/foyer) +/area/station/ai/satellite/foyer) "vEh" = ( /obj/effect/mapping_helpers/broken_floor, /obj/item/stack/sheet/iron, @@ -62935,7 +62898,7 @@ /obj/machinery/light/small/dim/directional/east, /obj/item/coin/titanium, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vFD" = ( /obj/machinery/door/window/brigdoor/security/cell/left/directional/west{ id = "Cell 4"; @@ -63103,7 +63066,7 @@ /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/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vHI" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -63196,7 +63159,7 @@ /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/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "vKd" = ( /obj/effect/decal/cleanable/blood/oil, /obj/machinery/light/small/directional/west, @@ -63209,7 +63172,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "vKx" = ( /obj/structure/table/wood, /obj/item/storage/box/coffeepack, @@ -63390,7 +63353,7 @@ /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) +/area/station/ai/satellite/uppernorth) "vNB" = ( /obj/machinery/vending/tool, /obj/effect/decal/cleanable/dirt, @@ -63472,7 +63435,7 @@ }, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vOT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -63526,10 +63489,10 @@ dir = 9 }, /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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "vQa" = ( @@ -63559,7 +63522,7 @@ /area/station/command/bridge) "vQn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 8 }, /turf/open/floor/engine, /area/station/medical/chemistry) @@ -63576,8 +63539,6 @@ /turf/closed/wall, /area/station/cargo/boutique) "vQT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/sign/poster/official/moth_hardhat/directional/north, /obj/structure/table, /obj/item/storage/toolbox/emergency, @@ -63586,6 +63547,9 @@ "vRi" = ( /mob/living/basic/bot/cleanbot/medbay, /obj/effect/turf_decal/trimline/blue/filled/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/medical/storage) "vRm" = ( @@ -63594,7 +63558,7 @@ /obj/structure/extinguisher_cabinet/directional/east, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vRt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63829,10 +63793,9 @@ /turf/open/floor/wood/tile, /area/station/commons/dorms) "vVj" = ( -/obj/effect/decal/cleanable/dirt/dust, /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/iron/white, /area/station/medical/chemistry/minisat) "vVk" = ( @@ -63933,7 +63896,7 @@ "vWK" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vWN" = ( /obj/structure/sign/warning/electric_shock/directional/north, /obj/structure/rack, @@ -63957,6 +63920,12 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/station/service/cafeteria) +"vXt" = ( +/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/science/lobby) "vXS" = ( /obj/structure/broken_flooring/side, /obj/effect/decal/cleanable/dirt/dust, @@ -64019,6 +63988,12 @@ }, /turf/open/floor/plating, /area/station/service/theater) +"vZJ" = ( +/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, +/area/station/engineering/gravity_generator) "vZL" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -64036,8 +64011,6 @@ /turf/open/floor/iron, /area/station/security/brig/entrance) "vZX" = ( -/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 = 8 }, @@ -64112,7 +64085,7 @@ /area/station/security/interrogation) "waS" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -64206,7 +64179,7 @@ /obj/item/multitool, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wcp" = ( /turf/open/floor/carpet, /area/station/command/corporate_showroom) @@ -64221,7 +64194,7 @@ "wdc" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /turf/open/floor/iron, /area/station/engineering/gravity_generator) @@ -64344,17 +64317,21 @@ "wfl" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wfs" = ( -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "maintbridge"; - name = "Shutter Control"; - pixel_y = 24 +/obj/structure/sign/directions/security/directional/north{ + dir = 8; + pixel_y = 10 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/obj/structure/sign/directions/engineering/directional/north{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/sign/directions/command/directional/north{ + pixel_y = -10 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/transit_tube) "wfy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64650,10 +64627,6 @@ /obj/effect/turf_decal/tile/dark_green/opposingcorners, /turf/open/floor/iron, /area/station/hallway/secondary/service) -"wli" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/cargo/miningoffice) "wlo" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ dir = 5 @@ -64808,7 +64781,7 @@ "wow" = ( /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "woz" = ( /obj/structure/sign/poster/official/random/directional/east, /obj/structure/cable, @@ -64827,7 +64800,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "woL" = ( /turf/closed/wall/rock, /area/station/maintenance/port/greater) @@ -64855,7 +64828,7 @@ dir = 4 }, /turf/open/floor/glass/reinforced/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wps" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64869,7 +64842,7 @@ /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "wpG" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64950,12 +64923,12 @@ /turf/open/floor/plating, /area/station/engineering/atmos/project) "wqU" = ( -/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 = 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/engineering/lobby) "wqW" = ( @@ -64965,7 +64938,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wrx" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 @@ -65030,6 +65003,7 @@ "wsi" = ( /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/chapel{ dir = 8 }, @@ -65137,7 +65111,6 @@ "wtW" = ( /obj/structure/window/spawner/directional/north, /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/commons/fitness/recreation) "wtZ" = ( @@ -65179,7 +65152,7 @@ "wun" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, @@ -65192,9 +65165,9 @@ /turf/open/floor/iron/textured_large, /area/station/medical/treatment_center) "wus" = ( -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/carpet/black, /area/station/command/heads_quarters/hos) "wuS" = ( @@ -65218,8 +65191,6 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/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 }, @@ -65243,7 +65214,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "wvs" = ( /obj/structure/chair/sofa/bench, /obj/effect/landmark/start/prisoner, @@ -65328,7 +65299,7 @@ "wwR" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -65484,7 +65455,7 @@ /obj/structure/cable/layer3, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wzX" = ( /obj/structure/flora/tree/palm/style_random, /turf/open/floor/grass, @@ -65531,7 +65502,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "wAy" = ( /obj/structure/cable, /turf/open/floor/iron/white/smooth_edge, @@ -65632,12 +65603,10 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/item/food/grown/banana, /obj/structure/sign/warning/biohazard/directional/south, -/obj/structure/sign/warning{ - pixel_x = 32 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, +/obj/structure/sign/warning/directional/east, /turf/open/misc/grass, /area/station/cargo/boutique) "wCj" = ( @@ -65729,7 +65698,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "wDb" = ( /obj/structure/chair/office{ dir = 8 @@ -65751,8 +65720,6 @@ "wDo" = ( /obj/structure/cable, /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, /area/station/security/interrogation) "wDr" = ( @@ -65787,6 +65754,9 @@ /obj/effect/turf_decal/siding/red{ 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/circuit, /area/station/science/robotics/lab) "wDH" = ( @@ -65860,7 +65830,7 @@ /area/station/science/lobby) "wED" = ( /obj/structure/closet/masks, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/white/textured_large, /area/station/commons/fitness/recreation) "wEF" = ( @@ -66023,7 +65993,7 @@ /area/station/hallway/secondary/command) "wHJ" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wIr" = ( /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/structure/cable, @@ -66033,12 +66003,8 @@ /area/station/service/bar/backroom) "wIB" = ( /obj/structure/railing, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/department/engine) @@ -66106,7 +66072,7 @@ /area/station/commons/lounge) "wKE" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, @@ -66122,7 +66088,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wKO" = ( /turf/open/floor/glass, /area/station/maintenance/department/medical) @@ -66167,7 +66133,6 @@ /area/station/maintenance/department/engine) "wLq" = ( /obj/effect/landmark/blobstart, -/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/medical/morgue) @@ -66176,6 +66141,8 @@ /obj/structure/disposalpipe/segment{ 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/security/office) "wLu" = ( @@ -66275,14 +66242,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured, /area/station/science/lobby) -"wME" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/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) "wMY" = ( /obj/structure/cable, /obj/structure/dresser, @@ -66371,7 +66330,7 @@ /area/station/science/ordnance) "wOo" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wOp" = ( /obj/structure/table, /obj/machinery/reagentgrinder{ @@ -66425,7 +66384,7 @@ "wPy" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "wPE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -66452,11 +66411,6 @@ /obj/machinery/light/dim/directional/west, /turf/open/floor/iron/white, /area/station/science/research) -"wQa" = ( -/obj/effect/turf_decal/bot_white, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) "wQe" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, @@ -66715,7 +66669,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/door/firedoor, @@ -66778,7 +66732,7 @@ }, /obj/machinery/light_switch/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wWE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66790,6 +66744,8 @@ /obj/machinery/holopad, /obj/effect/turf_decal/bot, /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/cargo/miningoffice) "wWJ" = ( @@ -66843,7 +66799,6 @@ /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "wYc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel{ dir = 8 }, @@ -66852,7 +66807,7 @@ /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "wYo" = ( /obj/structure/filingcabinet/chestdrawer, /obj/item/toy/figure/cmo{ @@ -67018,13 +66973,17 @@ req_access = list("medical") }, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/button/elevator/directional/south{ + id = "medbay1" + }, /turf/open/floor/iron/white/textured, /area/station/medical/treatment_center) "xaH" = ( /obj/structure/filingcabinet, /obj/machinery/button/ticket_machine{ pixel_x = 24; - pixel_y = 6 + pixel_y = 6; + dir = 4 }, /obj/machinery/button/door/directional/east{ id = "hopdesk"; @@ -67118,7 +67077,6 @@ "xbB" = ( /obj/machinery/disposal/bin, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -67149,7 +67107,6 @@ /area/station/engineering/supermatter/room) "xcb" = ( /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/science/robotics/lab) "xch" = ( @@ -67188,6 +67145,7 @@ /obj/effect/spawner/random/structure/chair_comfy{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/command/bridge) "xcC" = ( @@ -67261,7 +67219,7 @@ "xeo" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -67317,7 +67275,7 @@ "xfn" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xfz" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/yellow, @@ -67469,6 +67427,10 @@ }, /turf/open/floor/iron, /area/station/security/brig/entrance) +"xiw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/medical/chemistry) "xiy" = ( /obj/effect/turf_decal/siding/white{ dir = 10 @@ -67524,7 +67486,7 @@ "xje" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -67562,9 +67524,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/corner, /obj/item/radio/intercom/directional/west, /obj/effect/landmark/start/chemist, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/textured, /area/station/medical/pharmacy) "xjq" = ( @@ -67613,7 +67573,7 @@ /obj/structure/cable/layer3, /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xkI" = ( /obj/effect/decal/cleanable/molten_object, /turf/open/misc/asteroid, @@ -67638,7 +67598,7 @@ /obj/item/ai_module/core/full/dungeon_master, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xlm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/frame/machine, @@ -67893,6 +67853,7 @@ /area/station/maintenance/department/science) "xqB" = ( /obj/machinery/light/dim/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/textured, /area/station/engineering/storage/tech) "xqE" = ( @@ -68042,7 +68003,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/camera/autoname/directional/west{ network = list("ss13","medbay") }, @@ -68079,7 +68039,6 @@ "xtA" = ( /obj/effect/turf_decal/tile/neutral/diagonal_centre, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) "xtB" = ( @@ -68256,8 +68215,6 @@ /turf/open/floor/iron/grimy, /area/station/maintenance/central/lesser) "xwh" = ( -/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/gravity_generator) "xwm" = ( @@ -68277,7 +68234,7 @@ /obj/machinery/power/smes/full, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xwA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/maintenance, @@ -68343,7 +68300,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xxJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ dir = 1 @@ -68368,6 +68325,7 @@ dir = 5 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/service/chapel/funeral) "xxV" = ( @@ -68442,7 +68400,7 @@ /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/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "xzG" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron/white, @@ -68481,7 +68439,7 @@ /obj/machinery/computer/upload/ai, /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xAd" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, @@ -68538,7 +68496,7 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xAV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -68595,6 +68553,11 @@ "xBS" = ( /turf/closed/wall, /area/station/medical/surgery/theatre) +"xBU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) "xBV" = ( /obj/machinery/atmospherics/components/binary/volume_pump, /obj/effect/turf_decal/tile/yellow{ @@ -68759,6 +68722,7 @@ /obj/machinery/door/airlock/multi_tile/public/glass{ name = "Art Storage" }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/storage/art) "xEr" = ( @@ -68944,7 +68908,7 @@ /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/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "xIm" = ( /obj/structure/broken_flooring/pile, /obj/effect/decal/cleanable/dirt/dust, @@ -68959,7 +68923,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xIN" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -69001,7 +68965,7 @@ req_access = list("captain") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xJK" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/door/poddoor/shutters/window/preopen{ @@ -69047,7 +69011,6 @@ department = "Mining"; name = "Mining Requests Console" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/miningoffice) "xKo" = ( @@ -69159,7 +69122,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/command/corporate_showroom) "xMY" = ( @@ -69244,7 +69206,7 @@ /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xOg" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/spawner/random/engineering/tracking_beacon, @@ -69272,6 +69234,8 @@ /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/tile, /area/station/service/bar) "xOB" = ( @@ -69289,6 +69253,7 @@ /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) "xOF" = ( @@ -69345,10 +69310,17 @@ "xPo" = ( /obj/effect/turf_decal/box/corners, /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"xPp" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lobby) "xPH" = ( /obj/structure/cable, /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/security/prison) "xPL" = ( @@ -69506,11 +69478,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood/tile, /area/station/service/bar) -"xUf" = ( -/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/storage) "xUx" = ( /obj/structure/flora/rock/style_random, /turf/open/misc/asteroid, @@ -69531,6 +69498,13 @@ }, /turf/open/space/basic, /area/space/nearstation) +"xUJ" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Monkey Pen" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/turf/open/floor/grass, +/area/station/medical/chemistry) "xUR" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -69539,14 +69513,12 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xUT" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /obj/item/radio/intercom/directional/west, -/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/xenobiology) "xUW" = ( @@ -69582,6 +69554,8 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, +/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/science/robotics/lab) "xVO" = ( @@ -69657,7 +69631,7 @@ pixel_x = 27 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xXh" = ( /obj/machinery/power/shieldwallgen, /obj/effect/decal/cleanable/dirt/dust, @@ -69699,6 +69673,7 @@ /obj/effect/turf_decal/stripes/red/line{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/medical/morgue) "xXF" = ( @@ -69715,7 +69690,7 @@ "xYa" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ @@ -69739,7 +69714,7 @@ /obj/effect/landmark/navigate_destination/minisat_access_ai, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69841,7 +69816,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "yae" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 4 @@ -69870,7 +69845,7 @@ /area/station/science/ordnance/testlab) "yaw" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "AI Antechamber turret control"; pixel_y = -27 }, @@ -69878,7 +69853,7 @@ /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) +/area/station/ai/satellite/uppernorth) "yaH" = ( /obj/item/radio/intercom/directional/east, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -69909,7 +69884,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ybo" = ( /turf/open/floor/iron/white/textured_corner{ dir = 8 @@ -69959,7 +69934,7 @@ /obj/machinery/door/firedoor, /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/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -70013,6 +69988,7 @@ "ycI" = ( /mob/living/carbon/human/species/monkey, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/grass, /area/station/medical/chemistry) "ycN" = ( @@ -70023,6 +69999,11 @@ /obj/effect/mapping_helpers/airlock/access/any/command/hop, /turf/open/floor/plating, /area/station/command/heads_quarters/hop) +"ycT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/medical/chemistry) "ycY" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 1 @@ -70125,10 +70106,10 @@ /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/foyer) +/area/station/ai/satellite/foyer) "yeS" = ( /obj/structure/closet/crate/grave, -/obj/effect/landmark/start/hangover/closet, +/obj/effect/landmark/start/hangover, /turf/open/misc/asteroid, /area/station/asteroid) "yfl" = ( @@ -70153,6 +70134,10 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"yfL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage/tech) "ygb" = ( /obj/structure/table, /obj/machinery/recharger, @@ -70331,7 +70316,7 @@ /obj/structure/window/spawner/directional/south, /obj/structure/window/spawner/directional/east, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "yin" = ( /turf/open/water/no_planet_atmos/deep, /area/station/service/hydroponics/garden) @@ -70479,6 +70464,16 @@ /obj/machinery/holopad, /turf/open/floor/circuit, /area/station/science/robotics/lab) +"yll" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/opposingcorners, +/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) "ylm" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -70544,7 +70539,7 @@ }, /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "yma" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -70560,7 +70555,7 @@ dir = 4 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ymi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -83311,8 +83306,8 @@ wsI uyL umh sjJ -rzF -bGe +umh +uyL lmL hQy icM @@ -83570,8 +83565,8 @@ icM xfN rxX raR -wQa -vwb +icM +ijg xrU fXZ sFd @@ -83589,7 +83584,7 @@ qPN xwO mHG ecy -sme +cEU rCz awj dkj @@ -83824,8 +83819,8 @@ poi ahV uyL hQu -uyL -rzF +bGe +umh nCt umh uyL @@ -84081,11 +84076,11 @@ rPA mBt xnQ hQu -sJX -rzF -noi -jea -ghU +oXc +umh +xnQ +hQu +uSA icM hoX wOU @@ -84339,7 +84334,7 @@ uyL vSt umh uyL -fFz +lmL aex umh uyL @@ -84596,10 +84591,10 @@ lAL heZ uyL uyL -ezP -ezP -ezP -ezP +uyL +uyL +uyL +uyL ijg hoX rXd @@ -84844,7 +84839,7 @@ bdu bWW poi tAL -giK +wBc lvg lBC uDB @@ -85901,7 +85896,7 @@ bfc gok rnk lpF -yfl +kdh aNR oDC meP @@ -85922,9 +85917,9 @@ cBb hAA naZ sep -ebo -ebo -jvd +qkc +qkc +iuV sIv rnk bAr @@ -86416,7 +86411,7 @@ xQN rnk rnk vWI -xUf +aNR taT wJy wJy @@ -86694,7 +86689,7 @@ cqJ pCK lyF rgE -cBb +dgp jka sZl rnk @@ -86868,7 +86863,7 @@ dMF rrF hME lvZ -wUe +heu xPH iEO sWy @@ -86951,7 +86946,7 @@ jSY dPt xdm pzo -cBb +dgp vdb cJh rnk @@ -87125,7 +87120,7 @@ hME hME hME kSm -wUe +heu eFK iEO oCR @@ -87208,7 +87203,7 @@ oBg eAJ vkn pGM -cBb +dgp dAr asP rnk @@ -87975,7 +87970,7 @@ xHY rAa dgp qGB -fqF +eYv ksU tsq dgp @@ -88161,7 +88156,7 @@ jza eWC jza jkv -kkT +iHG dba qLk jza @@ -88232,7 +88227,7 @@ xHY wZI hQg sed -fqF +eYv nkf xzG hQg @@ -88465,7 +88460,7 @@ ksl nJs fXn mDr -jGK +fXn kJN unL rnk @@ -88676,7 +88671,7 @@ fod jza bSI sCO -bqV +keQ bZf jza fLv @@ -88979,7 +88974,7 @@ rWs cQm fXn fXn -aKd +cQm mju wjj rnk @@ -89199,14 +89194,14 @@ dPv mGG mGG xQW -kcA -fyA +yll +qie rRK gHr gHr gHr gHr -gHr +umv gHr ydk ghW @@ -89457,14 +89452,14 @@ sfm ecC mxv hSW -fyA +qie rRK xLR lfp tRX rjL pWC -ubd +qaz ydk xNq mtB @@ -89507,7 +89502,7 @@ qfB ujT ujT qfB -qfB +oez nIG tmn bxC @@ -89764,7 +89759,7 @@ bGD nxG nxG nxG -hpB +ciY nxG nxG tuA @@ -90252,7 +90247,7 @@ kmu dxT tCE xMk -rVD +aQS deY aQS vTx @@ -90281,7 +90276,7 @@ prW prW prW prW -dvz +prW prW tOm hDK @@ -90509,7 +90504,7 @@ kmu dxT tCE bAw -bAw +rVD bAw bAw uLj @@ -90538,7 +90533,7 @@ uZx lsC bvm lsC -uZx +hpB dbN tOm tCE @@ -90740,7 +90735,7 @@ sgW cpO mAd skr -hBD +wrx gpV kaJ obc @@ -91532,8 +91527,8 @@ hbM rjX rjX iXj -rjX -oez +aKJ +kmu tHF hqz bAw @@ -92042,7 +92037,7 @@ wGg pLW bzH bZa -bZa +giy giy ego bZa @@ -92092,8 +92087,8 @@ wdV wdV ltU jtc +jaa wdV -wfs rnk cLf cLf @@ -92300,7 +92295,7 @@ sid mOb wEc xOg -rVu +bLa qER aUo iXj @@ -93107,7 +93102,7 @@ kAg ujv kmu hGE -nxG +kmu afe kmu tOm @@ -93364,7 +93359,7 @@ kAg vNH kmu opH -knX +fBz fBz fBz pUW @@ -93620,7 +93615,7 @@ sWn kAg veW kmu -tOm +dcI tCE tCE tCE @@ -95166,7 +95161,7 @@ iEj wkf hzF xEL -qtP +deW pdg iGC iGC @@ -95353,7 +95348,7 @@ cLf cLf tyd cLf -hrM +bVA aGz ien csW @@ -95424,7 +95419,7 @@ hDK hzF vCy czW -tSH +hUS hUS hUS hUS @@ -95925,7 +95920,7 @@ pDP umo aMR ygj -qrl +ygj ncX eQi tLI @@ -96181,7 +96176,7 @@ aGA rss aGA rss -dbw +aGA aGA aGA eQi @@ -96192,7 +96187,7 @@ kmu rFV tOm sut -hzF +vsJ hzF hjo gEr @@ -96438,7 +96433,7 @@ ruP lOE mRA dlZ -ygj +qrl pQN pQN eQi @@ -96695,7 +96690,7 @@ ruP jEr qrl ffk -ygj +qrl wKo fIX eQi @@ -96898,8 +96893,8 @@ bqX ogH aeJ xcs -tYQ -tYQ +iMS +iMS tYQ fID nlQ @@ -96952,7 +96947,7 @@ ruP qrl vrR rej -ygj +qrl tQt efc xrV @@ -97155,8 +97150,8 @@ eKR pVC yhk lPz -cBh -cBh +jTd +jTd rKb dla kCD @@ -97209,7 +97204,7 @@ ruP pQN qrl aqR -ygj +qrl ffk ffk eQi @@ -97220,7 +97215,7 @@ kmu aly dxT nBA -hzF +qAo hzF eGn sIX @@ -97466,7 +97461,7 @@ ruP mSm qrl gTh -ygj +qrl qrl qrl eQi @@ -97674,13 +97669,13 @@ typ ckb jlw iRB -gkQ +uyx bGW tbH alc jZj -nAx -kaz +dhl +jZj dbJ mMH juE @@ -97723,9 +97718,9 @@ ruP ffk ohh ffk -ygj +qrl fXU -eDV +qrl eQi vxl rjn @@ -97931,7 +97926,7 @@ typ lCK aHs iRB -kZg +uyx gbM mzI cgo @@ -97994,7 +97989,7 @@ ekL hzF qDg dhO -tSH +cSb cSb cSb cSb @@ -98188,7 +98183,7 @@ rCd kNX eKR tKX -kZg +uyx nPm yjH eKR @@ -98440,10 +98435,10 @@ eKR cNQ kjs ftR -fun -fun +mrq +mrq hSi -sRM +bQc kZA gkQ dBn @@ -98957,7 +98952,7 @@ bCr kYU jTd rkz -lrc +dla eHa ktI ita @@ -98965,7 +98960,7 @@ hOb cwq cwq giv -iPS +cwq wcp juw nKt @@ -98975,8 +98970,8 @@ xDh juw pSO xYn -pSO -jaa +wfs +kmu qbA tCE mJR @@ -99479,7 +99474,7 @@ vCI mXY mXY nPQ -tIN +cwq euR juw wUM @@ -99537,7 +99532,7 @@ loU jKy iBe pOv -kUW +gaK aRt sxk azg @@ -99791,9 +99786,9 @@ nWx cRM hGo dPw -jGZ +mQy kpj -kJl +mQy wYc hGh vSn @@ -100023,11 +100018,11 @@ xQH mcA kqD jpn -vOT -oqt -oqt -aFw -oLH +uzH +sgq +sgq +pUj +wWZ wWZ wWZ utY @@ -100047,10 +100042,10 @@ tCE bTm jKy oeL -dPw +cXn rGQ muf -pOv +lqM lCO umO uhD @@ -100281,9 +100276,9 @@ gLp dNh gGs skV -uzH +vOT nAG -pUj +ekF oLH gUs wWZ @@ -100306,9 +100301,9 @@ hAV hGo tki iEK -wsi +peA bfD -wsi +peA bJQ peA srj @@ -100561,8 +100556,8 @@ tCE bTm gho tGZ -ccZ -rGQ +dPw +jKy naO pOv gaK @@ -101815,7 +101810,7 @@ usF ufr kZw uIU -ufr +kZw kZw rhP fQm @@ -102083,7 +102078,7 @@ qdt akl clG tXi -utH +cmB sYZ cmB pWR @@ -102615,8 +102610,8 @@ prW anT prW sOA -bVA -aKJ +prW +prW jqj dxT aQS @@ -102872,8 +102867,8 @@ crU crU crU crU -crU -crU +dvz +thj iEn eZn emy @@ -103344,11 +103339,11 @@ iMk bDy irx gyl -gvF -qaz +uCl +kmu tHF -qAo -uZx +tCE +viM fDa eMG xBz @@ -103598,10 +103593,10 @@ goB txy tGE cUk -cUk +vXt cUk hFY -wEA +fHI nxG sGs nTT @@ -103854,9 +103849,9 @@ eRu eRu vfJ vSv -grl -dko qXy +dko +hBQ mJG oTX tEW @@ -104117,7 +104112,7 @@ iKc rSL jbL lFE -cBr +aQS deY xMk aQS @@ -104374,7 +104369,7 @@ iKc hle gvF rIb -iAw +wEA swi swi swi @@ -104886,9 +104881,9 @@ rvg vuq hPH iKc -gtB -uSd -gQN +iKc +bsw +wxa vks yhV oYu @@ -104900,8 +104895,8 @@ xOU kBt wdz nOZ -xcb -eqQ +tld +tld dyb qdo exQ @@ -105140,9 +105135,9 @@ kju wMB jrd rvg -slL -slL -slL +xPp +xPp +xPp oXz bsw wxa @@ -105413,7 +105408,7 @@ uig xOU kcY prg -qKm +tld rDl ylj esP @@ -105670,7 +105665,7 @@ mwW xOU xOU xOU -qKm +tld wDD vRZ oQe @@ -105927,7 +105922,7 @@ exk faX cya vpq -qKm +tld xVK ryy ryy @@ -105955,7 +105950,7 @@ xAy pEf sbd soB -sbd +yfL bcm lHm dct @@ -106469,7 +106464,7 @@ xAy rdI byj jvN -sbd +kgO xqB lHm nWu @@ -107204,7 +107199,7 @@ pdz tZF wPX mlV -cpw +dfM cpw jIm xOU @@ -107719,7 +107714,7 @@ pBn cPo qii owp -iQZ +lxX ocV thf qlG @@ -107977,7 +107972,7 @@ tNR oUW mnd peo -bWi +dfM thf dmM pld @@ -109045,8 +109040,8 @@ eyg dUi myg dyv -jxd -jxd +clx +clx svf svf pTJ @@ -109062,7 +109057,7 @@ vPT fIW mqH wCv -oMi +vZJ wgk jKu saJ @@ -109300,9 +109295,9 @@ vME gTV eyg wpn -cFc -svf -svf +lUY +jxd +jxd clx mJb fQO @@ -109811,7 +109806,7 @@ dpU bnK wqU ocB -ocB +mIC xot xot xtY @@ -111119,8 +111114,8 @@ btl qmn ryC mnU -lpe -lpe +qOY +qOY jKp wMt ryC @@ -111378,7 +111373,7 @@ kjI vdZ rgI kyh -qOY +lpe vAj ryC cLf @@ -111593,7 +111588,7 @@ nkA com cnS mSN -tnp +pJp fCG krJ oWr @@ -111850,7 +111845,7 @@ qKj jSu cnS rwF -fCG +rEw mBb atv fTX @@ -111873,7 +111868,7 @@ fTX eSm rhS rhS -mVi +bhG rhS rhS rhS @@ -114193,7 +114188,7 @@ neE uXw bhv qaZ -vUh +rBr hoM rGq vUh @@ -117021,7 +117016,7 @@ kEu fsQ aGC vpn -qvX +iXR uvN wQz kiW @@ -117278,9 +117273,9 @@ kEu kEu aQo aQo -sIm -sIm -sIm +aQo +aQo +aQo kEu uFC vaU @@ -121355,12 +121350,12 @@ cCI hbV hbV qRJ -rka +rhs nVj rka xUT -tRP -tRP +hbV +hbV tVV jQS ucG @@ -121612,10 +121607,10 @@ bKQ hBF rYZ xay -xay -hBF -hBF -hBF +kQa +pOQ +pOQ +kQa ulA kQa baP @@ -121872,7 +121867,7 @@ cnt hbV hbV hbV -hbV +uyo kQa pJt uhz @@ -142438,15 +142433,15 @@ hhX urC jrm pJF -bcg -bcg -bcg -bcg -bcg -nSF +qyq +qyq +qyq +qyq +qyq +wUH vVj -mua -wJk +iAQ +oDw wnw fYe fYe @@ -142696,18 +142691,18 @@ urC jrm qyq bDN -sRq -wqq -qyq -wUH -sRq +tWl +iyg +bcg +tmQ +duf lSI gSJ tIO wnw fYe fYe -hhX +cLf hhX hhX hhX @@ -147811,7 +147806,7 @@ pEH pEH vxX iaN -wli +iaN aJP iaN sdc @@ -149642,7 +149637,7 @@ mqc mfw bGk bGk -ncR +xUJ ncR bGk ahq @@ -149907,7 +149902,7 @@ vUo laf kuy bVY -lgA +tqV eXW fnh mhc @@ -150666,7 +150661,7 @@ taj kYT ogL cPZ -rVL +auB rVL bGk qAU @@ -150923,8 +150918,8 @@ wWJ kYT auB waT -rVL -auB +xiw +ycT aPC jql sTj @@ -151181,7 +151176,7 @@ kYT xtb fwJ ipZ -auB +mjj aPC jql sTj @@ -151437,7 +151432,7 @@ wWJ kYT auB auB -rVL +auB vQn aPC eeQ @@ -151460,7 +151455,7 @@ cNG vtv lVD iom -dpj +tjn aRZ iMq vxX @@ -151716,7 +151711,7 @@ apk cNG hce wLq -hce +dpj cUm tve iMq @@ -152205,7 +152200,7 @@ nGv bgY bgY bgY -bgY +dog qoN fnh wnL @@ -152462,7 +152457,7 @@ fnh qoN rNJ koX -bgY +dog qoN fnh igq @@ -153705,7 +153700,7 @@ mIW mIW mIW hED -bme +hED hnJ hED hED @@ -155565,8 +155560,8 @@ vxX vxX vxX vxX -vxX -tXg +dGk +unk hhX hhX hhX @@ -156086,11 +156081,11 @@ hhX hhX hhX hhX +unk tXg vxX vxX vxX -vxX hhX hhX hhX @@ -156853,9 +156848,9 @@ vxX vxX unk unk -tXg +unk vxX -tXg +unk unk unk vxX @@ -157110,13 +157105,13 @@ azk azk azk unk -gMk -vxX -vxX +dra vxX +nuH vxX vxX vxX +bme vxX hhX hhX @@ -157373,7 +157368,7 @@ uet vxX gMk mGM -tXg +unk unk hhX hhX @@ -160430,7 +160425,7 @@ lIr gcN xTZ igS -aEY +pdp jGB nRA tqJ @@ -160686,7 +160681,7 @@ pco lIr mGo vqt -vqt +mic nSn jGB vyL @@ -160703,8 +160698,8 @@ lgp hzF lSM gcV -iGC -tkD +swU +aCk uxt uxt uxt @@ -160943,7 +160938,7 @@ oxG hCs jnm jKD -vqt +mic rzb jGB jGB @@ -160961,7 +160956,7 @@ hzF sNi bOi iGC -tkD +qyU uxt uxt uxt @@ -161218,7 +161213,7 @@ hzF vQT clM caP -tkD +aCk uxt uxt uxt @@ -161455,7 +161450,7 @@ mnP mnP dAS kdW -gOG +gcN ffA wvc gEm @@ -161730,9 +161725,9 @@ mGW iZz hzF kCu -jbq -jbq -jbq +poe +poe +soC jbq vnj jCr @@ -169907,7 +169902,7 @@ oAs gOc gOc gOc -nzn +oAs jqf oWg gMk @@ -172484,7 +172479,7 @@ dpp gKt dVp dRh -fdN +xBU xje ipx vxX @@ -172733,7 +172728,7 @@ vRP bWi bWi iHH -nmj +dfM wPX dfM xtZ @@ -173760,7 +173755,7 @@ raz obA gbR omL -wME +omL acY aqa vRA @@ -176631,8 +176626,8 @@ iZa nUb jaH anN -gjJ -gjJ +ktL +asd uIj qVV gNZ @@ -176888,7 +176883,7 @@ elk lde xtL anN -ktL +kWC gjJ qpT aYG @@ -179457,7 +179452,7 @@ urI rAP rAP rAP -odk +urI kdE xjL grz diff --git a/_maps/minigame/CTF/cruiser.dmm b/_maps/minigame/CTF/cruiser.dmm index 1ed48e3e8d33..897ea48c860e 100644 --- a/_maps/minigame/CTF/cruiser.dmm +++ b/_maps/minigame/CTF/cruiser.dmm @@ -479,7 +479,7 @@ "CA" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional, /turf/template_noop, -/area/template_noop) +/area/centcom/ctf) "CU" = ( /obj/structure/window/reinforced/spawner/directional/east{ resistance_flags = 64 diff --git a/_maps/minigame/deathmatch/OSHA_Violator.dmm b/_maps/minigame/deathmatch/OSHA_Violator.dmm index 114bb695c478..92702187f29e 100644 --- a/_maps/minigame/deathmatch/OSHA_Violator.dmm +++ b/_maps/minigame/deathmatch/OSHA_Violator.dmm @@ -2,11 +2,11 @@ "ac" = ( /obj/structure/closet/crate/medical, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/effect/mob_spawn/corpse/human/cargo_tech, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "ai" = ( /turf/closed/indestructible/reinforced, /area/deathmatch) @@ -1096,15 +1096,15 @@ "Zr" = ( /obj/item/storage/backpack/duffelbag/syndie/med/medicalbundle, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "Zz" = ( /obj/machinery/power/singularity_beacon/syndicate, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "ZD" = ( /obj/item/storage/toolbox/syndicate, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" je diff --git a/_maps/minigame/deathmatch/arena_station.dmm b/_maps/minigame/deathmatch/arena_station.dmm index c3fb3ed39034..0cca2ac3d9d7 100644 --- a/_maps/minigame/deathmatch/arena_station.dmm +++ b/_maps/minigame/deathmatch/arena_station.dmm @@ -22,7 +22,7 @@ "bE" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bR" = ( /obj/machinery/computer{ dir = 4 @@ -930,7 +930,7 @@ /area/deathmatch) "LY" = ( /obj/structure/closet/secure_closet, -/obj/item/gun/energy/xray, +/obj/item/gun/energy/laser/xray, /turf/open/indestructible/vault, /area/deathmatch) "Mc" = ( @@ -1078,7 +1078,7 @@ /obj/structure/closet, /obj/item/toy/plush/lizard_plushie/green, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "QS" = ( /obj/effect/turf_decal/bot_red, /turf/open/indestructible/plating, diff --git a/_maps/minigame/deathmatch/maint_mania.dmm b/_maps/minigame/deathmatch/maint_mania.dmm index 2433686e673e..984da1f698cf 100644 --- a/_maps/minigame/deathmatch/maint_mania.dmm +++ b/_maps/minigame/deathmatch/maint_mania.dmm @@ -34,7 +34,7 @@ "ga" = ( /obj/structure/lattice, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "gJ" = ( /obj/item/ammo_casing/shotgun/stunslug, /turf/open/indestructible, @@ -170,7 +170,7 @@ "ur" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "vB" = ( /obj/machinery/light/small/directional/east, /turf/open/indestructible, @@ -202,7 +202,7 @@ desc = "An old, blue toolbox, it looks soulful." }, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "Bs" = ( /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, @@ -220,7 +220,7 @@ /obj/structure/lattice/catwalk, /obj/effect/mob_spawn/corpse/human/engineer/mod, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Dt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/loading_area{ @@ -298,7 +298,7 @@ /obj/structure/lattice/catwalk, /obj/structure/statue/sandstone/assistant, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ij" = ( /turf/open/space/basic, /area/template_noop) @@ -335,7 +335,7 @@ "MC" = ( /obj/effect/mob_spawn/corpse/human/assistant, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Na" = ( /obj/structure/rack, /obj/item/reagent_containers/cup/soda_cans/starkist, @@ -396,7 +396,7 @@ "Qr" = ( /obj/structure/closet/wardrobe, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "QN" = ( /obj/item/razor, /obj/structure/table/reinforced, diff --git a/_maps/minigame/deathmatch/meta_brig.dmm b/_maps/minigame/deathmatch/meta_brig.dmm index 1cdd33982bbc..d076e0fec276 100644 --- a/_maps/minigame/deathmatch/meta_brig.dmm +++ b/_maps/minigame/deathmatch/meta_brig.dmm @@ -20,11 +20,7 @@ /obj/structure/marker_beacon/burgundy, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) -"an" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space) +/area/space/nearstation) "aw" = ( /obj/structure/extinguisher_cabinet/directional/east, /turf/closed/indestructible/reinforced, @@ -1444,7 +1440,7 @@ "vC" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "vD" = ( /obj/structure/table, /obj/structure/cable, @@ -2626,10 +2622,8 @@ /turf/open/indestructible, /area/deathmatch) "Mb" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/indestructible, /area/deathmatch) "Mk" = ( @@ -3307,12 +3301,10 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 }, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/indestructible, /area/deathmatch) "WD" = ( @@ -4492,7 +4484,7 @@ IJ IJ "} (32,1,1) = {" -an +vC Fi Fi Fi diff --git a/_maps/minigame/deathmatch/species_warfare.dmm b/_maps/minigame/deathmatch/species_warfare.dmm index d452a28d41d8..af11eaf15c35 100644 --- a/_maps/minigame/deathmatch/species_warfare.dmm +++ b/_maps/minigame/deathmatch/species_warfare.dmm @@ -34,7 +34,7 @@ /area/deathmatch) "cd" = ( /obj/effect/turf_decal/tile/dark_blue/full, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /obj/machinery/computer{ dir = 4 }, @@ -574,7 +574,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /turf/open/indestructible, /area/deathmatch) "wb" = ( @@ -700,7 +700,7 @@ /area/deathmatch) "zt" = ( /obj/effect/turf_decal/tile/dark_blue/full, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /obj/machinery/computer{ dir = 8 }, @@ -867,7 +867,7 @@ /obj/item/ammo_casing/rebar, /obj/item/ammo_casing/rebar, /obj/item/ammo_casing/rebar, -/obj/machinery/light/built/directional/north, +/obj/machinery/light/empty/directional/north, /turf/open/indestructible, /area/deathmatch) "EC" = ( @@ -963,7 +963,7 @@ /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, +/obj/machinery/light/empty/directional/north, /turf/open/indestructible/dark/smooth_large, /area/deathmatch) "Iu" = ( @@ -1164,7 +1164,7 @@ /obj/structure/rack, /obj/item/cane, /obj/structure/fireaxecabinet/directional/south, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /turf/open/indestructible/dark/smooth_large, /area/deathmatch) "ON" = ( diff --git a/_maps/multiz_debug.json b/_maps/multiz_debug.json index af3ffa352129..ba9b83d5dc74 100644 --- a/_maps/multiz_debug.json +++ b/_maps/multiz_debug.json @@ -5,8 +5,8 @@ "map_file": "multiz.dmm", "ignored_unit_tests": [ "/datum/unit_test/cargo_dep_order_locations", - "/datum/unit_test/job_roundstart_spawnpoints", - "/datum/unit_test/required_map_items", + "/datum/unit_test/maptest_job_roundstart_spawnpoints", + "/datum/unit_test/maptest_required_map_items", "/datum/unit_test/spy_bounty" ], "traits": [ diff --git a/_maps/runtimestation.json b/_maps/runtimestation.json index 12f854ce425e..715d924d5af8 100644 --- a/_maps/runtimestation.json +++ b/_maps/runtimestation.json @@ -6,8 +6,8 @@ "space_ruin_levels": 1, "ignored_unit_tests": [ "/datum/unit_test/cargo_dep_order_locations", - "/datum/unit_test/job_roundstart_spawnpoints", - "/datum/unit_test/required_map_items", + "/datum/unit_test/maptest_job_roundstart_spawnpoints", + "/datum/unit_test/maptest_required_map_items", "/datum/unit_test/spy_bounty" ], "shuttles": { diff --git a/_maps/runtimestation_minimal.json b/_maps/runtimestation_minimal.json new file mode 100644 index 000000000000..d638519ef912 --- /dev/null +++ b/_maps/runtimestation_minimal.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "map_name": "Minimal Runtime Station", + "map_path": "map_files/debug", + "map_file": "runtimestation_minimal.dmm", + "space_ruin_levels": 1, + "ignored_unit_tests": [ + "/datum/unit_test/cargo_dep_order_locations", + "/datum/unit_test/maptest_job_roundstart_spawnpoints", + "/datum/unit_test/maptest_required_map_items", + "/datum/unit_test/spy_bounty", + "/datum/unit_test/space_dragon_expiration", + "/datum/unit_test/nuke_cinematic", + "/datum/unit_test/atmospherics_sanity", + "/datum/unit_test/maptest_mapload_space_verification", + "/datum/unit_test/modify_fantasy_variable", + "/datum/unit_test/create_and_destroy" + ] +} diff --git a/_maps/runtimetown.json b/_maps/runtimetown.json index 08c6e81a66aa..f93ffe2cf337 100644 --- a/_maps/runtimetown.json +++ b/_maps/runtimetown.json @@ -8,10 +8,10 @@ "planetary": 1, "ignored_unit_tests": [ "/datum/unit_test/cargo_dep_order_locations", - "/datum/unit_test/job_roundstart_spawnpoints", + "/datum/unit_test/maptest_job_roundstart_spawnpoints", "/datum/unit_test/spy_bounty", "/datum/unit_test/space_dragon_expiration", - "/datum/unit_test/mapload_space_verification" + "/datum/unit_test/maptest_mapload_space_verification" ], "traits": [ { @@ -24,5 +24,6 @@ "Baseturf": "/turf/open/openspace", "Linkage": "Cross" } - ] + ], + "max_npcs": 25 } diff --git a/_maps/safehouses/README.md b/_maps/safehouses/README.md index 8d64502343ba..e68470d6d0b8 100644 --- a/_maps/safehouses/README.md +++ b/_maps/safehouses/README.md @@ -3,7 +3,7 @@ ## Creating a new safe house 1. Create a new map inside the `_maps\safe_houses` folder using the TGM format. -2. Create a new dm file inside `modules\bitrunning\virtual_domain\safe_houses` folder.. +2. Update `safehouse.toml` with your new file 3. Place exit and goal landmarks (obj/effect/landmark/bitrunning/..). Generally, 3 exits and 2 goals are ok. 4. Ideally, leave 3 spaces for gear. This has usually been xy [1x1] [1x2] [1x3] 5. Place the modular map connector at the bottom left tile. diff --git a/_maps/safehouses/maintsafe.dmm b/_maps/safehouses/maintsafe.dmm new file mode 100644 index 000000000000..c3579c43c9cd --- /dev/null +++ b/_maps/safehouses/maintsafe.dmm @@ -0,0 +1,131 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"g" = ( +/obj/structure/broken_flooring/corner/directional/north, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"i" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"j" = ( +/turf/closed/wall, +/area/virtual_domain/safehouse) +"l" = ( +/obj/effect/landmark/bitrunning/hololadder_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/virtual_domain/safehouse) +"q" = ( +/obj/effect/landmark/bitrunning/hololadder_spawn, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/virtual_domain/safehouse) +"t" = ( +/obj/effect/landmark/bitrunning/cache_goal_turf, +/turf/open/indestructible/bitrunning_transport, +/area/virtual_domain/safehouse) +"v" = ( +/obj/structure/broken_flooring/side/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"y" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"C" = ( +/obj/structure/broken_flooring/singular/directional/north, +/obj/structure/railing/corner/end/flip, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"E" = ( +/obj/machinery/light/red/dim/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"I" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"M" = ( +/obj/effect/landmark/bitrunning/hololadder_spawn, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/virtual_domain/safehouse) +"N" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"O" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"Y" = ( +/obj/machinery/light/red/dim/directional/east, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) + +(1,1,1) = {" +j +j +j +j +j +j +"} +(2,1,1) = {" +j +i +E +g +M +j +"} +(3,1,1) = {" +j +y +N +v +l +j +"} +(4,1,1) = {" +I +N +a +C +q +j +"} +(5,1,1) = {" +j +a +y +N +t +j +"} +(6,1,1) = {" +j +O +Y +N +t +j +"} +(7,1,1) = {" +j +j +j +j +j +j +"} diff --git a/_maps/shuttles/arrival_catwalk.dmm b/_maps/shuttles/arrival_catwalk.dmm index e50d54a186a9..0da64ca06a53 100644 --- a/_maps/shuttles/arrival_catwalk.dmm +++ b/_maps/shuttles/arrival_catwalk.dmm @@ -116,9 +116,7 @@ "qf" = ( /obj/item/kirbyplants/organic/plant21, /obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/shuttle/arrival) "qt" = ( @@ -466,9 +464,7 @@ "Tw" = ( /obj/item/kirbyplants/organic/plant21, /obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/shuttle/arrival) "TZ" = ( diff --git a/_maps/shuttles/arrival_delta.dmm b/_maps/shuttles/arrival_delta.dmm index 8fab83477251..475208cf59e5 100644 --- a/_maps/shuttles/arrival_delta.dmm +++ b/_maps/shuttles/arrival_delta.dmm @@ -201,10 +201,6 @@ /obj/structure/window/reinforced/shuttle, /turf/open/floor/grass, /area/shuttle/arrival) -"az" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) "aC" = ( /obj/machinery/computer{ dir = 1; @@ -337,6 +333,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/shuttle/arrival) "DV" = ( @@ -357,6 +354,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/shuttle/arrival) "Nn" = ( @@ -395,7 +393,7 @@ ah ah ah ah -az +ag an ag ag @@ -547,7 +545,7 @@ ah ah ah ah -az +ag an ag ag diff --git a/_maps/shuttles/arrival_kilo.dmm b/_maps/shuttles/arrival_kilo.dmm index 2776589602e4..45cf4d898ef6 100644 --- a/_maps/shuttles/arrival_kilo.dmm +++ b/_maps/shuttles/arrival_kilo.dmm @@ -20,8 +20,12 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "ae" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "af" = ( /obj/effect/spawner/structure/window/reinforced/shuttle, @@ -73,6 +77,7 @@ /obj/effect/turf_decal/bot, /obj/structure/chair/comfy/shuttle, /obj/machinery/light/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "ak" = ( @@ -118,6 +123,7 @@ }, /obj/structure/chair/comfy/shuttle, /obj/machinery/light/small/directional/west, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "au" = ( @@ -203,6 +209,7 @@ dir = 1 }, /obj/machinery/light/small/directional/west, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "aN" = ( @@ -359,13 +366,13 @@ aY lA "} (5,1,1) = {" -ae +ac aj rV aT aV -aN ae +ac "} (6,1,1) = {" af @@ -423,11 +430,11 @@ ab "} (12,1,1) = {" ac -ae +ac at aW aM -ae +ac ac "} (13,1,1) = {" diff --git a/_maps/shuttles/cargo_mini.dmm b/_maps/shuttles/cargo_mini.dmm new file mode 100644 index 000000000000..64789355b26f --- /dev/null +++ b/_maps/shuttles/cargo_mini.dmm @@ -0,0 +1,122 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"d" = ( +/obj/machinery/power/shuttle_engine/propulsion{ + icon_state = "propulsion"; + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"r" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"u" = ( +/obj/machinery/door/airlock/titanium{ + name = "Supply Shuttle Airlock" + }, +/obj/docking_port/mobile/supply, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/plating, +/area/shuttle/supply) +"v" = ( +/obj/machinery/power/shuttle_engine/heater{ + icon_state = "heater"; + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"x" = ( +/turf/template_noop, +/area/template_noop) +"J" = ( +/obj/machinery/door/airlock/titanium{ + name = "Supply Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/plating, +/area/shuttle/supply) +"X" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) + +(1,1,1) = {" +x +r +r +r +r +r +r +r +r +"} +(2,1,1) = {" +d +r +a +a +a +a +a +a +r +"} +(3,1,1) = {" +d +v +a +a +a +a +a +a +r +"} +(4,1,1) = {" +d +v +a +a +a +a +a +a +r +"} +(5,1,1) = {" +d +v +a +a +a +a +a +a +r +"} +(6,1,1) = {" +d +r +a +a +X +a +a +a +r +"} +(7,1,1) = {" +x +r +r +J +r +u +r +r +r +"} diff --git a/_maps/shuttles/emergency_birdshot.dmm b/_maps/shuttles/emergency_birdshot.dmm index e6839a408333..fb685d3c804f 100644 --- a/_maps/shuttles/emergency_birdshot.dmm +++ b/_maps/shuttles/emergency_birdshot.dmm @@ -214,7 +214,7 @@ anchored = 1; dir = 8 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/plating/airless, /area/shuttle/escape) "kZ" = ( diff --git a/_maps/shuttles/emergency_cere.dmm b/_maps/shuttles/emergency_cere.dmm index 72de7bc50d4a..9369eb115a18 100644 --- a/_maps/shuttles/emergency_cere.dmm +++ b/_maps/shuttles/emergency_cere.dmm @@ -352,10 +352,10 @@ /turf/open/floor/iron, /area/shuttle/escape) "bL" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = 32 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/shuttle/escape) "bM" = ( @@ -1541,7 +1541,7 @@ bn bn ac ad -aZ +bL bc bc ba @@ -1585,7 +1585,7 @@ aZ aZ aZ ME -bL +bc bc bT bW diff --git a/_maps/shuttles/emergency_cruise.dmm b/_maps/shuttles/emergency_cruise.dmm index a5dd675aa0ec..6b9fb38b134f 100644 --- a/_maps/shuttles/emergency_cruise.dmm +++ b/_maps/shuttles/emergency_cruise.dmm @@ -2327,10 +2327,7 @@ /turf/open/floor/iron/dark/herringbone, /area/shuttle/escape/brig) "Fq" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/carpet/red, /area/shuttle/escape) "FC" = ( @@ -4348,7 +4345,7 @@ bP bj QI hp -Fq +La nk gv Ks @@ -4395,7 +4392,7 @@ jt jt jt uV -La +Fq nk fI uu diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm index da90701ec5aa..94807e385b65 100644 --- a/_maps/shuttles/emergency_delta.dmm +++ b/_maps/shuttles/emergency_delta.dmm @@ -352,13 +352,10 @@ }, /turf/open/floor/iron/white, /area/shuttle/escape) -"aT" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) "aU" = ( /obj/effect/turf_decal/bot, /obj/machinery/light/directional/west, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/shuttle/escape) "aV" = ( @@ -408,6 +405,7 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/shuttle/escape) "ba" = ( @@ -690,6 +688,7 @@ /obj/structure/table/reinforced, /obj/item/storage/box/zipties, /obj/item/radio/intercom/directional/south, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape/brig) "bX" = ( @@ -718,6 +717,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/shuttle/escape) "ci" = ( @@ -727,6 +727,7 @@ /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/shuttle/escape) "cj" = ( @@ -1004,6 +1005,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/shuttle/escape) "Jl" = ( @@ -1107,7 +1109,7 @@ hB af af aO -aT +af aW af hB @@ -1246,7 +1248,7 @@ bN bU af af -aT +af hB af af @@ -1305,7 +1307,7 @@ af af bt hB -aT +af af WG jU @@ -1457,7 +1459,7 @@ aE dY ah af -aT +af af af bY @@ -1525,7 +1527,7 @@ ae af af af -aT +af hB af af @@ -1634,7 +1636,7 @@ hB hB af af -aT +af af hB hB diff --git a/_maps/shuttles/emergency_fame.dmm b/_maps/shuttles/emergency_fame.dmm index 088944a2a288..32354e739896 100644 --- a/_maps/shuttles/emergency_fame.dmm +++ b/_maps/shuttles/emergency_fame.dmm @@ -115,6 +115,7 @@ "fm" = ( /obj/effect/spawner/random/vending/snackvend, /obj/effect/turf_decal/box, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/shuttle/escape) "fS" = ( @@ -428,8 +429,9 @@ /turf/open/floor/mineral/silver, /area/shuttle/escape) "qM" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/nodiagonal, +/obj/structure/chair/comfy/shuttle, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/mineral/titanium, /area/shuttle/escape) "qW" = ( /obj/effect/turf_decal/siding{ @@ -532,6 +534,16 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/shuttle/escape) +"wX" = ( +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/wood, +/area/shuttle/escape) +"wY" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/bot, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "xc" = ( /obj/structure/table, /obj/machinery/microwave, @@ -697,6 +709,7 @@ /area/shuttle/escape) "EF" = ( /obj/item/kirbyplants/organic/plant16, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/wood, /area/shuttle/escape) "Fi" = ( @@ -976,6 +989,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating, /area/shuttle/escape) +"UW" = ( +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) "Vl" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/decal/cleanable/dirt, @@ -1271,7 +1288,7 @@ iN Cz "} (9,1,1) = {" -qM +Oa Oa aX Uu @@ -1293,7 +1310,7 @@ Oa mc Oa Oa -qM +Oa "} (10,1,1) = {" mz @@ -1317,7 +1334,7 @@ cu cu Yp Ty -PP +qM mz "} (11,1,1) = {" @@ -1349,8 +1366,8 @@ mz mz NN eW -RZ -qM +wX +Oa mz mz Ws @@ -1364,14 +1381,14 @@ Oa Ws mz mz -qM -Yp +Oa +UW Yp PP mz "} (13,1,1) = {" -qM +Oa Oa FJ RZ @@ -1392,8 +1409,8 @@ Bj mz Yp Yp -oc -qM +wY +Oa "} (14,1,1) = {" Oa diff --git a/_maps/shuttles/emergency_fish.dmm b/_maps/shuttles/emergency_fish.dmm index 2ed11465b3a3..19395c99589e 100644 --- a/_maps/shuttles/emergency_fish.dmm +++ b/_maps/shuttles/emergency_fish.dmm @@ -45,6 +45,7 @@ dir = 4 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/titanium/tiled/white, /area/shuttle/escape) "cZ" = ( @@ -146,6 +147,14 @@ /obj/effect/turf_decal/tile/dark_red/opposingcorners, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) +"hP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/wood/tile, +/area/shuttle/escape) "iA" = ( /obj/structure/chair/pew/right{ dir = 1 @@ -228,10 +237,6 @@ }, /turf/open/floor/wood/tile, /area/shuttle/escape) -"oA" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) "oB" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 1 @@ -780,6 +785,7 @@ dir = 8 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/titanium/tiled/white, /area/shuttle/escape) "Tn" = ( @@ -869,8 +875,11 @@ /turf/open/floor/mineral/titanium/tiled/blue, /area/shuttle/escape) "WX" = ( -/obj/structure/sign/warning, -/turf/closed/wall/mineral/titanium/nodiagonal, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/wood/tile, /area/shuttle/escape) "Xx" = ( /obj/structure/chair/comfy/shuttle{ @@ -1047,7 +1056,7 @@ Kg "} (5,1,1) = {" Me -oA +jL SS qA aa @@ -1145,9 +1154,9 @@ Ih Ih Ou pQ -BA -bB +hP bB +WX bB BA bB @@ -1163,7 +1172,7 @@ Kg "} (9,1,1) = {" Me -oA +jL cf qA aa @@ -1174,9 +1183,9 @@ qO AV EC jL -WX +jL QN -WX +jL jL aa XZ diff --git a/_maps/shuttles/emergency_kilo.dmm b/_maps/shuttles/emergency_kilo.dmm index 43f92baecdf2..1454cbee007c 100644 --- a/_maps/shuttles/emergency_kilo.dmm +++ b/_maps/shuttles/emergency_kilo.dmm @@ -41,8 +41,8 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "ai" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/structure/sign/nanotrasen/directional/north, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/escape) "ao" = ( /obj/effect/turf_decal/delivery, @@ -150,6 +150,7 @@ /obj/machinery/camera/autoname{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "bb" = ( @@ -169,10 +170,6 @@ /obj/machinery/status_display/evac, /turf/closed/wall/mineral/titanium, /area/shuttle/escape) -"bh" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) "bi" = ( /obj/effect/turf_decal/bot, /obj/machinery/suit_storage_unit/standard_unit, @@ -217,6 +214,7 @@ pixel_y = 4 }, /obj/item/clothing/mask/breath, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "bp" = ( @@ -288,6 +286,7 @@ /obj/machinery/camera/autoname{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/titanium/tiled/yellow, /area/shuttle/escape) "bO" = ( @@ -555,6 +554,7 @@ /obj/machinery/camera/autoname{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium/tiled/yellow, /area/shuttle/escape) "hE" = ( @@ -1254,6 +1254,7 @@ dir = 4 }, /obj/machinery/light/directional/west, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape/brig) "VD" = ( @@ -1326,7 +1327,7 @@ ab ac ab ac -ai +ab bb ab bq @@ -1338,7 +1339,7 @@ ab bX ab bX -ai +ab ab as cS @@ -1430,8 +1431,8 @@ cS (5,1,1) = {" ab ac +ab ai -as cw IX Mo @@ -1543,7 +1544,7 @@ bY kh dZ Uc -bh +ab bo Em Wu @@ -1592,9 +1593,9 @@ cT (11,1,1) = {" ab ac +ab ai as -as aO aX bi @@ -1704,7 +1705,7 @@ ab ab ab ac -ai +ab ac ab ac @@ -1716,7 +1717,7 @@ ab ac ab ab -ai +ab ab as cS diff --git a/_maps/shuttles/emergency_lance.dmm b/_maps/shuttles/emergency_lance.dmm index 3b8dbea2cc79..c7690ad3832a 100644 --- a/_maps/shuttles/emergency_lance.dmm +++ b/_maps/shuttles/emergency_lance.dmm @@ -617,9 +617,7 @@ /area/shuttle/escape) "ry" = ( /obj/structure/chair/comfy/shuttle, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark/textured, /area/shuttle/escape) "sn" = ( @@ -935,7 +933,6 @@ /obj/machinery/turretid{ control_area = "/area/shuttle/escape"; desc = "Used to control the Lance's automated defenses."; - icon_state = "control_kill"; lethal = 1; pixel_y = -26; req_access = list("command") @@ -1340,9 +1337,6 @@ }, /area/shuttle/escape) "Pe" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/button/door/directional/south{ id = "lance_psych"; name = "Panic Room Bolt Control"; @@ -1350,6 +1344,7 @@ specialfunctions = 4 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/white/textured_large, /area/shuttle/escape) "Px" = ( diff --git a/_maps/shuttles/emergency_luxury.dmm b/_maps/shuttles/emergency_luxury.dmm index 9ca9ab021dc6..cdb6ce920ccd 100644 --- a/_maps/shuttles/emergency_luxury.dmm +++ b/_maps/shuttles/emergency_luxury.dmm @@ -504,7 +504,7 @@ /turf/open/floor/iron, /area/shuttle/escape) "ul" = ( -/obj/item/food/sandwich/cheese/grilled{ +/obj/item/food/sandwich/grilled_cheese{ pixel_y = 11 }, /obj/structure/table/wood/fancy/black, diff --git a/_maps/shuttles/emergency_monastery.dmm b/_maps/shuttles/emergency_monastery.dmm index e1c8d5a97b57..10ff3ff18011 100644 --- a/_maps/shuttles/emergency_monastery.dmm +++ b/_maps/shuttles/emergency_monastery.dmm @@ -543,8 +543,8 @@ /turf/open/floor/carpet, /area/shuttle/escape) "jk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/plating, /area/shuttle/escape) "jn" = ( @@ -637,9 +637,9 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "kv" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/structure/cable, +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/iron/dark, /area/shuttle/escape) "kw" = ( /obj/structure/chair/wood, @@ -1340,10 +1340,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/camera/directional/west{ - c_tag = "Monastery Archives Access Tunnel"; - network = list("ss13","monastery") - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -3242,6 +3238,10 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/camera/directional/west{ + c_tag = "Monastery Archives Access Tunnel"; + network = list("ss13","monastery") + }, /turf/open/floor/iron/dark, /area/shuttle/escape) "TJ" = ( @@ -5606,8 +5606,8 @@ JG (24,1,1) = {" zE zE -jk -Am +zE +kv rQ XI Am @@ -6444,7 +6444,7 @@ zE zE Pe jc -kv +zE lc zE jc @@ -6527,7 +6527,7 @@ zE zE zE zE -lE +jk zE jc jc diff --git a/_maps/shuttles/emergency_nebula.dmm b/_maps/shuttles/emergency_nebula.dmm index 4a8fb7ecd978..267454ee5ebf 100644 --- a/_maps/shuttles/emergency_nebula.dmm +++ b/_maps/shuttles/emergency_nebula.dmm @@ -117,8 +117,12 @@ /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape) "ej" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark, /area/shuttle/escape) "eU" = ( /obj/structure/chair/comfy/shuttle{ @@ -215,6 +219,15 @@ }, /turf/open/floor/iron/dark, /area/shuttle/escape) +"ii" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/shuttle/escape) "is" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/wood, @@ -1594,10 +1607,8 @@ /area/shuttle/escape) "GE" = ( /obj/effect/turf_decal/bot, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "GM" = ( @@ -1678,9 +1689,7 @@ }, /obj/structure/closet/crate/internals, /obj/effect/turf_decal/bot, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "GW" = ( @@ -1944,6 +1953,11 @@ }, /turf/open/floor/iron/dark, /area/shuttle/escape) +"Od" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark/corner, +/area/shuttle/escape) "OB" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -2221,9 +2235,7 @@ /area/shuttle/escape) "SH" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "Tc" = ( @@ -2283,10 +2295,8 @@ /area/shuttle/escape) "UK" = ( /obj/effect/turf_decal/bot, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "UQ" = ( @@ -2322,6 +2332,7 @@ /obj/effect/turf_decal/trimline/neutral/end{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "VZ" = ( @@ -2671,13 +2682,13 @@ kZ kZ kZ kZ -ej +kZ kZ kZ UU UU UU -ej +kZ kZ kZ kZ @@ -2700,14 +2711,14 @@ Ra kZ GM rF -wP +ej fD Kv qJ wP fD Kv -Am +Od Jy kZ Bu @@ -3157,7 +3168,7 @@ Gh wP fD Kv -CZ +ii fm kZ mw @@ -3181,13 +3192,13 @@ kZ kZ kZ vk -ej +kZ YB kZ UU UU UU -ej +kZ sU kZ CH diff --git a/_maps/shuttles/emergency_omega.dmm b/_maps/shuttles/emergency_omega.dmm index dcd1f6e46438..fb87813c4a92 100644 --- a/_maps/shuttles/emergency_omega.dmm +++ b/_maps/shuttles/emergency_omega.dmm @@ -7,10 +7,6 @@ /obj/structure/grille, /turf/open/floor/plating, /area/shuttle/escape) -"ac" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) "ae" = ( /obj/structure/chair/comfy/shuttle, /turf/open/floor/mineral/plastitanium/red, @@ -20,6 +16,7 @@ dir = 8 }, /obj/item/radio/intercom/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape/brig) "al" = ( @@ -587,6 +584,7 @@ /area/shuttle/escape) "Am" = ( /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape/brig) "Dh" = ( @@ -608,6 +606,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/shuttle/escape) "Ge" = ( @@ -682,7 +681,7 @@ aa aa aa qX -ac +aa ay aa sY @@ -690,7 +689,7 @@ sY sY aa aP -ac +aa aP aa aa @@ -783,7 +782,7 @@ bt bv "} (6,1,1) = {" -ac +aa ab IX sY @@ -892,7 +891,7 @@ aa sY sY aa -ac +aa aa sY sY @@ -900,7 +899,7 @@ sY sY sY aa -ac +aa aa aa aa diff --git a/_maps/shuttles/emergency_pubby.dmm b/_maps/shuttles/emergency_pubby.dmm index b0b75da383a5..6cb862f7fb6c 100644 --- a/_maps/shuttles/emergency_pubby.dmm +++ b/_maps/shuttles/emergency_pubby.dmm @@ -458,12 +458,10 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "fa" = ( -/obj/structure/chair/comfy/shuttle{ +/obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 1 }, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/obj/machinery/light/directional/east, +/obj/structure/chair/comfy/shuttle, /turf/open/floor/iron/dark, /area/shuttle/escape) "iy" = ( diff --git a/_maps/shuttles/emergency_raven.dmm b/_maps/shuttles/emergency_raven.dmm index 7eb255fc2d42..7b96165e0142 100644 --- a/_maps/shuttles/emergency_raven.dmm +++ b/_maps/shuttles/emergency_raven.dmm @@ -759,8 +759,12 @@ /turf/open/floor/plating, /area/shuttle/escape) "cg" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/west, +/turf/open/floor/iron/dark, /area/shuttle/escape) "ch" = ( /obj/effect/turf_decal/stripes/white/corner{ @@ -939,8 +943,9 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "cP" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/departments/cargo/directional/south, +/turf/open/floor/iron/dark, /area/shuttle/escape) "cQ" = ( /obj/effect/turf_decal/delivery/white, @@ -1466,7 +1471,6 @@ "ep" = ( /obj/machinery/turretid{ desc = "Used to the Raven's automated defenses."; - icon_state = "control_kill"; lethal = 1; pixel_x = 5; pixel_y = 32; @@ -1488,6 +1492,13 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/plating/airless, /area/shuttle/escape) +"fB" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/east, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "fD" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/bot, @@ -1528,6 +1539,14 @@ /obj/structure/table/reinforced, /turf/open/floor/plating, /area/shuttle/escape) +"ri" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/east, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "vw" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/decal/cleanable/dirt, @@ -1545,6 +1564,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/shuttle/escape) +"Cz" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/west, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "Ds" = ( /obj/machinery/button/door{ id = "escape_cockpit_blast"; @@ -1772,7 +1799,7 @@ bt bC ax ax -cg +ax cd ax ax @@ -1782,7 +1809,7 @@ SA ax ax cd -cg +ax ax ax dH @@ -1806,7 +1833,7 @@ aZ bD br bW -ch +Cz cr cz cF @@ -1816,7 +1843,7 @@ bP cU br dg -cr +cg dv ax dI @@ -1913,11 +1940,11 @@ bP bP bP bP -bP cP ax ax ax +ax dr ax ax @@ -2117,11 +2144,11 @@ bP bP bP bP -bP cP ax ax ax +ax dr ax ax @@ -2214,7 +2241,7 @@ bA bL br ca -cl +fB cs cC cG @@ -2224,7 +2251,7 @@ bP cU br do -cs +ri dy ax dQ @@ -2248,7 +2275,7 @@ bB bM ax ax -cg +ax ct ax ax @@ -2258,7 +2285,7 @@ Pd ax ax cd -cg +ax ax ax dR diff --git a/_maps/shuttles/emergency_supermatter.dmm b/_maps/shuttles/emergency_supermatter.dmm index ca1b7ea0d272..0dca7d46d3ac 100644 --- a/_maps/shuttles/emergency_supermatter.dmm +++ b/_maps/shuttles/emergency_supermatter.dmm @@ -3,8 +3,11 @@ /turf/template_noop, /area/template_noop) "ac" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/mineral/titanium, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/structure/sign/warning/radiation/directional/south, +/turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "ad" = ( /obj/effect/spawner/structure/window/reinforced/shuttle, @@ -111,10 +114,12 @@ pixel_x = 4; pixel_y = -4 }, +/obj/structure/sign/warning/radiation/directional/west, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "aE" = ( /obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "aF" = ( @@ -127,8 +132,11 @@ /turf/open/floor/plating, /area/shuttle/escape) "aI" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/mineral/titanium/nodiagonal, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/structure/sign/warning/radiation/directional/south, +/turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "aL" = ( /obj/machinery/door/airlock/external/ruin{ @@ -265,6 +273,7 @@ }, /obj/item/clothing/glasses/meson/engine, /obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/radiation/directional/north, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "bj" = ( @@ -273,6 +282,7 @@ }, /obj/item/clothing/glasses/meson/engine, /obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/radiation/directional/north, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "bk" = ( @@ -303,6 +313,14 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) +"yI" = ( +/obj/structure/closet/radiation{ + anchored = 1 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) "Bi" = ( /obj/structure/closet/radiation{ anchored = 1 @@ -313,6 +331,14 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) +"Op" = ( +/obj/structure/closet/radiation{ + anchored = 1 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/sign/warning/radiation/directional/east, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) "UA" = ( /obj/machinery/status_display/evac{ pixel_y = -32 @@ -329,7 +355,7 @@ aa aa aw aA -ac +ae aF aw aa @@ -348,7 +374,7 @@ aa aw ae ad -ac +ae ae ad aw @@ -369,10 +395,10 @@ bc be "} (3,1,1) = {" -ac +ae bj ag -ag +yI Bi ag ag @@ -402,9 +428,9 @@ ar ar ar ar -ar aI aw +aw aa aM aa @@ -498,8 +524,8 @@ av av av av -av -aI +ac +aw aw aa aM @@ -513,10 +539,10 @@ aa aa "} (9,1,1) = {" -ac +ae bi ag -ag +Op pb ag ag @@ -540,7 +566,7 @@ be aw ae ad -ac +ae ae ad aw @@ -569,7 +595,7 @@ aa aa aw aA -ac +ae aA aw aa diff --git a/_maps/shuttles/emergency_tranquility.dmm b/_maps/shuttles/emergency_tranquility.dmm index 8498e51bbf10..7e53a0ebce08 100644 --- a/_maps/shuttles/emergency_tranquility.dmm +++ b/_maps/shuttles/emergency_tranquility.dmm @@ -790,10 +790,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 5 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/wood, /area/shuttle/escape) "oV" = ( @@ -1127,10 +1125,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 9 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/wood, /area/shuttle/escape) "wm" = ( @@ -1416,10 +1412,8 @@ dir = 10 }, /obj/machinery/vending/coffee, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/wood, /area/shuttle/escape) "AQ" = ( @@ -1609,7 +1603,7 @@ /obj/item/pen/fourcolor{ pixel_x = -4 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 8; pixel_y = 5 }, @@ -2460,10 +2454,8 @@ dir = 6 }, /obj/machinery/vending/coffee, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/wood, /area/shuttle/escape) "UF" = ( diff --git a/_maps/shuttles/ferry_kilo.dmm b/_maps/shuttles/ferry_kilo.dmm index 6b727bfc81b9..a283c5bd0448 100644 --- a/_maps/shuttles/ferry_kilo.dmm +++ b/_maps/shuttles/ferry_kilo.dmm @@ -27,8 +27,12 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "g" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "h" = ( /obj/machinery/power/shuttle_engine/propulsion/left{ @@ -78,6 +82,7 @@ "n" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "o" = ( @@ -227,8 +232,8 @@ e d o r -w g +d "} (7,1,1) = {" f @@ -238,7 +243,7 @@ m f "} (8,1,1) = {" -g +d n r H diff --git a/_maps/shuttles/ferry_nebula.dmm b/_maps/shuttles/ferry_nebula.dmm index cc15e6ab66d7..baec8ed6e25d 100644 --- a/_maps/shuttles/ferry_nebula.dmm +++ b/_maps/shuttles/ferry_nebula.dmm @@ -171,6 +171,12 @@ }, /turf/open/floor/iron/dark/textured, /area/shuttle/transport) +"I" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/dark/small, +/area/shuttle/transport) "J" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -200,8 +206,12 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/transport) "M" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark/small, /area/shuttle/transport) "N" = ( /obj/structure/hedge, @@ -318,8 +328,8 @@ j i c a -b M +i "} (6,1,1) = {" q @@ -329,8 +339,8 @@ Z q "} (7,1,1) = {" -M -h +i +I a K i diff --git a/_maps/shuttles/hunter_bounty.dmm b/_maps/shuttles/hunter_bounty.dmm index ba752de932b9..2932196835c0 100644 --- a/_maps/shuttles/hunter_bounty.dmm +++ b/_maps/shuttles/hunter_bounty.dmm @@ -9,6 +9,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/plating, /area/shuttle/hunter) "e" = ( @@ -17,10 +18,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/hunter) -"g" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/hunter) "h" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -34,6 +31,7 @@ /area/shuttle/hunter) "j" = ( /obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/plating, /area/shuttle/hunter) "k" = ( @@ -345,7 +343,7 @@ b (6,1,1) = {" b b -g +b b T s @@ -353,7 +351,7 @@ s s G b -g +b b b "} diff --git a/_maps/shuttles/infiltrator_advanced.dmm b/_maps/shuttles/infiltrator_advanced.dmm index cc6f55f20ead..296a65fe8bf8 100644 --- a/_maps/shuttles/infiltrator_advanced.dmm +++ b/_maps/shuttles/infiltrator_advanced.dmm @@ -240,10 +240,6 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) -"aJ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/plastitanium/syndicate, -/area/shuttle/syndicate/airlock) "aK" = ( /obj/structure/chair/comfy/shuttle{ name = "tactical chair" @@ -257,10 +253,6 @@ /obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) -"aL" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall/plastitanium/syndicate, -/area/shuttle/syndicate/airlock) "aM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -289,6 +281,7 @@ dir = 9 }, /obj/structure/cable, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "aQ" = ( @@ -586,6 +579,7 @@ dir = 10 }, /obj/structure/cable, +/obj/structure/sign/warning/vacuum/external/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "by" = ( @@ -919,10 +913,6 @@ /obj/item/storage/medkit/fire, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) -"ck" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/plastitanium/syndicate, -/area/shuttle/syndicate/hallway) "cl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -1233,6 +1223,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "dd" = ( @@ -1368,6 +1359,7 @@ dir = 6 }, /obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/vacuum/external/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "dr" = ( @@ -1693,6 +1685,7 @@ }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/pod/dark, /area/shuttle/syndicate/hallway) "ed" = ( @@ -1775,6 +1768,7 @@ }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/pod/dark, /area/shuttle/syndicate/hallway) "el" = ( @@ -2075,6 +2069,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "Xl" = ( @@ -2084,6 +2079,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "YW" = ( @@ -2143,7 +2139,7 @@ ad ad aO bp -aL +aO aO bD bD @@ -2210,9 +2206,9 @@ ad ad aB aO -aL +aO bZ -aJ +aO aO bf ep @@ -2312,7 +2308,7 @@ dP dR bQ ec -ck +aF cM cz cD @@ -2404,7 +2400,7 @@ cg dR bQ ek -ck +aF cM cY cJ @@ -2486,9 +2482,9 @@ ad ad aD aO -aL +aO bZ -aJ +aO aO cF tB @@ -2557,7 +2553,7 @@ ad ad aO cW -aL +aO aO bE bE diff --git a/_maps/shuttles/infiltrator_basic.dmm b/_maps/shuttles/infiltrator_basic.dmm index a69cbb71e078..394fb3b91afe 100644 --- a/_maps/shuttles/infiltrator_basic.dmm +++ b/_maps/shuttles/infiltrator_basic.dmm @@ -586,8 +586,12 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/shuttle/syndicate/medical) "fB" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall/plastitanium/syndicate/nodiagonal, +/obj/structure/chair/comfy/shuttle/tactical{ + dir = 8 + }, +/obj/effect/turf_decal/bot_red, +/obj/structure/sign/warning/vacuum/external/directional/east, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) "gt" = ( /obj/item/storage/box/handcuffs{ @@ -1481,7 +1485,7 @@ aB aQ iE RO -nN +fB nN bn bA @@ -1506,7 +1510,7 @@ bO aB Xy aY -fB +Xy aB bn bB diff --git a/_maps/shuttles/mining_common_kilo.dmm b/_maps/shuttles/mining_common_kilo.dmm index 751974a4ad55..26e16830b804 100644 --- a/_maps/shuttles/mining_common_kilo.dmm +++ b/_maps/shuttles/mining_common_kilo.dmm @@ -46,15 +46,12 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) -"i" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) "j" = ( /obj/machinery/light/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "k" = ( @@ -127,7 +124,7 @@ a a b -i +a b a a diff --git a/_maps/shuttles/mining_common_northstar.dmm b/_maps/shuttles/mining_common_northstar.dmm index 5e24739c363d..f746f90c0abb 100644 --- a/_maps/shuttles/mining_common_northstar.dmm +++ b/_maps/shuttles/mining_common_northstar.dmm @@ -9,6 +9,7 @@ /obj/effect/turf_decal/trimline/neutral/line{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/pod/light, /area/shuttle/mining) "e" = ( @@ -82,10 +83,6 @@ /obj/item/storage/toolbox/emergency, /turf/open/floor/pod/light, /area/shuttle/mining) -"E" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/survival, -/area/shuttle/mining) "G" = ( /obj/structure/ore_box, /obj/effect/turf_decal/trimline/brown, @@ -156,7 +153,7 @@ v v l l -E +v l v a diff --git a/_maps/shuttles/mining_freight.dmm b/_maps/shuttles/mining_freight.dmm index ead08ff80ac3..8282d22d3ede 100644 --- a/_maps/shuttles/mining_freight.dmm +++ b/_maps/shuttles/mining_freight.dmm @@ -43,10 +43,6 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) -"i" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) "j" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/stripes/line{ @@ -55,6 +51,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) "k" = ( @@ -125,7 +122,7 @@ a a b -i +a b a a diff --git a/_maps/shuttles/mining_kilo.dmm b/_maps/shuttles/mining_kilo.dmm index f52a5c947f3e..a6fdf02c6db7 100644 --- a/_maps/shuttles/mining_kilo.dmm +++ b/_maps/shuttles/mining_kilo.dmm @@ -112,10 +112,7 @@ /area/shuttle/mining/large) "q" = ( /obj/machinery/status_display/evac, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/mining/large) -"r" = ( -/obj/structure/sign/departments/cargo, +/obj/structure/sign/departments/cargo/directional/west, /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/mining/large) "s" = ( @@ -340,7 +337,7 @@ b b f l -r +k t x G diff --git a/_maps/shuttles/mining_northstar.dmm b/_maps/shuttles/mining_northstar.dmm index 48c194b6d458..4a557937d778 100644 --- a/_maps/shuttles/mining_northstar.dmm +++ b/_maps/shuttles/mining_northstar.dmm @@ -198,10 +198,6 @@ /obj/structure/ore_box, /turf/open/floor/pod/dark, /area/shuttle/mining) -"X" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/survival, -/area/shuttle/mining) "Z" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 @@ -212,6 +208,7 @@ /obj/effect/turf_decal/trimline/purple/line{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/pod/light, /area/shuttle/mining) @@ -264,7 +261,7 @@ I P I R -X +I R I P diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm index 432e3e931291..9b6f60d16a76 100644 --- a/_maps/shuttles/pirate_default.dmm +++ b/_maps/shuttles/pirate_default.dmm @@ -14,11 +14,11 @@ /obj/structure/table, /obj/effect/decal/cleanable/dirt, /obj/machinery/recharger, -/obj/item/gun/energy/laser{ +/obj/item/gun/energy/laser/soul{ pixel_x = -3; pixel_y = 6 }, -/obj/item/gun/energy/laser{ +/obj/item/gun/energy/laser/soul{ pixel_y = 3 }, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ @@ -407,7 +407,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = -24; diff --git a/_maps/shuttles/pirate_dutchman.dmm b/_maps/shuttles/pirate_dutchman.dmm index a00fff6e7e9f..0b50a136b414 100644 --- a/_maps/shuttles/pirate_dutchman.dmm +++ b/_maps/shuttles/pirate_dutchman.dmm @@ -931,7 +931,7 @@ /obj/item/restraints/legcuffs/bola, /obj/item/restraints/legcuffs/bola, /obj/item/restraints/legcuffs/bola, -/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser/soul, /obj/item/megaphone, /obj/item/melee/chainofcommand/tailwhip/kitty, /obj/item/claymore/cutlass, diff --git a/_maps/shuttles/pirate_ex_interdyne.dmm b/_maps/shuttles/pirate_ex_interdyne.dmm index 4dd64e4cdbe0..c2bfc4f4d0e3 100644 --- a/_maps/shuttles/pirate_ex_interdyne.dmm +++ b/_maps/shuttles/pirate_ex_interdyne.dmm @@ -12,7 +12,6 @@ dir = 8 }, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = -24; @@ -803,13 +802,6 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron/dark, /area/shuttle/pirate) -"Tr" = ( -/obj/machinery/porta_turret/syndicate/energy/heavy{ - faction = list("pirate","Syndicate"); - max_integrity = 10000 - }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/shuttle/pirate) "Ur" = ( /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 8 @@ -968,7 +960,7 @@ aj aj aa aj -Tr +aO "} (8,1,1) = {" vz @@ -1040,7 +1032,7 @@ aj aj DD aj -Tr +aO "} (12,1,1) = {" af diff --git a/_maps/shuttles/pirate_geode.dmm b/_maps/shuttles/pirate_geode.dmm index 2f6a573aae05..68266a96cffd 100644 --- a/_maps/shuttles/pirate_geode.dmm +++ b/_maps/shuttles/pirate_geode.dmm @@ -258,7 +258,6 @@ dir = 4 }, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = -24; diff --git a/_maps/shuttles/pirate_irs.dmm b/_maps/shuttles/pirate_irs.dmm index 2bc11decda8c..5ad360f2f48f 100644 --- a/_maps/shuttles/pirate_irs.dmm +++ b/_maps/shuttles/pirate_irs.dmm @@ -1379,7 +1379,6 @@ dir = 4 }, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; pixel_y = -24; req_access = list("syndicate") @@ -1509,7 +1508,7 @@ /area/shuttle/pirate) "NW" = ( /obj/structure/table/reinforced, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 10 }, diff --git a/_maps/shuttles/ruin_pirate_cutter.dmm b/_maps/shuttles/ruin_pirate_cutter.dmm index 422d5bfb2cdd..6422f2159b60 100644 --- a/_maps/shuttles/ruin_pirate_cutter.dmm +++ b/_maps/shuttles/ruin_pirate_cutter.dmm @@ -133,7 +133,6 @@ dir = 4 }, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = -30; @@ -554,7 +553,7 @@ /obj/machinery/door/window/right/directional/south{ name = "Weapon Storage" }, -/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser/soul, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/shuttle/ruin/caravan/pirate) diff --git a/_maps/shuttles/ruin_syndicate_dropship.dmm b/_maps/shuttles/ruin_syndicate_dropship.dmm index dc3e7b68a7b2..3bbec2623919 100644 --- a/_maps/shuttles/ruin_syndicate_dropship.dmm +++ b/_maps/shuttles/ruin_syndicate_dropship.dmm @@ -439,7 +439,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Shuttle turret control"; pixel_y = 34; diff --git a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm index f91d0260d66f..08a0585dc9de 100644 --- a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm +++ b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm @@ -12,7 +12,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Shuttle turret control"; pixel_x = 32; diff --git a/_maps/shuttles/starfury_corvette.dmm b/_maps/shuttles/starfury_corvette.dmm index 877375fa4e78..8e9442894669 100644 --- a/_maps/shuttles/starfury_corvette.dmm +++ b/_maps/shuttles/starfury_corvette.dmm @@ -16,7 +16,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Ship Turret Control"; pixel_x = 32; diff --git a/_maps/shuttles/starfury_fighter1.dmm b/_maps/shuttles/starfury_fighter1.dmm index ae37e35c23b0..68c1aa7d141e 100644 --- a/_maps/shuttles/starfury_fighter1.dmm +++ b/_maps/shuttles/starfury_fighter1.dmm @@ -82,7 +82,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Ship Turret Control"; pixel_x = -32; diff --git a/_maps/shuttles/starfury_fighter2.dmm b/_maps/shuttles/starfury_fighter2.dmm index de55ea6c127c..6613bd1154b5 100644 --- a/_maps/shuttles/starfury_fighter2.dmm +++ b/_maps/shuttles/starfury_fighter2.dmm @@ -50,7 +50,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Ship Turret Control"; pixel_x = -32; diff --git a/_maps/shuttles/starfury_fighter3.dmm b/_maps/shuttles/starfury_fighter3.dmm index e078e7b0bfda..be6d810384f3 100644 --- a/_maps/shuttles/starfury_fighter3.dmm +++ b/_maps/shuttles/starfury_fighter3.dmm @@ -49,7 +49,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Ship Turret Control"; pixel_x = -32; diff --git a/_maps/shuttles/whiteship_birdshot.dmm b/_maps/shuttles/whiteship_birdshot.dmm index 8b2c99d9de1f..8f64e40dbecd 100644 --- a/_maps/shuttles/whiteship_birdshot.dmm +++ b/_maps/shuttles/whiteship_birdshot.dmm @@ -201,12 +201,12 @@ amount = 10 }, /obj/structure/cable, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/catwalk_floor, /area/shuttle/abandoned/engine) "gv" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron/textured, /area/shuttle/abandoned/cargo) @@ -240,7 +240,7 @@ /obj/machinery/atmospherics/components/tank/air{ dir = 1 }, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/catwalk_floor, /area/shuttle/abandoned/engine) "iB" = ( @@ -286,7 +286,7 @@ "jY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/iron/smooth, /area/shuttle/abandoned/crew) "ku" = ( @@ -847,7 +847,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/medbay) "Cz" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, @@ -1376,7 +1376,6 @@ "UK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = 28; @@ -1425,7 +1424,7 @@ pixel_y = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/carpet/green, /area/shuttle/abandoned/bar) "WW" = ( diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm index 81c72c3e8638..b0be5fc47f61 100644 --- a/_maps/shuttles/whiteship_box.dmm +++ b/_maps/shuttles/whiteship_box.dmm @@ -190,7 +190,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -280,7 +280,7 @@ /area/shuttle/abandoned/medbay) "aJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/firealarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -396,7 +396,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/south, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aW" = ( @@ -497,7 +497,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bh" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bi" = ( @@ -553,7 +553,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -656,7 +656,7 @@ /area/shuttle/abandoned/medbay) "bA" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/closet/secure_closet/medical2{ anchored = 1 }, @@ -670,7 +670,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/sleeper, /obj/effect/turf_decal/delivery, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, /area/shuttle/abandoned/medbay) @@ -705,7 +705,7 @@ /area/shuttle/abandoned/medbay) "bF" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/blood/old, /obj/structure/cable, /turf/open/floor/iron/white/side{ @@ -930,7 +930,7 @@ "ce" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/closet/secure_closet/medical3{ anchored = 1 }, @@ -979,7 +979,7 @@ /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 1 }, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/iron/white/side{ dir = 6 }, @@ -995,7 +995,7 @@ /area/shuttle/abandoned/medbay) "cl" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, /obj/effect/turf_decal/tile/blue{ @@ -1009,7 +1009,7 @@ /obj/structure/rack, /obj/item/storage/toolbox/emergency, /obj/item/wrench, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/firealarm/directional/west, /obj/machinery/button/door/directional/south{ id = "whiteship_windows"; @@ -1190,7 +1190,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/bed/medical/emergency, /obj/machinery/iv_drip, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/white/side{ dir = 1 @@ -1245,7 +1245,7 @@ /obj/machinery/shower/directional/south, /obj/item/soap, /obj/structure/curtain, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/iron/freezer, /area/shuttle/abandoned/medbay) "cL" = ( @@ -1372,7 +1372,7 @@ "cX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/table, /obj/machinery/door/window/left/directional/west{ name = "Medical Equipment Storage" @@ -1554,7 +1554,7 @@ /area/shuttle/abandoned/medbay) "dn" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/iron/white/side{ dir = 4 }, @@ -1599,7 +1599,7 @@ "ds" = ( /obj/structure/sign/warning/vacuum/external/directional/east, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/plating, /area/shuttle/abandoned/medbay) "dt" = ( @@ -1615,7 +1615,7 @@ /obj/item/storage/box/zipties, /obj/item/assembly/flash/handheld, /obj/item/melee/baton/telescopic, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/airalarm/directional/west, /obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/power/apc/auto_name/directional/north, @@ -1680,7 +1680,7 @@ pixel_y = 3 }, /obj/item/storage/box/donkpockets, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/shuttle/abandoned/crew) @@ -1733,7 +1733,7 @@ "Pz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/bed{ dir = 4 }, @@ -1755,7 +1755,7 @@ "Uq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/bed, /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/all_access, diff --git a/_maps/shuttles/whiteship_delta.dmm b/_maps/shuttles/whiteship_delta.dmm index a83cd9c28b60..7c99b731c7ac 100644 --- a/_maps/shuttles/whiteship_delta.dmm +++ b/_maps/shuttles/whiteship_delta.dmm @@ -52,7 +52,7 @@ /obj/machinery/shower/directional/south, /obj/item/soap, /obj/structure/curtain, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/freezer, /area/shuttle/abandoned/crew) @@ -67,7 +67,7 @@ /turf/open/floor/iron/freezer, /area/shuttle/abandoned/crew) "al" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ dir = 4 @@ -97,7 +97,7 @@ /area/shuttle/abandoned/crew) "ao" = ( /obj/structure/sign/warning/vacuum/external/directional/east, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "ap" = ( @@ -122,7 +122,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/bar) "at" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/spider/stickyweb, @@ -296,7 +296,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/bar) "aL" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ dir = 5 @@ -371,7 +371,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/crew) "aV" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, @@ -399,7 +399,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 6 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -424,7 +424,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 10 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 @@ -505,7 +505,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bl" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -521,7 +521,7 @@ "bn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/structure/spider/stickyweb, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, @@ -619,7 +619,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/bar) "bx" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ dir = 6 @@ -781,7 +781,6 @@ /area/shuttle/abandoned/engine) "bR" = ( /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_x = -28; @@ -824,14 +823,14 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/east, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/shuttle/abandoned/crew) "bV" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/turf_decal/stripes/corner{ dir = 1 }, @@ -978,7 +977,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/crew) "ck" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, @@ -1117,7 +1116,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/east, /obj/structure/spider/stickyweb, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, /obj/effect/turf_decal/tile/blue{ @@ -1241,7 +1240,7 @@ /area/shuttle/abandoned/engine) "cP" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, /obj/effect/turf_decal/tile/blue/half/contrasted{ @@ -1296,14 +1295,11 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron/dark, /area/shuttle/abandoned/medbay) -"cW" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned/cargo) "cX" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/spider/stickyweb, +/obj/structure/sign/departments/cargo/directional/west, /turf/open/floor/iron, /area/shuttle/abandoned/cargo) "db" = ( @@ -1378,7 +1374,7 @@ /turf/open/floor/iron/white, /area/shuttle/abandoned/medbay) "dj" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/spider/stickyweb, /obj/machinery/firealarm/directional/north, @@ -1423,7 +1419,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 5 }, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -1565,7 +1561,7 @@ /area/shuttle/abandoned/medbay) "dE" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/airalarm/directional/east, /obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/spider/stickyweb, @@ -1592,14 +1588,14 @@ /turf/open/floor/plating, /area/shuttle/abandoned/medbay) "dJ" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/shuttle/abandoned/cargo) "dM" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ dir = 6 @@ -1667,7 +1663,7 @@ /area/shuttle/abandoned/medbay) "dT" = ( /obj/structure/sign/warning/vacuum/external/directional/east, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/shuttle/abandoned/medbay) @@ -2282,7 +2278,7 @@ aa aa cx cy -cW +cx dr cy bv diff --git a/_maps/shuttles/whiteship_kilo.dmm b/_maps/shuttles/whiteship_kilo.dmm index 590c18e7868b..a7a1940b5c22 100644 --- a/_maps/shuttles/whiteship_kilo.dmm +++ b/_maps/shuttles/whiteship_kilo.dmm @@ -539,7 +539,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; name = "NTMS-037 Mining Turret control panel"; diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm index 91e83d3e272f..3952fb624646 100644 --- a/_maps/shuttles/whiteship_meta.dmm +++ b/_maps/shuttles/whiteship_meta.dmm @@ -142,7 +142,7 @@ "at" = ( /obj/structure/sign/warning/vacuum/external/directional/west, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "ax" = ( @@ -295,7 +295,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "ba" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -317,7 +317,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/crew) "be" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -454,7 +454,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bz" = ( -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/west, /obj/structure/closet/crate/internals, @@ -480,7 +480,7 @@ /area/shuttle/abandoned/bar) "bF" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/structure/curtain, /obj/machinery/shower/directional/south, /obj/item/soap, @@ -529,7 +529,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/bar) "bM" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/table, /obj/machinery/microwave, @@ -647,7 +647,7 @@ /area/shuttle/abandoned/bar) "cd" = ( /obj/structure/table, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/item/paper_bin{ pixel_x = -4 @@ -676,7 +676,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = 28; @@ -708,7 +707,7 @@ /area/shuttle/abandoned/engine) "ci" = ( /obj/structure/sign/warning/vacuum/external/directional/north, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -833,7 +832,7 @@ /area/shuttle/abandoned/bar) "cD" = ( /obj/structure/table, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/cell_charger, /obj/item/stock_parts/power_store/cell/high, @@ -889,7 +888,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/engine) "cI" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -969,7 +968,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/cargo) "cS" = ( -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/east, @@ -1072,7 +1071,7 @@ "dk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron/cafeteria, /area/shuttle/abandoned/bar) @@ -1339,7 +1338,7 @@ /area/shuttle/abandoned/bar) "ec" = ( /obj/structure/sign/warning/vacuum/external/directional/west, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/plating, /area/shuttle/abandoned/bar) "ed" = ( @@ -1375,12 +1374,12 @@ pixel_x = -3; pixel_y = 6 }, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/iron, /area/shuttle/abandoned/bar) "ef" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/hydroponics/constructable, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/green/half/contrasted{ @@ -1464,7 +1463,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/bar) "he" = ( -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/west, @@ -1619,7 +1618,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/bar) "uS" = ( -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/east, /obj/effect/mapping_helpers/airalarm/all_access, @@ -1632,7 +1631,7 @@ }, /obj/machinery/airalarm/directional/south, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -1672,7 +1671,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/crew) "Aa" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/cigarette, /obj/effect/decal/cleanable/dirt, @@ -1821,7 +1820,7 @@ }, /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -1853,7 +1852,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/bridge) "HJ" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/coffee, /obj/effect/decal/cleanable/dirt, @@ -1986,7 +1985,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/bar) "RV" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/south, /obj/effect/mapping_helpers/airalarm/all_access, @@ -2019,7 +2018,7 @@ /obj/structure/bed{ dir = 4 }, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/item/bedsheet/brown{ dir = 4 }, diff --git a/_maps/shuttles/whiteship_pubby.dmm b/_maps/shuttles/whiteship_pubby.dmm index 2486da85094b..c351bbdd41b0 100644 --- a/_maps/shuttles/whiteship_pubby.dmm +++ b/_maps/shuttles/whiteship_pubby.dmm @@ -26,7 +26,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 }, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/shuttle/abandoned) @@ -207,7 +207,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/table, /obj/effect/spawner/random/food_or_drink/donkpockets{ pixel_y = 5 @@ -303,7 +303,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned) "na" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable, @@ -532,7 +532,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/iron/dark, /area/shuttle/abandoned) "vB" = ( @@ -850,7 +850,7 @@ "JI" = ( /obj/structure/sign/warning/vacuum/external/directional/west, /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/turf_decal/delivery/white, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -991,7 +991,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned) "Pu" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/turf_decal/siding/purple{ dir = 10 }, @@ -1214,7 +1214,7 @@ pixel_x = -4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/pod/light, /area/shuttle/abandoned) "ZT" = ( diff --git a/_maps/shuttles/whiteship_tram.dmm b/_maps/shuttles/whiteship_tram.dmm index 9e2e244343ed..27391955c3fd 100644 --- a/_maps/shuttles/whiteship_tram.dmm +++ b/_maps/shuttles/whiteship_tram.dmm @@ -207,7 +207,6 @@ /turf/open/floor/pod, /area/shuttle/abandoned/cargo) "aT" = ( -/obj/structure/sign/warning/secure_area, /turf/closed/wall/mineral/titanium/survival/nodiagonal, /area/shuttle/abandoned/cargo) "aU" = ( @@ -226,6 +225,7 @@ "aW" = ( /obj/effect/spawner/random/trash/hobo_squat, /obj/effect/mob_spawn/corpse/human/assistant, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/pod, /area/shuttle/abandoned/cargo) "aX" = ( @@ -802,10 +802,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/shuttle/abandoned/bridge) -"dv" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/abandoned/bridge) "dw" = ( /obj/structure/bed/pod{ dir = 1 @@ -814,6 +810,7 @@ dir = 1 }, /obj/effect/turf_decal/bot_white, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark/textured_large, /area/shuttle/abandoned/crew) "dx" = ( @@ -926,9 +923,11 @@ /turf/open/floor/iron/smooth_large, /area/shuttle/abandoned/bridge) "pm" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/abandoned/crew) +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned/bridge) "qd" = ( /obj/machinery/power/shuttle_engine/heater{ dir = 1 @@ -1230,6 +1229,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/shuttle/abandoned/crew) +"KQ" = ( +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/pod, +/area/shuttle/abandoned/cargo) "LM" = ( /obj/structure/cable, /obj/effect/decal/cleanable/blood/tracks{ @@ -1594,7 +1597,7 @@ by cP da dy -dv +dy do ds dy @@ -1623,7 +1626,7 @@ cY cY cY dx -iz +pm dp dt dx @@ -1712,7 +1715,7 @@ de aq dl dq -pm +aq aq aq de @@ -1791,7 +1794,7 @@ cA aS bn cA -cA +KQ cH ez cV diff --git a/_maps/templates/battlecruiser_starfury.dmm b/_maps/templates/battlecruiser_starfury.dmm index 5dd8929572b4..bb32515c5a1f 100644 --- a/_maps/templates/battlecruiser_starfury.dmm +++ b/_maps/templates/battlecruiser_starfury.dmm @@ -415,8 +415,11 @@ /turf/open/floor/plating, /area/shuttle/sbc_starfury) "by" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/dark/smooth_large, /area/shuttle/sbc_starfury) "bB" = ( /obj/effect/turf_decal/tile/red, @@ -474,6 +477,13 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/shuttle/sbc_starfury) +"bQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/shuttle/sbc_starfury) "bR" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/dark_red{ @@ -2663,8 +2673,12 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/sbc_starfury) "ja" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/radiation/directional/east, +/turf/open/floor/mineral/plastitanium, /area/shuttle/sbc_starfury) "jb" = ( /obj/effect/turf_decal/stripes/line{ @@ -3844,6 +3858,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/pod/dark, /area/shuttle/sbc_starfury) "rr" = ( @@ -4129,6 +4144,7 @@ dir = 5 }, /obj/machinery/light/directional/east, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/sbc_starfury) "wo" = ( @@ -4774,6 +4790,14 @@ temperature = 80 }, /area/shuttle/sbc_starfury) +"HC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/sbc_starfury) "HF" = ( /obj/machinery/suit_storage_unit/syndicate, /obj/machinery/light/small/directional/west, @@ -4957,7 +4981,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_stun"; name = "Ship Turret Control"; pixel_y = -28; req_access = list("syndicate") @@ -5108,6 +5131,13 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/shuttle/sbc_starfury) +"Or" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/warning/radiation/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/sbc_starfury) "Ou" = ( /obj/structure/lattice, /turf/template_noop, @@ -5452,6 +5482,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/sbc_starfury) +"UG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/sbc_starfury) "UH" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -6626,7 +6663,7 @@ ad ad ad ae -by +ae Sb Yg ae @@ -6694,7 +6731,7 @@ aU bj eJ ev -PF +bQ ay vk ae @@ -6733,12 +6770,12 @@ ay zm iD iQ -iZ +Or kt MR kt kg -kg +ja kt kR lk @@ -6801,11 +6838,11 @@ ae ae ae ae -ja +ae ae wd jv -ja +ae ae kG kU @@ -7345,11 +7382,11 @@ ae xG ae ae -ja +ae ae jN Xg -ja +ae ae xH kU @@ -7374,7 +7411,7 @@ be bt FC eM -NX +by bZ cV ae @@ -7413,11 +7450,11 @@ gO Rv iI kb -jb +UG kH yM Lb -kj +HC kj kH la @@ -7442,7 +7479,7 @@ ad ad ad ae -by +ae po ES ae @@ -7609,12 +7646,12 @@ nD Qw ae ae -by +ae ae ZK hX ae -by +ae ae ae xG diff --git a/_maps/templates/holodeck_fitness.dmm b/_maps/templates/holodeck_fitness.dmm new file mode 100644 index 000000000000..3430be521a4b --- /dev/null +++ b/_maps/templates/holodeck_fitness.dmm @@ -0,0 +1,273 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/structure/weightmachine, +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"d" = ( +/obj/item/kirbyplants/organic/plant17, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"g" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 2 + }, +/turf/open/floor/holofloor/white, +/area/template_noop) +"j" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"k" = ( +/obj/item/clothing/under/color/yellow, +/obj/structure/rack, +/obj/item/clothing/under/color/yellow, +/turf/open/floor/holofloor, +/area/template_noop) +"l" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"m" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"n" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"p" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"s" = ( +/obj/item/clothing/under/color/blue, +/obj/structure/rack, +/obj/item/clothing/under/color/blue, +/turf/open/floor/holofloor, +/area/template_noop) +"t" = ( +/obj/item/kirbyplants/organic/plant2, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"u" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/holofloor/white, +/area/template_noop) +"v" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/holofloor, +/area/template_noop) +"w" = ( +/obj/item/clothing/under/color/darkgreen, +/obj/structure/rack, +/obj/item/clothing/under/color/darkgreen, +/turf/open/floor/holofloor, +/area/template_noop) +"x" = ( +/obj/item/instrument/piano_synth/headphones{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/structure/table, +/obj/item/instrument/piano_synth/headphones{ + pixel_y = -1; + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"A" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"H" = ( +/obj/structure/curtain, +/obj/machinery/shower/directional/south, +/turf/open/floor/holofloor/white, +/area/template_noop) +"I" = ( +/turf/open/floor/holofloor/dark, +/area/template_noop) +"J" = ( +/obj/item/kirbyplants/organic/plant1, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"K" = ( +/obj/structure/table, +/obj/item/radio/entertainment/speakers/physical, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"N" = ( +/turf/open/floor/holofloor, +/area/template_noop) +"O" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"P" = ( +/obj/item/kirbyplants/organic/plant13, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"R" = ( +/turf/open/floor/holofloor/white, +/area/template_noop) +"S" = ( +/obj/item/clothing/under/color/red, +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/turf/open/floor/holofloor, +/area/template_noop) +"U" = ( +/obj/item/training_toolbox, +/obj/structure/table, +/obj/item/training_toolbox{ + pixel_y = 3; + pixel_x = 2 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"V" = ( +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"W" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/holofloor/white, +/area/template_noop) +"Y" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/holofloor/dark, +/area/template_noop) + +(1,1,1) = {" +R +R +O +I +d +P +I +p +N +U +"} +(2,1,1) = {" +R +g +O +Y +V +V +b +p +N +S +"} +(3,1,1) = {" +H +u +j +V +V +V +V +p +N +k +"} +(4,1,1) = {" +R +u +j +Y +V +V +b +p +N +w +"} +(5,1,1) = {" +H +u +j +V +V +V +V +p +N +s +"} +(6,1,1) = {" +R +u +j +Y +V +V +b +p +m +x +"} +(7,1,1) = {" +H +u +j +V +V +V +V +p +v +n +"} +(8,1,1) = {" +R +W +O +l +V +V +l +p +v +n +"} +(9,1,1) = {" +R +R +O +I +J +t +I +p +A +K +"} diff --git a/_maps/templates/lazy_templates/heretic_sacrifice.dmm b/_maps/templates/lazy_templates/heretic_sacrifice.dmm index 7a752a33e738..b938a35278b9 100644 --- a/_maps/templates/lazy_templates/heretic_sacrifice.dmm +++ b/_maps/templates/lazy_templates/heretic_sacrifice.dmm @@ -19,7 +19,7 @@ /turf/open/floor/stone, /area/centcom/heretic_sacrifice/flesh) "cW" = ( -/obj/structure/no_effect_signpost/void, +/obj/structure/signpost/void, /turf/open/misc/asteroid, /area/centcom/heretic_sacrifice/void) "dX" = ( diff --git a/_maps/templates/lazy_templates/ninja_den.dmm b/_maps/templates/lazy_templates/ninja_den.dmm index e357077f8884..30452f41e5cf 100644 --- a/_maps/templates/lazy_templates/ninja_den.dmm +++ b/_maps/templates/lazy_templates/ninja_den.dmm @@ -532,9 +532,9 @@ /area/centcom/central_command_areas/holding) "ni" = ( /obj/structure/rack, -/obj/item/nullrod/claymore/saber/red{ +/obj/item/melee/energy/sword/nullrod/red{ damtype = "stamina"; - force = 30 + active_force = 30 }, /obj/item/nullrod/claymore/katana{ damtype = "stamina"; @@ -898,9 +898,9 @@ /area/centcom/central_command_areas/holding) "vr" = ( /obj/structure/rack, -/obj/item/nullrod/claymore/saber{ +/obj/item/melee/energy/sword/nullrod{ damtype = "stamina"; - force = 30; + active_force = 30; pixel_x = 5; pixel_y = -3 }, diff --git a/_maps/virtual_domains/beach_bar.dmm b/_maps/virtual_domains/beach_bar.dmm index b81ec5224f45..e3e4a09e96b8 100644 --- a/_maps/virtual_domains/beach_bar.dmm +++ b/_maps/virtual_domains/beach_bar.dmm @@ -806,8 +806,9 @@ /turf/open/misc/beach/sand, /area/virtual_domain/fullbright) "Kd" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/sandstone, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/plating, /area/virtual_domain/fullbright) "KH" = ( /obj/structure/mineral_door/wood{ @@ -1609,7 +1610,7 @@ LD LD Fn Fn -Kd +Fn Fn Fn bQ @@ -1652,7 +1653,7 @@ pT LD EC LD -pT +Kd PM wD wD diff --git a/_maps/virtual_domains/fredingtonfastingbear.dmm b/_maps/virtual_domains/fredingtonfastingbear.dmm index 67b3965ba961..e2c7be33fe3d 100644 --- a/_maps/virtual_domains/fredingtonfastingbear.dmm +++ b/_maps/virtual_domains/fredingtonfastingbear.dmm @@ -131,7 +131,7 @@ /obj/effect/decal/cleanable/blood/tracks{ dir = 4 }, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron/kitchen, /area/virtual_domain) "hq" = ( @@ -187,7 +187,7 @@ /turf/open/floor/iron/kitchen, /area/virtual_domain) "kL" = ( -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/item/light/tube/broken, /turf/open/floor/iron/kitchen, /area/virtual_domain) @@ -279,7 +279,7 @@ /turf/open/floor/iron/kitchen, /area/virtual_domain) "pr" = ( -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron/kitchen, /area/virtual_domain) "pK" = ( @@ -481,7 +481,7 @@ /area/virtual_domain) "wM" = ( /obj/item/toy/balloon/heart, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/structure/fake_stairs/wood{ dir = 1 }, @@ -585,7 +585,7 @@ "Ct" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron/kitchen, /area/virtual_domain) "Dx" = ( @@ -622,7 +622,7 @@ /area/virtual_domain/protected_space/fullbright) "Fy" = ( /obj/effect/decal/cleanable/confetti, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/structure/fake_stairs/wood, /turf/open/floor/iron/kitchen, /area/virtual_domain) @@ -635,7 +635,7 @@ /turf/open/floor/iron/kitchen, /area/virtual_domain) "Gn" = ( -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /obj/effect/decal/cleanable/food/tomato_smudge, /obj/effect/landmark/bitrunning/cache_spawn, /turf/open/floor/iron/kitchen/small, @@ -851,13 +851,13 @@ /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/item/toy/balloon/heart, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/iron/kitchen, /area/virtual_domain) "RB" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/effect/decal/cleanable/glass/plastitanium, /turf/open/floor/iron/kitchen, /area/virtual_domain) @@ -874,7 +874,7 @@ "SE" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /obj/effect/decal/cleanable/glass/plastitanium, /turf/open/floor/iron/kitchen, /area/virtual_domain) @@ -947,7 +947,7 @@ /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/iron/kitchen, /area/virtual_domain) "VS" = ( diff --git a/_maps/virtual_domains/heretic_hunt.dmm b/_maps/virtual_domains/heretic_hunt.dmm new file mode 100644 index 000000000000..33101a823a79 --- /dev/null +++ b/_maps/virtual_domains/heretic_hunt.dmm @@ -0,0 +1,2373 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"am" = ( +/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/virtual_domain) +"aR" = ( +/obj/structure/grille/broken, +/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/virtual_domain) +"aY" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"br" = ( +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"bC" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"bV" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/iron, +/area/virtual_domain) +"ck" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain) +"cz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/exotic/antag_gear_weak, +/obj/effect/spawner/random/exotic/syndie, +/turf/open/floor/iron, +/area/virtual_domain) +"cS" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/mob/living/basic/pet/cat/_proc{ + faction = list("neutral", "vdom_fake_crew") + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"dh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/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/heretic_rust, +/area/virtual_domain) +"di" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"ey" = ( +/obj/modular_map_root/safehouse{ + key = "maintsafe" + }, +/turf/template_noop, +/area/virtual_domain/safehouse) +"eT" = ( +/obj/effect/baseturf_helper/virtual_domain, +/turf/closed/indestructible/binary, +/area/virtual_domain) +"eV" = ( +/obj/machinery/stasis{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"fd" = ( +/obj/structure/frame/computer{ + dir = 1; + anchored = 1 + }, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"fl" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box{ + pixel_y = 10; + pixel_x = 2 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"fn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/visible_heretic_influence, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"fq" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"fA" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/shard/titanium, +/obj/item/melee/rune_carver, +/obj/item/melee/rune_carver{ + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"fL" = ( +/obj/structure/table, +/obj/item/storage/medkit/emergency, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"ge" = ( +/obj/structure/table, +/obj/structure/chem_separator{ + pixel_y = 11 + }, +/obj/item/reagent_containers/applicator/pill/psicodine, +/obj/item/reagent_containers/applicator/pill/stimulant{ + pixel_y = -2; + pixel_x = -3 + }, +/obj/item/reagent_containers/applicator/pill/probital{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/virtual_domain) +"gp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/iron, +/area/virtual_domain) +"gz" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"hp" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plastic, +/area/virtual_domain) +"hy" = ( +/obj/machinery/light/small/broken/directional/west, +/mob/living/basic/heretic_summon/raw_prophet, +/turf/open/floor/plating, +/area/virtual_domain) +"hK" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/obj/item/pickaxe/rusted, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"hP" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/spawner/random/medical/patient_stretcher, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"hS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/flashlight/flare{ + icon_state = "flare-on"; + light_on = 1 + }, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"hV" = ( +/obj/structure/frame/computer{ + dir = 1; + anchored = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"hY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"iu" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"iw" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/sign/warning/electric_shock/directional/north, +/turf/open/floor/iron, +/area/virtual_domain) +"iy" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/virtual_domain) +"iH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plating, +/area/virtual_domain) +"iL" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/storage/medkit{ + pixel_y = -3 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"iN" = ( +/turf/template_noop, +/area/virtual_domain/safehouse) +"iQ" = ( +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"iV" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/multitool{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"jR" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/iron, +/area/virtual_domain) +"ki" = ( +/mob/living/basic/fake_crewman/engi/mod, +/turf/open/floor/iron, +/area/virtual_domain) +"kw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"kQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/virtual_domain) +"lG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/plastic, +/area/virtual_domain) +"mn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/syringe/contraband/bath_salts, +/obj/item/reagent_containers/syringe/contraband/methamphetamine{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/reagent_containers/syringe/contraband/morphine{ + pixel_y = -3; + pixel_x = -2 + }, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"mu" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/folder/red, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"mW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"mX" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"nf" = ( +/obj/structure/cable, +/turf/closed/indestructible/reinforced, +/area/virtual_domain) +"nh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"nM" = ( +/obj/effect/visible_heretic_influence, +/turf/open/floor/iron, +/area/virtual_domain) +"nU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain) +"oa" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/storage/medkit{ + pixel_y = 10; + pixel_x = 5 + }, +/obj/effect/spawner/random/medical/supplies, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"oc" = ( +/obj/effect/visible_heretic_influence, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"ok" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/item/storage/belt/unfathomable_curio, +/turf/open/floor/iron, +/area/virtual_domain) +"oD" = ( +/mob/living/basic/fake_crewman/assistant, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/restraints/handcuffs/cable/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/medical/gauze/improvised{ + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/virtual_domain) +"oL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"oQ" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/storage/medkit/regular{ + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"pd" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/virtual_domain) +"pe" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"pm" = ( +/obj/effect/spawner/random/clothing/costume, +/obj/structure/rack, +/turf/open/floor/plating, +/area/virtual_domain) +"pv" = ( +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/iron, +/area/virtual_domain) +"pM" = ( +/mob/living/basic/fake_crewman/assistant/alt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain) +"pQ" = ( +/obj/effect/spawner/random/engineering/canister, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/virtual_domain) +"rq" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/suit_storage_unit, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"rt" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/syringe/epinephrine, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"rC" = ( +/turf/closed/wall/heretic_rust, +/area/virtual_domain) +"rP" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/plating, +/area/virtual_domain) +"sb" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"sd" = ( +/obj/item/storage/test_tube_rack, +/obj/structure/table, +/turf/open/floor/plating, +/area/virtual_domain) +"sl" = ( +/obj/structure/steam_vent, +/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/virtual_domain) +"sy" = ( +/obj/effect/decal/cleanable/dirt/dust, +/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/virtual_domain) +"sL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"sT" = ( +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"sY" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"ta" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/virtual_domain) +"tg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/mopbucket, +/turf/open/floor/plating, +/area/virtual_domain) +"ts" = ( +/obj/effect/spawner/random/bureaucracy/briefcase, +/obj/effect/spawner/random/trash/box, +/turf/open/floor/plating, +/area/virtual_domain) +"uh" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"uj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plastic, +/area/virtual_domain) +"uz" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"uS" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/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/virtual_domain) +"vh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"vn" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/virtual_domain) +"vt" = ( +/obj/machinery/medical_kiosk, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"vG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/virtual_domain) +"vO" = ( +/obj/machinery/defibrillator_mount/directional/west, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/stack/medical/gauze/improvised, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"vP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"vR" = ( +/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/virtual_domain) +"wK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"wM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/wall_healer/free/directional/west, +/turf/open/floor/plastic, +/area/virtual_domain) +"wQ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/obj/item/flashlight/flare{ + icon_state = "flare-on"; + light_on = 1 + }, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"xa" = ( +/obj/machinery/stasis{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"xg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"xz" = ( +/obj/effect/baseturf_helper/virtual_domain, +/turf/template_noop, +/area/virtual_domain/safehouse) +"xA" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"xC" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"xK" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"xQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/iron, +/area/virtual_domain) +"yR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"yW" = ( +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/plastic, +/area/virtual_domain) +"zd" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/virtual_domain) +"zp" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"zN" = ( +/mob/living/basic/fake_crewman/boss/ce, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"AA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"AE" = ( +/obj/structure/closet/emcloset, +/obj/item/storage/medkit/emergency, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"AO" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/item/melee/baton/security/loaded, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"AV" = ( +/turf/open/floor/iron, +/area/virtual_domain) +"Bz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"BW" = ( +/obj/effect/decal/cleanable/ash/large, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Cu" = ( +/obj/structure/frame/computer{ + pixel_y = 0; + dir = 4; + anchored = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"CT" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/virtual_domain) +"Dh" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 1 + }, +/obj/item/storage/belt/security/webbing{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/pen/fountain{ + pixel_x = 15; + pixel_y = 2 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"DC" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/obj/item/ammo_box/speedloader/c38/flare, +/obj/item/ammo_box/speedloader/c38, +/obj/item/gun/ballistic/revolver/c38, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"El" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"EB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain) +"EI" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/fire{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"EL" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"EV" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"Fj" = ( +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Fl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"Fv" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/reagent_containers/cup/beaker/eldritch, +/turf/open/floor/plating, +/area/virtual_domain) +"FH" = ( +/obj/machinery/defibrillator_mount/directional/west, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"FR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plastic, +/area/virtual_domain) +"Gj" = ( +/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/heretic_rust, +/area/virtual_domain) +"Gt" = ( +/obj/structure/table/glass, +/obj/item/folder/yellow, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Gv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron, +/area/virtual_domain) +"GO" = ( +/obj/structure/frame/computer{ + pixel_y = 0; + dir = 4; + anchored = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"GQ" = ( +/obj/effect/spawner/random/trash/bin, +/obj/item/shard/plasma, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/spawner/random/trash/cigpack, +/turf/open/floor/plating, +/area/virtual_domain) +"GZ" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Ho" = ( +/obj/structure/sign/warning/electric_shock/directional/east, +/turf/open/floor/plating, +/area/virtual_domain) +"Hy" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plastic, +/area/virtual_domain) +"If" = ( +/mob/living/basic/fake_crewman/boss/cmo, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Ih" = ( +/obj/structure/closet/firecloset, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"Iu" = ( +/mob/living/basic/fake_crewman/boss/hos, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"IH" = ( +/obj/item/flashlight/flare/candle/infinite{ + icon_state = "candle2_lit"; + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"IJ" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plastic, +/area/virtual_domain) +"IS" = ( +/mob/living/basic/fake_crewman/engi, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"IX" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Jj" = ( +/obj/effect/heretic_rune/big, +/obj/effect/landmark/bitrunning/loot_signal, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Jo" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Jp" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Jt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/iron, +/area/virtual_domain) +"JA" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue/end, +/obj/item/healthanalyzer, +/turf/open/floor/plastic, +/area/virtual_domain) +"JD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/gun/ballistic/rifle/lionhunter, +/obj/item/ammo_box/speedloader/strilka310/lionhunter, +/turf/open/floor/iron, +/area/virtual_domain) +"JG" = ( +/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/virtual_domain) +"JP" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Kd" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/eldritch_potion/wounded, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/item/eldritch_potion/wounded, +/obj/item/eldritch_potion/wounded, +/turf/open/floor/plastic, +/area/virtual_domain) +"Km" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"KR" = ( +/turf/open/floor/plastic, +/area/virtual_domain) +"KS" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/plating, +/area/virtual_domain) +"KT" = ( +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"La" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/virtual_domain) +"Lc" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Lj" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/virtual_domain) +"Lp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/iv_drip, +/turf/open/floor/plastic, +/area/virtual_domain) +"LB" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/virtual_domain) +"LZ" = ( +/obj/effect/visible_heretic_influence, +/turf/open/floor/plastic, +/area/virtual_domain) +"Mg" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"MF" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain) +"MN" = ( +/obj/item/flashlight/flare/candle/infinite{ + icon_state = "candle2_lit"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain) +"Ni" = ( +/obj/item/flashlight/flare/candle/infinite{ + icon_state = "candle2_lit"; + pixel_x = 10; + pixel_y = 14 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain) +"Nm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/warning/electric_shock/directional/north, +/turf/open/floor/iron, +/area/virtual_domain) +"Np" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron, +/area/virtual_domain) +"Nz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/virtual_domain) +"NE" = ( +/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/heretic_rust, +/area/virtual_domain) +"NN" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"NO" = ( +/mob/living/basic/fake_crewman/md, +/turf/open/floor/plastic, +/area/virtual_domain) +"Ot" = ( +/obj/machinery/light/small/broken/directional/east, +/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/heretic_rust, +/area/virtual_domain) +"OX" = ( +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Po" = ( +/turf/closed/indestructible/fakedoor/engineering, +/area/virtual_domain) +"Pr" = ( +/turf/closed/indestructible/binary, +/area/virtual_domain) +"PB" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue/end{ + dir = 1 + }, +/obj/item/stack/medical/gauze/improvised, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"PJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/old, +/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/heretic_rust, +/area/virtual_domain) +"Qj" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/virtual_domain) +"Qk" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"QP" = ( +/obj/item/flashlight/flare/torch, +/obj/item/flashlight/flare/torch, +/obj/item/clothing/suit/hooded/cultrobes/eldritch/rust, +/obj/item/melee/sickly_blade, +/obj/structure/rack, +/turf/template_noop, +/area/virtual_domain/safehouse) +"Rd" = ( +/obj/item/flashlight/flare{ + icon_state = "flare-on"; + light_on = 1 + }, +/turf/open/floor/plating, +/area/virtual_domain) +"Rg" = ( +/obj/item/flashlight/flare/candle/infinite{ + icon_state = "candle2_lit"; + pixel_x = 4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/virtual_domain) +"Rl" = ( +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Ro" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"Rx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"RO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/mess, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/virtual_domain) +"RQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"RY" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"RZ" = ( +/obj/structure/closet/firecloset, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/virtual_domain) +"Sb" = ( +/mob/living/basic/fake_crewman/md, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"Sf" = ( +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/virtual_domain) +"Sn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Ss" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/virtual_domain) +"SJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/sign/warning/electric_shock/directional/west, +/turf/open/floor/iron, +/area/virtual_domain) +"Tv" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Ua" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron, +/area/virtual_domain) +"Ul" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/virtual_domain) +"Va" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"Vh" = ( +/turf/open/floor/plating, +/area/virtual_domain) +"Vj" = ( +/obj/structure/table/reinforced, +/turf/open/floor/iron, +/area/virtual_domain) +"Vr" = ( +/turf/closed/indestructible/fakedoor/glass_airlock, +/area/virtual_domain) +"Vs" = ( +/obj/machinery/light/small/broken/directional/east, +/mob/living/basic/heretic_summon/raw_prophet, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Vx" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/reagent_containers/hypospray{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"VS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/red/dim/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/plating/heretic_rust, +/area/virtual_domain) +"VW" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/structure/tank_dispenser, +/obj/structure/fireaxecabinet/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"VX" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/bottle/salglu_solution, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"Wk" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron, +/area/virtual_domain) +"Wo" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/closet/crate/bin, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"Wv" = ( +/obj/effect/spawner/random/trash/caution_sign, +/obj/structure/grille/broken, +/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/heretic_rust, +/area/virtual_domain) +"WI" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/virtual_domain) +"WL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/spawner/random/exotic/antag_gear, +/turf/open/floor/iron, +/area/virtual_domain) +"Xl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"Xv" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"XD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/plastic, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"XK" = ( +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/plating, +/area/virtual_domain) +"Yj" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/virtual_domain) +"Yy" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/storage/medkit/brute{ + pixel_y = -8 + }, +/obj/item/reagent_containers/cup/bottle/salglu_solution{ + pixel_y = 11; + pixel_x = -3 + }, +/obj/item/reagent_containers/cup/bottle{ + pixel_y = 13; + pixel_x = 3 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"YL" = ( +/mob/living/basic/fake_crewman/sec, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Zb" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/blastoff_ampoule{ + pixel_x = -3 + }, +/turf/open/floor/plating, +/area/virtual_domain) +"Zj" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Zt" = ( +/turf/closed/indestructible/reinforced, +/area/virtual_domain) +"Zu" = ( +/turf/closed/wall, +/area/virtual_domain) +"ZM" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/virtual_domain) +"ZN" = ( +/turf/closed/indestructible/fakedoor, +/area/virtual_domain) +"ZT" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/reagent_containers/cup/bottle/atropine{ + pixel_y = 3; + pixel_x = -13 + }, +/obj/item/reagent_containers/applicator/patch/synthflesh, +/obj/item/reagent_containers/applicator/patch/synthflesh{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plastic, +/area/virtual_domain) + +(1,1,1) = {" +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +eT +"} +(2,1,1) = {" +Pr +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Pr +"} +(3,1,1) = {" +Pr +Zt +Zt +Zt +Lj +Vr +Vr +Lj +Zu +Zu +rC +rC +rC +Zu +Zt +Zt +Zt +Zt +Zt +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Zt +Zt +Zt +Pr +"} +(4,1,1) = {" +Pr +Zt +Zt +Zt +vP +yR +yR +Bz +Zu +pQ +BW +nU +GQ +Zu +Zu +rC +rC +Zu +rC +Zu +iN +iN +iN +iN +iN +ey +Zu +Zt +Zt +Zt +Pr +"} +(5,1,1) = {" +Pr +Zt +Zt +Zt +iw +ki +sb +Gv +Zu +pm +wK +KT +tg +rC +hK +hy +nU +br +Vh +Zu +iN +iN +QP +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(6,1,1) = {" +Pr +Zt +sb +Lj +Va +Vj +fl +Km +Zu +Zu +La +rC +rC +Zu +EB +IH +KT +MN +vn +Qj +iN +iN +QP +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(7,1,1) = {" +Pr +Zt +sb +Po +sb +aY +Qk +vR +uS +sl +am +dh +Wv +uS +NE +bC +Jj +MF +Sn +Vh +iN +iN +QP +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(8,1,1) = {" +Pr +Zt +sb +Lj +AA +Vj +uh +iy +Zu +Zu +Zu +LB +Zu +rC +sy +Ni +xC +Rg +Vh +pd +iN +iN +iN +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(9,1,1) = {" +Pr +Zt +nf +Zt +Nm +AV +IS +iy +rq +Zu +Sf +Ss +Zb +rC +JG +Ot +sy +Vs +Vh +rC +iN +iN +iN +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(10,1,1) = {" +Pr +Zt +fq +Zt +Np +nM +sb +iy +VW +Zu +JP +wQ +Zu +Zu +rC +Zu +uS +WI +rC +Zu +iN +iN +iN +iN +iN +xz +Zu +Zt +Zt +Zt +Pr +"} +(11,1,1) = {" +Pr +Zt +Zt +Zt +gp +Ih +sb +oL +rq +Zu +ge +Vh +rC +rt +oD +Zu +JG +MF +KS +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Zt +Zt +Zt +Pr +"} +(12,1,1) = {" +Pr +Zt +Zt +Zt +Zu +vG +pv +vG +Zu +Zu +sd +nh +Yj +XD +mn +rC +NE +RO +IX +Zu +GO +Cu +Tv +Zu +Zu +Zu +Zt +Zt +Zt +Zt +Pr +"} +(13,1,1) = {" +Pr +Zt +Zt +Zt +Zu +mW +iu +Km +iV +Zu +pM +KT +Zu +rC +Zu +Zu +JG +hS +Jp +Zu +pe +If +cS +wM +Kd +Zu +Zt +Zt +Zt +Zt +Pr +"} +(14,1,1) = {" +Pr +Zt +Zt +Zu +Zu +Gt +Jo +AV +EI +Zu +ts +EB +Yj +wK +rP +Zu +Gj +KT +iH +Zu +RY +Xv +Rl +hp +Vx +Zu +Zt +Zt +Zt +Zt +Pr +"} +(15,1,1) = {" +Pr +Zt +Zt +Zu +iQ +Fj +zN +AV +fA +Zu +Zu +Zu +Zu +Nz +Fv +rC +dh +fn +ZM +Zu +Rx +Ro +Ro +hp +ZT +Zu +Zt +Zt +Zt +Zt +Pr +"} +(16,1,1) = {" +Pr +Zt +Zt +Zu +OX +Zj +sY +bV +Zu +Zu +ok +Ua +Zu +Zu +Zu +rC +sy +Ho +zd +Zu +Rx +KR +KR +hp +xA +Zu +Zt +Zt +Zt +Zt +Pr +"} +(17,1,1) = {" +Pr +Zt +Zt +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Fl +Dh +EL +fd +Zu +rC +kQ +rC +Zu +Zu +vG +yW +vG +Zu +Zu +Zu +Zu +Zu +Zu +Zt +Pr +"} +(18,1,1) = {" +Pr +Zt +Zt +Zu +Jt +JD +cz +WL +xg +vG +di +mu +Iu +hV +Zu +AE +JG +Zu +Zu +FH +eV +sT +xa +vO +Zu +iL +oa +oQ +Zu +Zt +Pr +"} +(19,1,1) = {" +Pr +Zt +Zt +Zu +AV +YL +Lc +Lc +xg +pv +AV +xK +Fj +DC +Zu +RZ +dh +Zu +FR +vh +vh +Xl +vh +vh +Zu +vh +vh +vh +Zu +Zt +Pr +"} +(20,1,1) = {" +Pr +Zt +Zt +Zu +AV +mX +AO +uz +xg +vG +kw +GZ +Mg +hY +Zu +Zu +aR +Zu +KR +KR +NO +sT +KR +KR +Hy +KR +LZ +KR +Zu +Zt +Pr +"} +(21,1,1) = {" +Pr +Zt +Zt +Zu +ta +mX +fL +uz +gz +Zu +Zu +vG +Zu +Zu +Zu +Zu +dh +uS +uj +uj +PB +vt +JA +KR +Ul +KR +KR +IJ +Zu +Zt +Pr +"} +(22,1,1) = {" +Pr +Zt +Zt +Zu +AV +mX +zp +uz +xg +sL +SJ +xg +xQ +Zu +ck +Vh +NE +Zu +KR +KR +KR +Sb +KR +KR +Hy +KR +KR +KR +Zu +Zt +Pr +"} +(23,1,1) = {" +Pr +Zt +Zt +Zu +AV +Lc +Lc +YL +sb +sb +sb +oc +vR +uS +JG +PJ +VS +Zu +Lp +hp +hp +RQ +hp +hp +Zu +hp +hp +lG +Zu +Zt +Pr +"} +(24,1,1) = {" +Pr +Zt +Zt +Zu +Wk +jR +CT +Wk +EV +Wk +EV +Wk +EV +Zu +rC +Rd +XK +Zu +Zu +hP +El +El +El +Wo +Zu +VX +Yy +NN +Zu +Zt +Pr +"} +(25,1,1) = {" +Pr +Zt +Zt +Zu +Zu +Zu +Zu +Zu +Lj +ZN +Lj +ZN +Lj +Zu +Zu +rC +rC +Zu +Zu +Lj +ZN +Lj +ZN +Lj +Zu +Zu +Zu +Zu +Zu +Zt +Pr +"} +(26,1,1) = {" +Pr +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Pr +"} +(27,1,1) = {" +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +"} diff --git a/_maps/virtual_domains/island_brawl.dmm b/_maps/virtual_domains/island_brawl.dmm index afb11be05edd..07003db1aa57 100644 --- a/_maps/virtual_domains/island_brawl.dmm +++ b/_maps/virtual_domains/island_brawl.dmm @@ -2551,7 +2551,7 @@ /turf/open/floor/wood, /area/virtual_domain) "Gp" = ( -/obj/structure/no_effect_signpost{ +/obj/structure/signpost{ pixel_y = 6; desc = "Northwest: Hotel. South: Seaside Bar. East: Dressing Rooms." }, diff --git a/_maps/virtual_domains/meta_central.dmm b/_maps/virtual_domains/meta_central.dmm index 83bf0966d156..e7f6e003b354 100644 --- a/_maps/virtual_domains/meta_central.dmm +++ b/_maps/virtual_domains/meta_central.dmm @@ -677,6 +677,7 @@ dir = 1 }, /obj/machinery/light/directional/north, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron, /area/virtual_domain) "fz" = ( @@ -2377,6 +2378,7 @@ dir = 8 }, /obj/item/trash/can/food/pine_nuts, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron, /area/virtual_domain) "tM" = ( @@ -3779,8 +3781,11 @@ /turf/open/floor/iron, /area/virtual_domain) "FF" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, /area/virtual_domain) "FG" = ( /obj/effect/turf_decal/trimline/green/filled/corner, @@ -3859,6 +3864,7 @@ /obj/structure/fluff/paper/stack{ dir = 6 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron, /area/virtual_domain) "Gk" = ( @@ -3928,6 +3934,7 @@ /obj/structure/closet/crate/cardboard/mothic{ pixel_y = 8 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron, /area/virtual_domain) "GQ" = ( @@ -5165,6 +5172,7 @@ dir = 8 }, /obj/item/trash/energybar, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron, /area/virtual_domain) "RB" = ( @@ -5173,6 +5181,7 @@ }, /obj/structure/holosign/barrier, /obj/structure/marker_beacon/burgundy, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron, /area/virtual_domain) "RD" = ( @@ -5659,7 +5668,7 @@ /obj/machinery/door/airlock{ name = "Central Emergency Storage" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/virtual_domain) "VP" = ( @@ -6683,7 +6692,7 @@ dX XK tq tI -FF +uS mq oA wj @@ -7019,7 +7028,7 @@ JP ul tq Rz -FF +uS iI MM Vr @@ -7171,7 +7180,7 @@ Yo pH pK ep -FF +uS GJ FR Hd @@ -7208,8 +7217,8 @@ ps Nl YG iH +uS FF -dd FK Of qu @@ -7496,7 +7505,7 @@ ps Ht rJ VG -FF +uS RB qL jd @@ -7555,7 +7564,7 @@ oH Mj gE xI -FF +uS Gi Hd aC @@ -8083,7 +8092,7 @@ uS uS oo uS -FF +uS fr DV MN diff --git a/_maps/virtual_domains/syndicate_assault.dmm b/_maps/virtual_domains/syndicate_assault.dmm index e1258edf0418..e20438e1c412 100644 --- a/_maps/virtual_domains/syndicate_assault.dmm +++ b/_maps/virtual_domains/syndicate_assault.dmm @@ -115,6 +115,7 @@ /obj/structure/table/reinforced, /obj/item/gun/ballistic/automatic/l6_saw/unrestricted, /obj/item/ammo_box/magazine/m7mm, +/obj/structure/sign/departments/cargo/directional/north, /turf/open/floor/mineral/plastitanium, /area/virtual_domain/protected_space) "da" = ( @@ -122,8 +123,8 @@ /turf/open/floor/plastic, /area/virtual_domain) "dd" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall/plastitanium/syndicate, +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/mineral/plastitanium, /area/virtual_domain) "di" = ( /obj/machinery/power/terminal{ @@ -222,10 +223,6 @@ /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/plastitanium/syndicate, -/area/virtual_domain/protected_space) "iU" = ( /obj/structure/closet/crate/secure/gear{ req_access = list("syndicate") @@ -318,7 +315,6 @@ /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; @@ -1006,6 +1002,10 @@ /obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/virtual_domain) +"PQ" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/virtual_domain) "PR" = ( /obj/machinery/door/password/voice/sfc{ password = null @@ -2971,17 +2971,17 @@ qx ru uP uP +ru dd uP uP -uP Ox aw uP uP uP -uP -dd +PQ +ru uP Qg ru @@ -2992,7 +2992,7 @@ qx qx qx qx -iL +zN cZ dp dp diff --git a/_maps/virtual_domains/xeno_nest.dmm b/_maps/virtual_domains/xeno_nest.dmm index 895ba5e84c37..0e6cf4a740f1 100644 --- a/_maps/virtual_domains/xeno_nest.dmm +++ b/_maps/virtual_domains/xeno_nest.dmm @@ -141,7 +141,7 @@ /area/virtual_domain/fullbright) "F" = ( /obj/structure/table/greyscale, -/obj/item/gun/energy/xray, +/obj/item/gun/energy/laser/xray, /obj/item/gun/energy/laser{ pixel_x = 4; pixel_y = -6 diff --git a/_maps/westfieldmall.json b/_maps/westfieldmall.json new file mode 100644 index 000000000000..c6c0f430b34a --- /dev/null +++ b/_maps/westfieldmall.json @@ -0,0 +1,90 @@ +{ + "version": 1, + "map_name": "Westfield Mall", + "map_path": "map_files/Vampire", + "map_file": "westfield_mall.dmm", + "space_ruin_levels": 0, + "space_empty_levels": 0, + "planetary": 1, + "ignored_unit_tests": [ + "/datum/unit_test/cargo_dep_order_locations", + "/datum/unit_test/maptest_job_roundstart_spawnpoints", + "/datum/unit_test/spy_bounty", + "/datum/unit_test/space_dragon_expiration", + "/datum/unit_test/maptest_mapload_space_verification" + ], + "traits": [ + { + "Up": 1, + "Baseturf": "/turf/open/misc/dirt/vamp" + }, + { + "Up": 1, + "Down": -1, + "Baseturf": "/turf/open/misc/dirt/vamp" + }, + { + "Up": 1, + "Down": -1, + "Baseturf": "/turf/open/openspace" + }, + { + "Down": -1, + "Baseturf": "/turf/open/openspace" + }, + { + "Baseturf": "/turf/open/openspace" + } + ], + "job_changes": { + "Graveyard Keeper": { + "spawn_positions": 0, + "total_positions": 0 + }, + "Street Janitor": { + "spawn_positions": 4, + "total_positions": 4 + }, + "Taxi Driver": { + "spawn_positions": 0, + "total_positions": 0 + }, + "Sweeper": { + "spawn_positions": 2, + "total_positions": 2 + }, + "Brusier": { + "spawn_positions": 4, + "total_positions": 4 + }, + "Tapster": { + "spawn_positions": 0, + "total_positions": 0 + }, + "Priest": { + "spawn_positions": 0, + "total_positions": 0 + }, + "Doctor": { + "spawn_positions": 3, + "total_positions": 3 + }, + "La Squadra": { + "spawn_positions": 5, + "total_positions": 5 + }, + "La Famiglia": { + "spawn_positions": 5, + "total_positions": 5 + }, + "Club Worker": { + "spawn_positions": 0, + "total_positions": 0 + }, + "Emergency Dispatcher": { + "spawn_positions": 1, + "total_positions": 1 + } + }, + "max_npcs": 60 +} diff --git a/biome.json b/biome.json index 8f792f2b57b0..1e09e2cc171d 100644 --- a/biome.json +++ b/biome.json @@ -20,7 +20,8 @@ "!**/node_modules", "!tgui/public", "tgui/public/tgui.html", - "!tgui/packages/tgui-setup/helpers.js" + "!tgui/packages/tgui-setup/helpers.js", + "!**/bun.lock" ] }, "formatter": { diff --git a/code/__DEFINES/DNA.dm b/code/__DEFINES/DNA.dm index 7a32eef0659c..417aad431b54 100644 --- a/code/__DEFINES/DNA.dm +++ b/code/__DEFINES/DNA.dm @@ -57,7 +57,7 @@ #define FEATURE_MUTANT_COLOR "mcolor" #define FEATURE_ETHEREAL_COLOR "ethcolor" #define FEATURE_EARS "ears" -#define FEATURE_TAIL "tail_cat" +#define FEATURE_TAIL_CAT "tail_cat" #define FEATURE_TAIL_LIZARD "tail_lizard" #define FEATURE_TAIL_FISH "fish_tail" #define FEATURE_SNOUT "snout" @@ -73,6 +73,7 @@ // Other #define FEATURE_WINGS "wings" +#define FEATURE_WINGS_OPEN "wingsopen" #define FEATURE_TAIL_MONKEY "tail_monkey" #define FEATURE_TAIL_XENO "tail_xeno" #define FEATURE_TAILSPINES "tailspines" // Different from regular spines, these appear on tails @@ -84,14 +85,22 @@ #define COPY_DNA_SPECIES (1<<1) ///flag for the transfer_flag argument from dna/proc/copy_dna(). This one copies the mutations. #define COPY_DNA_MUTATIONS (1<<2) +// DARKPACK EDIT ADD START - Obfuscate Discipline, flag for the transfer_flag argument +//flag for the transfer_flag argument from dna/proc/copy_dna(). This one copies the blood type +#define COPY_DNA_BLOOD_TYPE (1<<4) +// DARKPACK EDIT ADD END //organ slots #define ORGAN_SLOT_ADAMANTINE_RESONATOR "adamantine_resonator" #define ORGAN_SLOT_APPENDIX "appendix" #define ORGAN_SLOT_BRAIN "brain" -#define ORGAN_SLOT_BRAIN_CEREBELLUM "brain_antidrop" -#define ORGAN_SLOT_BRAIN_CNS "brain_antistun" +/// Brain implants that affect the mob's motor control (grabbing, moving, attacking) +#define ORGAN_SLOT_BRAIN_CEREBELLUM "brain_motorcontrol" +/// Brain implants that affect the mob's sensory systems (pain, vision, hearing, etc) +#define ORGAN_SLOT_BRAIN_CNS "brain_cns" +/// Brain implants that affect the mob's memory and cognition (skills, knowledge, etc) +#define ORGAN_SLOT_BRAIN_HIPPOCAMPUS "brain_memory" #define ORGAN_SLOT_BREATHING_TUBE "breathing_tube" #define ORGAN_SLOT_EARS "ears" #define ORGAN_SLOT_EYES "eye_sight" diff --git a/code/__DEFINES/__globals.dm b/code/__DEFINES/__globals.dm index 3639d5592553..9f3ea839e76e 100644 --- a/code/__DEFINES/__globals.dm +++ b/code/__DEFINES/__globals.dm @@ -49,6 +49,12 @@ /// Create a typed list global that is initialized as an empty list #define GLOBAL_LIST_EMPTY_TYPED(X, Typepath) GLOBAL_LIST_INIT_TYPED(X, Typepath, list()) +/// Create an alist global with an initializer expression +#define GLOBAL_ALIST_INIT(X, InitValue) GLOBAL_RAW(/alist/##X); GLOBAL_MANAGED(X, InitValue) + +// Create an alist global that is initialized as an empty list +#define GLOBAL_ALIST_EMPTY(X) GLOBAL_ALIST_INIT(X, alist()) + /// Create a typed global with an initializer expression #define GLOBAL_DATUM_INIT(X, Typepath, InitValue) GLOBAL_RAW(Typepath/##X); GLOBAL_MANAGED(X, InitValue) diff --git a/code/__DEFINES/_flags.dm b/code/__DEFINES/_flags.dm index 04929f16f244..53b1514ed6af 100644 --- a/code/__DEFINES/_flags.dm +++ b/code/__DEFINES/_flags.dm @@ -37,29 +37,27 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204 #define ALLOW_DARK_PAINTS_1 (1<<8) /// Should this object be unpaintable? #define UNPAINTABLE_1 (1<<9) -/// Is this atom on top of another atom, and as such has click priority? -#define IS_ONTOP_1 (1<<10) /// Is this atom immune to being dusted by the supermatter? -#define SUPERMATTER_IGNORES_1 (1<<11) +#define SUPERMATTER_IGNORES_1 (1<<10) /// If a turf can be made dirty at roundstart. This is also used in areas. -#define CAN_BE_DIRTY_1 (1<<12) +#define CAN_BE_DIRTY_1 (1<<11) /// Should we use the initial icon for display? Mostly used by overlay only objects -#define HTML_USE_INITAL_ICON_1 (1<<13) +#define HTML_USE_INITAL_ICON_1 (1<<12) /// Can players recolor this in-game via vendors (and maybe more if support is added)? -#define IS_PLAYER_COLORABLE_1 (1<<14) +#define IS_PLAYER_COLORABLE_1 (1<<13) /// Whether or not this atom has contextual screentips when hovered OVER -#define HAS_CONTEXTUAL_SCREENTIPS_1 (1<<15) +#define HAS_CONTEXTUAL_SCREENTIPS_1 (1<<14) /// Whether or not this atom is storing contents for a disassociated storage object -#define HAS_DISASSOCIATED_STORAGE_1 (1<<16) +#define HAS_DISASSOCIATED_STORAGE_1 (1<<15) /// If this atom has experienced a decal element "init finished" sourced appearance update /// We use this to ensure stacked decals don't double up appearance updates for no reason /// 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) +#define DECAL_INIT_UPDATE_EXPERIENCED_1 (1<<16) /// This atom always returns its turf in get_turf_pixel instead of the turf from its offsets -#define IGNORE_TURF_PIXEL_OFFSET_1 (1<<18) +#define IGNORE_TURF_PIXEL_OFFSET_1 (1<<17) /// This atom does not need to generate its own preview icon for GAGS -#define NO_NEW_GAGS_PREVIEW_1 (1<<19) +#define NO_NEW_GAGS_PREVIEW_1 (1<<18) // Update flags for [/atom/proc/update_appearance] /// Update the atom's name @@ -102,52 +100,55 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204 /// This atom is a pseudo-floor that blocks map generation's checkPlaceAtom() from placing things like trees ontop of it. #define TURF_BLOCKS_POPULATE_TERRAIN_FLORAFEATURES (1<<8) - ////////////////Area flags\\\\\\\\\\\\\\ /// If it's a valid territory for cult summoning or the CRAB-17 phone to spawn #define VALID_TERRITORY (1<<0) /// If blobs can spawn there and if it counts towards their score. #define BLOBS_ALLOWED (1<<1) -/// If mining tunnel generation is allowed in this area -#define CAVES_ALLOWED (1<<2) -/// If flora are allowed to spawn in this area randomly through tunnel generation -#define FLORA_ALLOWED (1<<3) -/// If mobs can be spawned by natural random generation -#define MOB_SPAWN_ALLOWED (1<<4) -/// If megafauna can be spawned by natural random generation -#define MEGAFAUNA_SPAWN_ALLOWED (1<<5) /// Are you forbidden from teleporting to the area? (centcom, mobs, wizard, hand teleporter) -#define NOTELEPORT (1<<6) +#define NOTELEPORT (1<<2) /// Hides area from player Teleport function. -#define HIDDEN_AREA (1<<7) -/// If false, loading multiple maps with this area type will create multiple instances. -#define UNIQUE_AREA (1<<8) +#define HIDDEN_AREA (1<<3) /// If people are allowed to suicide in it. Mostly for OOC stuff like minigames -#define BLOCK_SUICIDE (1<<9) +#define BLOCK_SUICIDE (1<<5) /// If set, this area will be innately traversable by Xenobiology camera consoles. -#define XENOBIOLOGY_COMPATIBLE (1<<10) +#define XENOBIOLOGY_COMPATIBLE (1<<6) /// If blood cultists can draw runes or build structures on this AREA. -#define CULT_PERMITTED (1<<11) -/// If engravings are persistent in this area -#define PERSISTENT_ENGRAVINGS (1<<12) +#define CULT_PERMITTED (1<<7) /// Mobs that die in this area don't produce a dead chat message -#define NO_DEATH_MESSAGE (1<<13) +#define NO_DEATH_MESSAGE (1<<8) /// This area should have extra shielding from certain event effects -#define EVENT_PROTECTED (1<<14) +#define EVENT_PROTECTED (1<<9) /// This Area Doesn't have Flood or Bomb Admin Messages, but will still log -#define QUIET_LOGS (1<<15) -/// This area does not allow virtual entities to enter. -#define VIRTUAL_SAFE_AREA (1<<16) +#define QUIET_LOGS (1<<10) /// This area does not allow the Binary channel -#define BINARY_JAMMING (1<<17) +#define BINARY_JAMMING (1<<11) /// This area prevents Bag of Holding rifts from being opened. -#define NO_BOH (1<<18) +#define NO_BOH (1<<12) /// This area prevents fishing from removing unique/limited loot from sources that're also used outside of it. -#define UNLIMITED_FISHING (1<<19) +#define UNLIMITED_FISHING (1<<13) /// This area is prevented from having gravity (ie. space, nearstation, or outside solars) -#define NO_GRAVITY (1<<20) +#define NO_GRAVITY (1<<14) /// This area can be teleported in, but -only- to locations within that same area. -#define LOCAL_TELEPORT (1<<21) +#define LOCAL_TELEPORT (1<<15) + +////////////////Area Mapping Flags\\\\\\\\\\\\\\ +/// If false, loading multiple maps with this area type will create multiple instances. +#define UNIQUE_AREA (1<<0) +/// If mining tunnel generation is allowed in this area +#define CAVES_ALLOWED (1<<1) +/// If flora are allowed to spawn in this area randomly through tunnel generation +#define FLORA_ALLOWED (1<<2) +/// If mobs can be spawned by natural random generation +#define MOB_SPAWN_ALLOWED (1<<3) +/// If megafauna can be spawned by natural random generation +#define MEGAFAUNA_SPAWN_ALLOWED (1<<4) +/// If engravings are persistent in this area +#define PERSISTENT_ENGRAVINGS (1<<5) +/// This is a virtual/bitrunning area +#define VIRTUAL_AREA (1<<6) +/// This area does not allow virtual entities to enter. +#define VIRTUAL_SAFE_AREA (1<<7) /* These defines are used specifically with the atom/pass_flags bitmask @@ -234,12 +235,14 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204 #define ZAP_FUSION_FLAGS ZAP_OBJ_DAMAGE | ZAP_MOB_DAMAGE | ZAP_MOB_STUN #define ZAP_SUPERMATTER_FLAGS ZAP_GENERATES_POWER -///EMP will protect itself. +///Object will protect itself. #define EMP_PROTECT_SELF (1<<0) -///EMP will protect the contents from also being EMPed. +///Object will protect its contents from being EMPed. #define EMP_PROTECT_CONTENTS (1<<1) -///EMP will protect the wires. +///Object will protect its wiring from being EMPed. #define EMP_PROTECT_WIRES (1<<2) +///Don't indicate EMP protection in object examine text. +#define EMP_NO_EXAMINE (1<<3) ///Protects against all EMP types. #define EMP_PROTECT_ALL (EMP_PROTECT_SELF | EMP_PROTECT_CONTENTS | EMP_PROTECT_WIRES) @@ -336,3 +339,23 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204 #define EMOTE_IMPORTANT (1<<2) /// Emote only prints to runechat, not to the chat window #define EMOTE_RUNECHAT (1<<3) + +// Flags for the empath component +/// Can the empath see if a living mob has combat mode on +#define EMPATH_SEE_COMBAT (1<<0) +/// Can the empath see if living mob has over 10 oxyloss +#define EMPATH_SEE_OXY (1<<1) +/// Can the empath see if living mob has over 10 toxloss +#define EMPATH_SEE_TOX (1<<2) +/// Can the empath see if living mob's sanity is at distressed or below +#define EMPATH_SEE_SANITY (1<<3) +/// Can the empath see if living mob is blind +#define EMPATH_SEE_BLIND (1<<4) +/// Can the empath see if living mob is deaf +#define EMPATH_SEE_DEAF (1<<5) +/// Can the empath see if living mob's body temperature is too hot for their species +#define EMPATH_SEE_HOT (1<<6) +/// Can the empath see if living mob's body temperature is too low for their species +#define EMPATH_SEE_COLD (1<<7) +/// Can the empath see if living mob has the fundamentally evil trait +#define EMPATH_SEE_EVIL (1<<8) diff --git a/code/__DEFINES/access.dm b/code/__DEFINES/access.dm index 558969396993..b139ef6713b2 100644 --- a/code/__DEFINES/access.dm +++ b/code/__DEFINES/access.dm @@ -28,6 +28,8 @@ #define ACCESS_ALL_PERSONAL_LOCKERS "all_personal_lockers" /// Access used for Access-Changing Programs, this one will unlock all options that can be ever given via that program. #define ACCESS_CHANGE_IDS "change_ids" +/// Access the PDA shopping app checks for to see if you can only request or place orders immediately +#define ACCESS_BUDGET "department_budget" /// Access used for the Captain's personal quarters in mapping, as well as what allows one to order emergency shuttles. #define ACCESS_CAPTAIN "captain" /// Access used for the Head of Personnel's personal quarters in mapping, as well as the security console and other HoP-related things. @@ -89,6 +91,8 @@ #define ACCESS_PSYCHOLOGY "psychology" /// Access for the Chief Medical Officer's personal quarters in mapping, as well as some other CMO-related things. #define ACCESS_CMO "cmo" +/// Access to the Paramedic dispatch. +#define ACCESS_PARAMEDIC "paramedic" /// General access for Cargo, allows for entry to Cargo Bay and Cargo's Office. #define ACCESS_CARGO "cargo" @@ -182,6 +186,7 @@ #define ACCESS_CENT_TELEPORTER "cent_teleporter" #define ACCESS_CENT_CAPTAIN "cent_captain" #define ACCESS_CENT_BAR "cent_bar" +#define ACCESS_CENT_OFFICER "cent_officer" /// Special Ops. Captain's display case, Marauder and Seraph mechs. #define ACCESS_CENT_SPECOPS "cent_specops" @@ -293,6 +298,7 @@ ACCESS_BIT_DEN, \ ACCESS_BRIG, \ ACCESS_BRIG_ENTRANCE, \ + ACCESS_BUDGET, \ ACCESS_CARGO, \ ACCESS_CHAPEL_OFFICE, \ ACCESS_CONSTRUCTION, \ @@ -325,6 +331,7 @@ ACCESS_NETWORK, \ ACCESS_ORDNANCE, \ ACCESS_ORDNANCE_STORAGE, \ + ACCESS_PARAMEDIC, \ ACCESS_PHARMACY, \ ACCESS_PLUMBING, \ ACCESS_PSYCHOLOGY, \ @@ -335,6 +342,7 @@ ACCESS_SERVICE, \ ACCESS_SHIPPING, \ ACCESS_SURGERY, \ + ACCESS_TECH_STORAGE, \ ACCESS_THEATRE, \ ACCESS_VIROLOGY, \ ACCESS_WEAPONS, \ @@ -346,6 +354,7 @@ ACCESS_AI_UPLOAD, \ ACCESS_ALL_PERSONAL_LOCKERS, \ ACCESS_ARMORY, \ + ACCESS_BUDGET, \ ACCESS_CHANGE_IDS, \ ACCESS_COMMAND, \ ACCESS_EVA, \ @@ -353,7 +362,6 @@ ACCESS_MINISAT, \ ACCESS_RC_ANNOUNCE, \ ACCESS_TCOMMS, \ - ACCESS_TECH_STORAGE, \ ACCESS_TELEPORTER, \ ACCESS_VAULT, \ ) @@ -383,6 +391,7 @@ ACCESS_CENT_STORAGE, \ ACCESS_CENT_TELEPORTER, \ ACCESS_CENT_THUNDER, \ + ACCESS_CENT_OFFICER, \ ) /// Syndicate areas off station. Do not use direct, access via SSid_access.get_flag_access_list(ACCESS_FLAG_SYNDICATE) @@ -425,6 +434,7 @@ /// Used to seed the accesses_by_region list in SSid_access. A list of general service accesses that are overseen by the HoP. #define REGION_ACCESS_GENERAL list( \ ACCESS_BAR, \ + ACCESS_BUDGET, \ ACCESS_CHAPEL_OFFICE, \ ACCESS_CREMATORIUM, \ ACCESS_HYDROPONICS, \ @@ -442,6 +452,7 @@ ACCESS_ARMORY, \ ACCESS_BRIG, \ ACCESS_BRIG_ENTRANCE, \ + ACCESS_BUDGET, \ ACCESS_COURT, \ ACCESS_DETECTIVE, \ ACCESS_HOS, \ @@ -453,11 +464,13 @@ #define REGION_MEDBAY "Medbay" /// Used to seed the accesses_by_region list in SSid_access. A list of all medbay regional accesses that are overseen by the CMO. #define REGION_ACCESS_MEDBAY list( \ + ACCESS_BUDGET, \ ACCESS_CMO, \ ACCESS_MECH_MEDICAL, \ ACCESS_MEDICAL, \ ACCESS_MORGUE, \ ACCESS_MORGUE_SECURE, \ + ACCESS_PARAMEDIC, \ ACCESS_PHARMACY, \ ACCESS_PLUMBING, \ ACCESS_PSYCHOLOGY, \ @@ -469,6 +482,7 @@ /// Used to seed the accesses_by_region list in SSid_access. A list of all research regional accesses that are overseen by the RD. #define REGION_ACCESS_RESEARCH list( \ ACCESS_AI_UPLOAD, \ + ACCESS_BUDGET, \ ACCESS_GENETICS, \ ACCESS_MECH_SCIENCE, \ ACCESS_MINISAT, \ @@ -487,6 +501,7 @@ #define REGION_ACCESS_ENGINEERING list( \ ACCESS_ATMOSPHERICS, \ ACCESS_AUX_BASE, \ + ACCESS_BUDGET, \ ACCESS_CE, \ ACCESS_CONSTRUCTION, \ ACCESS_ENGINEERING, \ @@ -503,6 +518,7 @@ /// Used to seed the accesses_by_region list in SSid_access. A list of all cargo regional accesses that are overseen by the HoP. #define REGION_ACCESS_SUPPLY list( \ ACCESS_BIT_DEN, \ + ACCESS_BUDGET, \ ACCESS_CARGO, \ ACCESS_MECH_MINING, \ ACCESS_MINERAL_STOREROOM, \ @@ -518,6 +534,7 @@ #define REGION_ACCESS_COMMAND list( \ ACCESS_AI_UPLOAD, \ ACCESS_ALL_PERSONAL_LOCKERS, \ + ACCESS_BUDGET, \ ACCESS_CAPTAIN, \ ACCESS_CHANGE_IDS, \ ACCESS_COMMAND, \ diff --git a/code/__DEFINES/achievements.dm b/code/__DEFINES/achievements.dm index 47ba741764b2..d026e2f795e9 100644 --- a/code/__DEFINES/achievements.dm +++ b/code/__DEFINES/achievements.dm @@ -14,6 +14,7 @@ //Misc Medal hub IDs #define MEDAL_METEOR "Your Life Before Your Eyes" +#define MEDAL_METEOR_PUNCH "Your Life In Your Hands" #define MEDAL_PULSE "Jackpot" #define MEDAL_TIMEWASTE "Overextended The Joke" #define MEDAL_RODSUPLEX "Feat of Strength" diff --git a/code/__DEFINES/admin.dm b/code/__DEFINES/admin.dm index 65a1ead24649..c379fb6ffed9 100644 --- a/code/__DEFINES/admin.dm +++ b/code/__DEFINES/admin.dm @@ -7,6 +7,7 @@ #define MUTE_ADMINHELP (1<<3) #define MUTE_DEADCHAT (1<<4) #define MUTE_INTERNET_REQUEST (1<<5) +#define MUTE_LOOC (1<<6) // DARKPACK EDIT ADD - LOOC #define MUTE_ALL ALL //Some constants for DB_Ban diff --git a/code/__DEFINES/ai/ai.dm b/code/__DEFINES/ai/ai.dm index 7266ad449909..aafd3feb203d 100644 --- a/code/__DEFINES/ai/ai.dm +++ b/code/__DEFINES/ai/ai.dm @@ -76,6 +76,8 @@ //Generic subtree defines +/// default search range (tiles, passed to oview) when using find_and_set +#define SEARCH_TACTIC_DEFAULT_RANGE 7 /// probability that the pawn should try resisting out of restraints #define RESIST_SUBTREE_PROB 50 ///macro for whether it's appropriate to resist right now, used by resist subtree diff --git a/code/__DEFINES/ai/ai_blackboard.dm b/code/__DEFINES/ai/ai_blackboard.dm index ebcd71345ee7..3e9a65027af5 100644 --- a/code/__DEFINES/ai/ai_blackboard.dm +++ b/code/__DEFINES/ai/ai_blackboard.dm @@ -4,6 +4,8 @@ #define BB_CURRENT_MIN_MOVE_DISTANCE "min_move_distance" ///time until we should next eat, set by the generic hunger subtree #define BB_NEXT_HUNGRY "BB_NEXT_HUNGRY" +///When looking for food, ignore drinks +#define BB_IGNORE_DRINKS "bb_ignore_drinks" ///what we're going to eat next #define BB_FOOD_TARGET "bb_food_target" ///How close a mob must be for us to select it as a target, if that is less than how far we can maintain it as a target @@ -81,6 +83,7 @@ #define BB_BASIC_MOB_CURRENT_TARGET "BB_basic_current_target" #define BB_BASIC_MOB_CURRENT_TARGET_HIDING_LOCATION "BB_basic_current_target_hiding_location" #define BB_TARGETING_STRATEGY "targeting_strategy" +#define BB_HUNT_TARGETING_STRATEGY "hunt_targeting_strategy" ///some behaviors that check current_target also set this on deep crit mobs #define BB_BASIC_MOB_EXECUTION_TARGET "BB_basic_execution_target" ///Blackboard key for a whitelist typecache of "things we can target while trying to move" @@ -173,8 +176,6 @@ #define BB_MOD_TARGET "BB_mod_target" ///The module the AI was created from #define BB_MOD_MODULE "BB_mod_module" -///Range for a MOD AI controller. -#define MOD_AI_RANGE 200 ///Only target mobs with these traits #define BB_TARGET_ONLY_WITH_TRAITS "BB_target_only_with_traits" @@ -236,5 +237,3 @@ // Used to hold state without making bigass lists /// For /datum/ai_behavior/find_potential_targets, what if any field are we using currently #define BB_FIND_TARGETS_FIELD(type) "bb_find_targets_field_[type]" - - diff --git a/code/__DEFINES/ai/monkey.dm b/code/__DEFINES/ai/monkey.dm index 833514e2f0fd..f11ac96fefe2 100644 --- a/code/__DEFINES/ai/monkey.dm +++ b/code/__DEFINES/ai/monkey.dm @@ -15,3 +15,11 @@ #define BB_MONKEY_DISPOSING "BB_monkey_disposing" #define BB_MONKEY_RECRUIT_COOLDOWN "BB_monkey_recruit_cooldown" #define BB_RESISTING "BB_resisting" +/// Monkey is not necessarily a wild animal so it won't resort to fighting over food and such +#define BB_MONKEY_TAMED "BB_monkey_tamed" +/// Chance to give our held item to a nearby mob +#define BB_MONKEY_GIVE_CHANCE "BB_monkey_give_chance" +/// If set, the monkey will prefer this type of object when pressing things +#define BB_MONKEY_PRESS_TYPEPATH "BB_monkey_press_typepath" +/// The item the monkey is currently serving to someone +#define BB_MONKEY_CURRENT_SERVED_ITEM "BB_monkey_current_served_item" diff --git a/code/__DEFINES/announcements.dm b/code/__DEFINES/announcements.dm index b40303514eaa..26df2ba01470 100644 --- a/code/__DEFINES/announcements.dm +++ b/code/__DEFINES/announcements.dm @@ -7,5 +7,5 @@ #define ANNOUNCEMENT_TYPE_SYNDICATE "Syndicate" //Defines for newscaster news stations, the defined thing is what it'll be called in the Newscaster. -#define NEWSCASTER_STATION_ANNOUNCEMENTS "Station Announcements" +#define NEWSCASTER_STATION_ANNOUNCEMENTS NEWSPAPER_COMPANY // DARKPACK EDIT CHANGE #define NEWSCASTER_SPACE_BETTING "SpaceBet" diff --git a/code/__DEFINES/antagonists.dm b/code/__DEFINES/antagonists.dm index 9a2390557d83..60d1212540c6 100644 --- a/code/__DEFINES/antagonists.dm +++ b/code/__DEFINES/antagonists.dm @@ -101,15 +101,53 @@ #define HKT_NEXT "next" #define HKT_BAN "ban" #define HKT_DEPTH "depth" +#define HKT_PURCHASED_DEPTH "purchased_depth" #define HKT_ROUTE "route" #define HKT_UI_BGR "ui_bgr" +#define HKT_COST "cost" +#define HKT_CATEGORY "category" +/// Only present for already researched knowledge. +#define HKT_INSTANCE "instance" +/// unique identifier most commonly used for identifying what knowledge is researchable +#define HKT_ID "id" +#define BGR_SIDE "node_side" + +#define MAGIC_RESISTANCE_MOON (MAGIC_RESISTANCE|MAGIC_RESISTANCE_MIND) /// 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 +#define HERETIC_DRAFT_TIER_MAX 5 + +/// The default drain speed for heretic rift's, anything below this will be considered a fast drain, and be very noticeable and cause a overlay +#define HERETIC_RIFT_DEFAULT_DRAIN_SPEED 10 SECONDS + +/// Sources of knowledge purchased for heretics, used for positioning in the UI +#define HERETIC_KNOWLEDGE_TREE "tree" +#define HERETIC_KNOWLEDGE_SHOP "shop" +#define HERETIC_KNOWLEDGE_DRAFT "draft" +#define HERETIC_KNOWLEDGE_START "start" + +/// defines for the depths of the heretic knowledge tree nodes +#define HKT_DEPTH_START 2 +#define HKT_DEPTH_TIER_1 3 +#define HKT_DEPTH_DRAFT_1 4 +#define HKT_DEPTH_TIER_2 5 +#define HKT_DEPTH_DRAFT_2 6 +#define HKT_DEPTH_ROBES 7 +#define HKT_DEPTH_TIER_3 8 +#define HKT_DEPTH_DRAFT_3 9 +#define HKT_DEPTH_ARMOR 10 +#define HKT_DEPTH_TIER_4 11 +#define HKT_DEPTH_DRAFT_4 12 +#define HKT_DEPTH_ASCENSION 13 + +#define HERETIC_CAN_ASCEND "can_ascend" + + /// A define used in ritual priority for heretics. #define MAX_KNOWLEDGE_PRIORITY 100 diff --git a/code/__DEFINES/atmospherics/atmos_mob_interaction.dm b/code/__DEFINES/atmospherics/atmos_mob_interaction.dm index 75dcebc72d96..0d1757101164 100644 --- a/code/__DEFINES/atmospherics/atmos_mob_interaction.dm +++ b/code/__DEFINES/atmospherics/atmos_mob_interaction.dm @@ -103,7 +103,7 @@ #define PRESSURE_DAMAGE_COEFFICIENT 2 #define MAX_HIGH_PRESSURE_DAMAGE 2 /// The amount of damage someone takes when in a low pressure area (The pressure threshold is so low that it doesn't make sense to do any calculations, so it just applies this flat value). -#define LOW_PRESSURE_DAMAGE 2 +#define LOW_PRESSURE_DAMAGE 4 /// Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this #define COLD_SLOWDOWN_FACTOR 20 diff --git a/code/__DEFINES/atmospherics/atmos_piping.dm b/code/__DEFINES/atmospherics/atmos_piping.dm index 188798f95d20..54d29ffa59d0 100644 --- a/code/__DEFINES/atmospherics/atmos_piping.dm +++ b/code/__DEFINES/atmospherics/atmos_piping.dm @@ -68,9 +68,9 @@ #define TANK_MERGE_OVERPRESSURE "tank_overpressure" // Indices for the reaction_results returned by explosion_information() /// Reactions that have happened in the tank. -#define TANK_RESULTS_REACTION 1 +#define TANK_RESULTS_REACTION "results_reaction" /// Additional information of the tank. -#define TANK_RESULTS_MISC 2 +#define TANK_RESULTS_MISC "results_misc" /// Color used by omni-color pipes #define ATMOS_COLOR_OMNI COLOR_VERY_LIGHT_GRAY diff --git a/code/__DEFINES/atom_hud.dm b/code/__DEFINES/atom_hud.dm index d2e22be8e9a0..af3614826e13 100644 --- a/code/__DEFINES/atom_hud.dm +++ b/code/__DEFINES/atom_hud.dm @@ -46,6 +46,10 @@ #define DIAG_CAMERA_HUD "21" /// Steady Hacked APC effect, visible only to Malf AIs #define MALF_APC_HUD "22" +// DARKPACK EDIT START +/// Auspex aura HUD +#define AUSPEX_AURA_HUD "23" +// DARKPACK EDIT END //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 @@ -63,6 +67,7 @@ #define DATA_HUD_AI_DETECT 8 #define DATA_HUD_FAN 9 #define DATA_HUD_MALF_APC 10 +#define DATA_HUD_AUSPEX_AURAS 11 // DARKPACK EDIT ADD /// cooldown for being shown the images for any particular data hud #define ADD_HUD_TO_COOLDOWN 20 @@ -75,6 +80,7 @@ #define SECHUD_SYNDICATE "hudsyndicate" #define SECHUD_SYNDICATE_INTERDYNE "hudsyndicateinterdyne" #define SECHUD_SYNDICATE_INTERDYNE_HEAD "hudsyndicateinterdynehead" +#define SECHUD_CLOWNOPS "hudclownop" #define SECHUD_ASSISTANT "hudassistant" #define SECHUD_ATMOSPHERIC_TECHNICIAN "hudatmospherictechnician" diff --git a/code/__DEFINES/basic_mobs.dm b/code/__DEFINES/basic_mobs.dm index 3daae1d0d8e3..5b1d0283c564 100644 --- a/code/__DEFINES/basic_mobs.dm +++ b/code/__DEFINES/basic_mobs.dm @@ -20,6 +20,8 @@ #define IMMUNE_TO_GETTING_WET (1<<5) /// Disables the function of attacking random body zones #define PRECISE_ATTACK_ZONES (1<<6) +/// People would be sad to see this mob die +#define SENDS_DEATH_MOODLETS (1<<7) /// Temporary trait applied when an attack forecast animation has completed #define TRAIT_BASIC_ATTACK_FORECAST "trait_basic_attack_forecast" @@ -37,40 +39,83 @@ #define MOOK_ATTACK_ACTIVE 2 #define MOOK_ATTACK_STRIKE 3 -///keeps track of how many gutlunches are born +/// Keeps track of how many gutlunches are born GLOBAL_VAR_INIT(gutlunch_count, 0) -///Pet customization settings saved for every client +/// Pet customization settings saved for every client GLOBAL_LIST_EMPTY(customized_pets) -//raptor defines +// Raptor defines +/// Raptor chick, tiny and very frail +#define RAPTOR_BABY "baby" +/// Raptor youngling, cannot be ridden and has reduced stats, but can hunt by itself just fine +#define RAPTOR_YOUNG "young" +/// Fully grown adult raptor +#define RAPTOR_ADULT "adult" -#define RAPTOR_RED "Red" -#define RAPTOR_GREEN "Green" -#define RAPTOR_PURPLE "Purple" -#define RAPTOR_WHITE "White" -#define RAPTOR_YELLOW "Yellow" -#define RAPTOR_BLACK "Black" -#define RAPTOR_BLUE "Blue" +/// Innate raptor offsets +#define RAPTOR_INNATE_SOURCE "raptor_innate" +// Growth values +/// How much does meal complexity affect our growth? +#define RAPTOR_MEAL_COMPLEXITY_GROWTH_FACTOR 5 +/// Base value for raptor growth from meat +#define RAPTOR_GROWTH_BASE_MEAT 10 +/// Base value for raptor growth from ash flora +#define RAPTOR_GROWTH_BASE_PLANT 5 +/// How much growth progress raptors need to accumulate to fully grow into an adult +#define RAPTOR_GROWTH_REQUIRED 100 +/// Minimum random growth value a baby raptor can gain per second +#define RAPTOR_BABY_GROWTH_LOWER 0.5 +/// Maximum random growth value a baby raptor can gain per second +#define RAPTOR_BABY_GROWTH_UPPER 0.8 +/// How long it takes for a raptor egg to grow up, in seconds +#define RAPTOR_EGG_GROWTH_PROGRESS 100 +/// How much happiness percentage affects our growth speed +#define RAPTOR_GROWTH_HAPPINESS_MULTIPLIER 0.005 // Full happiness increases growth rate by 50% + +/// Damage boost per happiness percent +#define RAPTOR_HAPPINESS_DAMAGE_BOOST 0.05 + +// Raptor inheritance stats +/// Maximum amount of traits a raptor can inherit +#define RAPTOR_TRAIT_INHERIT_AMOUNT 2 +/// Minimum modifier to base attack values a raptor can get +#define RAPTOR_INHERIT_MIN_ATTACK -5 +/// Maximum modifier to base attack values a raptor can get #define RAPTOR_INHERIT_MAX_ATTACK 5 +/// Minimum modifier to the base health value a raptor can get +#define RAPTOR_INHERIT_MIN_HEALTH -30 +/// Maximum modifier to the base health value a raptor can get #define RAPTOR_INHERIT_MAX_HEALTH 30 +/// Minimum modifier to base speed values a raptor can get +#define RAPTOR_INHERIT_MIN_SPEED -0.66 +/// Maximum modifier to base speed values a raptor can get +#define RAPTOR_INHERIT_MAX_SPEED 0.66 +/// Minimum modifier a raptor can get to their modifiers, such as ability effect and growth speed +#define RAPTOR_INHERIT_MIN_MODIFIER -0.25 +/// Maximum modifier a raptor can get to their modifiers, such as ability effect and growth speed +#define RAPTOR_INHERIT_MAX_MODIFIER 0.25 +/// Genetic drift for raptors, aka min/max value from the cap that stats can receive when breeding +#define RAPTOR_GENETIC_DRIFT 0.2 -///this mob suffers depression +/// This mob suffers depression #define BB_BASIC_DEPRESSED "basic_depressed" -///this mob will care for its young +/// This mob will care for its young #define BB_RAPTOR_MOTHERLY "raptor_motherly" -///this mob will be playful around their owners +/// This mob will be playful around their owners #define BB_RAPTOR_PLAYFUL "raptor_playful" -///this mob will flee combat when it feels threatened +/// This mob will flee combat when it feels threatened #define BB_RAPTOR_COWARD "raptor_coward" -///our raptor baby target we will take care of +/// Our raptor baby target we will take care of #define BB_RAPTOR_BABY "raptor_baby" -///the raptor we will heal up +/// The raptor we will heal up #define BB_INJURED_RAPTOR "injured_raptor" -///the cooldown for next time we eat +/// The cooldown for next time we eat #define BB_RAPTOR_EAT_COOLDOWN "raptor_eat_cooldown" -///our trough target +/// Our trough target #define BB_RAPTOR_TROUGH_TARGET "raptor_trough_target" +/// HP level at which we'll flee from attackers +#define BB_RAPTOR_FLEE_THRESHOLD "raptor_flee_threshold" #define MAX_RAPTOR_POP 64 diff --git a/code/__DEFINES/bitrunning.dm b/code/__DEFINES/bitrunning.dm index 639ae26c3fc5..900182eb43d7 100644 --- a/code/__DEFINES/bitrunning.dm +++ b/code/__DEFINES/bitrunning.dm @@ -27,13 +27,14 @@ /// Camera network bitrunner bodycams are on #define BITRUNNER_CAMERA_NET "bitrunner" -/** - * Bitrunner Domain External Load Restriction Bitflags - */ /// Domain forbids external sources from loading items onto avatars #define DOMAIN_FORBIDS_ITEMS (1<<0) /// Domain forbids external sources from loading abilities onto avatars #define DOMAIN_FORBIDS_ABILITIES (1<<1) +/// Block nohit bonus from applying +#define DOMAIN_NO_NOHIT_BONUS (1<<2) +/// Test domain, don't let it be loaded normally +#define DOMAIN_TEST_ONLY (1<<3) /// Combination flag for blocking anything from being loaded onto avatars by external sources #define DOMAIN_FORBIDS_ALL ALL diff --git a/code/__DEFINES/bodyparts.dm b/code/__DEFINES/bodyparts.dm index 5c6bb1b49605..2f396cfbabc0 100644 --- a/code/__DEFINES/bodyparts.dm +++ b/code/__DEFINES/bodyparts.dm @@ -66,3 +66,111 @@ #define BODYPART_OVERLAY_CARP_INFUSION 2 #define BODYPART_OVERLAY_CSS_SUICIDE 3 #define BODYPART_OVERLAY_VOIDWALKER_CURSE 4 + +// Bodypart surgery state +/// An incision has been made into the skin +#define SURGERY_SKIN_CUT (1<<0) +/// Skin has been pulled back - 99% of surgeries require this +#define SURGERY_SKIN_OPEN (1<<1) +/// Blood vessels are accessible, cut, and bleeding +#define SURGERY_VESSELS_UNCLAMPED (1<<2) +/// Blood vessels are accessible but clamped +#define SURGERY_VESSELS_CLAMPED (1<<3) +/// Indicates either an incision has been made into the organs present in the limb or organs have been incised from the limb +#define SURGERY_ORGANS_CUT (1<<4) +/// Holes have been drilled in our bones, exclusive with sawed +#define SURGERY_BONE_DRILLED (1<<5) +/// Bones have been sawed apart +#define SURGERY_BONE_SAWED (1<<6) +/// Used in advanced plastic surgery: Has plastic been applied +#define SURGERY_PLASTIC_APPLIED (1<<7) +/// Used in prosthetic surgery: Is the prosthetic unsecured +#define SURGERY_PROSTHETIC_UNSECURED (1<<8) +/// Used for cavity implants +#define SURGERY_CAVITY_WIDENED (1<<9) + +DEFINE_BITFIELD(surgery_state, list( + "SKIN CUT" = SURGERY_SKIN_CUT, + "SKIN OPEN" = SURGERY_SKIN_OPEN, + "VESSELS UNCLAMPED" = SURGERY_VESSELS_UNCLAMPED, + "VESSELS CLAMPED" = SURGERY_VESSELS_CLAMPED, + "ORGANS CUT" = SURGERY_ORGANS_CUT, + "BONE DRILLED" = SURGERY_BONE_DRILLED, + "BONE SAWED" = SURGERY_BONE_SAWED, + "PLASTIC APPLIED" = SURGERY_PLASTIC_APPLIED, + "PROSTHETIC UNSECURED" = SURGERY_PROSTHETIC_UNSECURED, + "CAVITY OPENED" = SURGERY_CAVITY_WIDENED, +)) + +/// For use in translating bitfield to human readable strings. Keep in the correct order! +#define SURGERY_STATE_READABLE list(\ + "Skin is cut" = SURGERY_SKIN_CUT, \ + "Skin is open" = SURGERY_SKIN_OPEN, \ + "Blood vessels are unclamped" = SURGERY_VESSELS_UNCLAMPED, \ + "Blood vessels are clamped" = SURGERY_VESSELS_CLAMPED, \ + "Organs are cut" = SURGERY_ORGANS_CUT, \ + "Bone is drilled" = SURGERY_BONE_DRILLED, \ + "Bone is sawed" = SURGERY_BONE_SAWED, \ + "Plastic is applied" = SURGERY_PLASTIC_APPLIED, \ + "Prosthetic is unsecured" = SURGERY_PROSTHETIC_UNSECURED, \ + "Cavity is opened wide" = SURGERY_CAVITY_WIDENED, \ +) + +/// For use in translating bitfield to steps required for surgery. Keep in the correct order! +#define SURGERY_STATE_GUIDES(must_must_not) list(\ + "the skin [must_must_not] be cut" = SURGERY_SKIN_CUT, \ + "the skin [must_must_not] be open" = SURGERY_SKIN_OPEN, \ + "the blood vessels [must_must_not] be unclamped" = SURGERY_VESSELS_UNCLAMPED, \ + "the blood vessels [must_must_not] be clamped" = SURGERY_VESSELS_CLAMPED, \ + "the organs [must_must_not] be cut" = SURGERY_ORGANS_CUT, \ + "the bone [must_must_not] be drilled" = SURGERY_BONE_DRILLED, \ + "the bone [must_must_not] be sawed" = SURGERY_BONE_SAWED, \ + "plastic [must_must_not] be applied" = SURGERY_PLASTIC_APPLIED, \ + "the prosthetic [must_must_not] be unsecured" = SURGERY_PROSTHETIC_UNSECURED, \ + "the chest cavity [must_must_not] be opened wide" = SURGERY_CAVITY_WIDENED, \ +) + +// Yes these are glorified bitflag manipulation macros, they're meant to make reading surgical operations a bit easier +/// Checks if the input surgery state has all of the bitflags passed +#define HAS_SURGERY_STATE(input_state, check_state) ((input_state & (check_state)) == (check_state)) +/// Checks if the input surgery state has any of the bitflags passed +#define HAS_ANY_SURGERY_STATE(input_state, check_state) ((input_state & (check_state))) +/// Checks if the limb has all of the bitflags passed +#define LIMB_HAS_SURGERY_STATE(limb, check_state) HAS_SURGERY_STATE(limb?.surgery_state, check_state) +/// Checks if the limb has any of the bitflags passed +#define LIMB_HAS_ANY_SURGERY_STATE(limb, check_state) HAS_ANY_SURGERY_STATE(limb?.surgery_state, check_state) + +/// All states that concern itself with the skin +#define ALL_SURGERY_SKIN_STATES (SURGERY_SKIN_CUT|SURGERY_SKIN_OPEN) +/// All states that concern itself with the blood vessels +#define ALL_SURGERY_VESSEL_STATES (SURGERY_VESSELS_UNCLAMPED|SURGERY_VESSELS_CLAMPED) +/// All states that concern itself with the bones +#define ALL_SURGERY_BONE_STATES (SURGERY_BONE_DRILLED|SURGERY_BONE_SAWED) +/// All states that concern itself with internal organs +#define ALL_SURGERY_ORGAN_STATES (SURGERY_ORGANS_CUT) + +/// These states are automatically cleared when the surgery is closed for ease of use +#define ALL_SURGERY_STATES_UNSET_ON_CLOSE (ALL_SURGERY_SKIN_STATES|ALL_SURGERY_VESSEL_STATES|ALL_SURGERY_BONE_STATES|ALL_SURGERY_ORGAN_STATES|SURGERY_CAVITY_WIDENED) +/// Surgery state required for a limb with a certain zone to... be... fished... in... +#define ALL_SURGERY_FISH_STATES(for_zone) (SURGERY_SKIN_OPEN|SURGERY_ORGANS_CUT|(for_zone == BODY_ZONE_CHEST ? SURGERY_BONE_SAWED : NONE)) + +/// Surgery states flipped on automatically if the bodypart lacks a form of skin +#define SKINLESS_SURGERY_STATES (SURGERY_SKIN_OPEN) +// (These are normally mutually exclusive, but as a bonus for lacking bones, you can do drill and saw operations simultaneously!) +/// Surgery states flipped on automatically if the bodypart lacks bones +#define BONELESS_SURGERY_STATES (SURGERY_BONE_DRILLED|SURGERY_BONE_SAWED) +/// Surgery states flipped on automatically if the bodypart lacks vessels +#define VESSELLESS_SURGERY_STATES (SURGERY_VESSELS_CLAMPED|SURGERY_ORGANS_CUT) + +/// Biological state that has some kind of skin that can be cut. +#define BIOSTATE_HAS_SKIN (BIO_FLESH|BIO_METAL|BIO_CHITIN) +/// Checks if a bodypart lacks both flesh and metal, meaning it has no skin to cut. +#define LIMB_HAS_SKIN(limb) (limb?.biological_state & BIOSTATE_HAS_SKIN) +/// Biological state that has some kind of bones that can be sawed. +#define BIOSTATE_HAS_BONES (BIO_BONE|BIO_METAL) +/// Checks if a bodypart lacks both bone and metal, meaning it has no bones to saw. +#define LIMB_HAS_BONES(limb) (limb?.biological_state & BIOSTATE_HAS_BONES) +/// Biological state that has some kind of vessels that can be clamped. +#define BIOSTATE_HAS_VESSELS (BIO_BLOODED|BIO_WIRED) +/// Checks if a bodypart lacks both blood and wires, meaning it has no vessels to manipulate. +#define LIMB_HAS_VESSELS(limb) (limb?.biological_state & BIOSTATE_HAS_VESSELS) diff --git a/code/__DEFINES/botany.dm b/code/__DEFINES/botany.dm index 1ee833c6bf15..8afca99300bd 100644 --- a/code/__DEFINES/botany.dm +++ b/code/__DEFINES/botany.dm @@ -21,6 +21,15 @@ #define CARNIVORY_POTENCY_MIN 30 /// Fungle megabolism plants have a min yield of 1. #define FUNGAL_METAB_YIELD_MIN 1 +/// Semiaquatic plants gets 50% more weeds in soil. +#define SEMIAQUATIC_SOIL_WEED_MALUS 1.5 +/// Soil loving plants get worse yield when grown in a medium that isn't soil. +#define SOIL_LOVER_HYDRO_YIELD_MALUS 0.7 +/// Upper bound of produce size mod for soil lowers grown without soil. +#define SOIL_LOVER_HYDRO_POTENCY_MAX 0.8 +/// Lower bound of produce size mod for soil lowers grown without soil +#define SOIL_LOVER_HYDRO_POTENCY_MIN 0.5 + /// -- Hydroponics tray defines. -- /// Base amount of nutrients a tray can old. @@ -91,3 +100,29 @@ /// Used as a baseline plant rarity for more uncommon plants, usually requiring mutation #define PLANT_MODERATELY_RARE 20 + +/// How much water drain is reduced for trays with the SUPERWATER modifier such as superabsorbent hydrogel beads. +#define SUPER_WATER_MODIFIER 0.5 +// How much faster our mushrooms mature on a good mushroom growing soil such as korta coir. +#define FAST_MUSH_MODIFIER 1.4 +// How many grafts we harvest from one plant if planted in a tray with the MULTI_GRAFT flag. +#define MULTI_GRAFT_MAX_COUNT 3 + +/// TRAY BITFLAGS + +/// For watery trays, capable of growing aquatic plants. +#define HYDROPONIC (1 << 0) +/// For soil type trays that provide structure for soil loving plants. +#define SOIL (1 << 1) +/// Allows you to take up to 3 grafts from the same plant. +#define MULTIGRAFT (1 << 2) +/// Allows you to plant grafts into this tray to propagate them vegetativley. +#define GRAFT_MEDIUM (1 << 3) +/// Musrooms mature faster in this type of tray. +#define FAST_MUSHROOMS (1 << 4) +/// Extra slimy worms can be created by composting greens in this soil. +#define WORM_HABITAT (1 << 5) +/// Water drains at a slower rate from this soil. +#define SUPERWATER (1 << 6) +/// If this tray runs out of nutrients, add a little nitrogen from the breakdown of natural fertilizers or nitrogen fixating bacteria. +#define SLOW_RELEASE (1 << 7) diff --git a/code/__DEFINES/cameranets.dm b/code/__DEFINES/cameranets.dm index 7b00ebe52ebb..75cdb072ea9a 100644 --- a/code/__DEFINES/cameranets.dm +++ b/code/__DEFINES/cameranets.dm @@ -32,6 +32,7 @@ #define OPERATIVE_CAMERA_NET "operative" #define CAMERANET_NETWORK_CURATOR "curator" #define CAMERANET_NETWORK_FILMSTUDIO "filmstudio" +#define CAMERANET_NETWORK_MONASTERY "monastery" // Ruins/Away missiosn/Misc camera nets #define CAMERANET_NETWORK_MOON19_XENO "mo19x" diff --git a/code/__DEFINES/cargo.dm b/code/__DEFINES/cargo.dm index f17c56482ecb..f81b5d08b940 100644 --- a/code/__DEFINES/cargo.dm +++ b/code/__DEFINES/cargo.dm @@ -41,6 +41,28 @@ ///Used by coupons to define that they're cursed #define COUPON_OMEN "omen" +// Supply pack flags determining ordering properties +/// Order is literally never visible, presumably it's an abstract type or something +#define ORDER_INVISIBLE (1 << 0) +/// Only orderable on emagged consoles +#define ORDER_EMAG_ONLY (1 << 1) +/// Only orderable on consoles with doctored boards +#define ORDER_CONTRABAND (1 << 2) +/// Can only be ordered privately, can use discount coupons, and arrives in a bag instead of a crate +#define ORDER_GOODY (1 << 3) +/// Can only be ordered via the express order console +#define ORDER_POD_ONLY (1 << 4) +/// Can only be ordered if the following flag is also enabled, for conditionally provided options +#define ORDER_SPECIAL (1 << 5) +/// If present then a special order can be ordered +#define ORDER_SPECIAL_ENABLED (1 << 6) +/// Unavailable to departmental order consoles even if it is in an appropriate category +#define ORDER_NOT_DEPARTMENTAL (1 << 7) +/// This will notify admins when it is purchased +#define ORDER_DANGEROUS (1 << 8) +/// This is set when something is created by an admin to make sure its contents is also marked as such +#define ORDER_ADMIN_SPAWNED (1 << 9) + ///Discount categories for coupons. This one is for anything that isn't discountable. #define SUPPLY_PACK_NOT_DISCOUNTABLE null ///Discount category for the standard stuff, mostly goodies. diff --git a/code/__DEFINES/chat.dm b/code/__DEFINES/chat.dm index 21901a934456..35601ce85257 100644 --- a/code/__DEFINES/chat.dm +++ b/code/__DEFINES/chat.dm @@ -16,6 +16,7 @@ #define MESSAGE_TYPE_WARNING "warning" #define MESSAGE_TYPE_DEADCHAT "deadchat" #define MESSAGE_TYPE_OOC "ooc" +#define MESSAGE_TYPE_LOOC "looc" // DARKPACK EDIT ADD - LOOC #define MESSAGE_TYPE_ADMINPM "adminpm" #define MESSAGE_TYPE_COMBAT "combat" #define MESSAGE_TYPE_ADMINCHAT "adminchat" @@ -31,19 +32,19 @@ //debug printing macros (for development and testing) /// Used for debug messages to the world -#define debug_world(msg) if (GLOB.Debug2) to_chat(world, \ +#define debug_world(msg) if (GLOB.debugging_enabled) to_chat(world, \ type = MESSAGE_TYPE_DEBUG, \ text = "DEBUG: [msg]") /// Used for debug messages to the player -#define debug_usr(msg) if (GLOB.Debug2 && usr) to_chat(usr, \ +#define debug_usr(msg) if (GLOB.debugging_enabled && usr) to_chat(usr, \ type = MESSAGE_TYPE_DEBUG, \ text = "DEBUG: [msg]") /// Used for debug messages to the admins -#define debug_admins(msg) if (GLOB.Debug2) to_chat(GLOB.admins, \ +#define debug_admins(msg) if (GLOB.debugging_enabled) to_chat(GLOB.admins, \ type = MESSAGE_TYPE_DEBUG, \ text = "DEBUG: [msg]") /// Used for debug messages to the server -#define debug_world_log(msg) if (GLOB.Debug2) log_world("DEBUG: [msg]") +#define debug_world_log(msg) if (GLOB.debugging_enabled) log_world("DEBUG: [msg]") /// Adds a generic box around whatever message you're sending in chat. Really makes things stand out. #define boxed_message(str) ("
") /// Adds a box around whatever message you're sending in chat. Can apply color and/or additional classes. Available colors: red, green, blue, purple. Use it like red_box diff --git a/code/__DEFINES/colors.dm b/code/__DEFINES/colors.dm index 0a105a50ad0c..0eb7232a8af9 100644 --- a/code/__DEFINES/colors.dm +++ b/code/__DEFINES/colors.dm @@ -125,6 +125,7 @@ #define COLOR_MOSTLY_PURE_PINK "#E4005B" #define COLOR_ADMIN_PINK "#D100D1" #define COLOR_TONGUE_PINK "#ff6ea0" +#define COLOR_PUCE "#cc8899" #define COLOR_BLUSH_PINK "#DE5D83" #define COLOR_FADED_PINK "#ff80d5" #define COLOR_MAGENTA "#FF00FF" @@ -500,6 +501,7 @@ GLOBAL_LIST_INIT(heretic_path_to_color, list( #define EYE_COLOR_WEED_PRIORITY 20 #define EYE_COLOR_HUD_PRIORITY 30 #define EYE_COLOR_LUMINESCENT_PRIORITY 40 +#define EYE_COLOR_DISC 45 // DARKPACK EDIT ADD #define EYE_COLOR_CULT_PRIORITY 50 // Client color priorities diff --git a/code/__DEFINES/combat.dm b/code/__DEFINES/combat.dm index 828aef4df745..9be3f16100fd 100644 --- a/code/__DEFINES/combat.dm +++ b/code/__DEFINES/combat.dm @@ -285,11 +285,6 @@ DEFINE_BITFIELD(ammo_box_multiload, list( #define BODY_ZONE_L_LEG "l_leg" #define BODY_ZONE_R_LEG "r_leg" -GLOBAL_LIST_INIT(all_body_zones, list(BODY_ZONE_HEAD, BODY_ZONE_CHEST, BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) -GLOBAL_LIST_INIT(limb_zones, list(BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) -GLOBAL_LIST_INIT(arm_zones, list(BODY_ZONE_L_ARM, BODY_ZONE_R_ARM)) -GLOBAL_LIST_INIT(leg_zones, list(BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) - #define BODY_ZONE_PRECISE_EYES "eyes" #define BODY_ZONE_PRECISE_MOUTH "mouth" #define BODY_ZONE_PRECISE_GROIN "groin" @@ -298,6 +293,12 @@ GLOBAL_LIST_INIT(leg_zones, list(BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) #define BODY_ZONE_PRECISE_L_FOOT "l_foot" #define BODY_ZONE_PRECISE_R_FOOT "r_foot" +GLOBAL_LIST_INIT(all_body_zones, list(BODY_ZONE_HEAD, BODY_ZONE_CHEST, BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) +GLOBAL_LIST_INIT(limb_zones, list(BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) +GLOBAL_LIST_INIT(arm_zones, list(BODY_ZONE_L_ARM, BODY_ZONE_R_ARM)) +GLOBAL_LIST_INIT(leg_zones, list(BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) +GLOBAL_LIST_INIT(all_precise_body_zones, list(BODY_ZONE_PRECISE_EYES, BODY_ZONE_PRECISE_MOUTH, BODY_ZONE_PRECISE_GROIN, BODY_ZONE_PRECISE_L_HAND, BODY_ZONE_PRECISE_R_HAND, BODY_ZONE_PRECISE_L_FOOT, BODY_ZONE_PRECISE_R_FOOT)) + //We will round to this value in damage calculations. #define DAMAGE_PRECISION 0.1 diff --git a/code/__DEFINES/construction/material.dm b/code/__DEFINES/construction/material.dm index f01ea621183c..462e69334ae3 100644 --- a/code/__DEFINES/construction/material.dm +++ b/code/__DEFINES/construction/material.dm @@ -68,7 +68,7 @@ */ #define MATERIAL_NO_EDIBILITY (1<<6) -//Special return values of [/datum/component/material_container/insert_item] +//Special return values of [/datum/material_container/insert_item] /// No material was found inside them item #define MATERIAL_INSERT_ITEM_NO_MATS -1 /// The container does not have the space for the item diff --git a/code/__DEFINES/construction/structures.dm b/code/__DEFINES/construction/structures.dm index e48dc078ca4b..874978a8cc9e 100644 --- a/code/__DEFINES/construction/structures.dm +++ b/code/__DEFINES/construction/structures.dm @@ -1,12 +1,12 @@ //Defines for construction states //ai core defines -#define EMPTY_CORE 0 -#define CIRCUIT_CORE 1 -#define SCREWED_CORE 2 -#define CABLED_CORE 3 -#define GLASS_CORE 4 -#define AI_READY_CORE 5 +#define CORE_STATE_EMPTY 0 +#define CORE_STATE_CIRCUIT 1 +#define CORE_STATE_SCREWED 2 +#define CORE_STATE_CABLED 3 +#define CORE_STATE_GLASSED 4 +#define CORE_STATE_FINISHED 5 //girder construction states #define GIRDER_NORMAL 0 diff --git a/code/__DEFINES/crafting.dm b/code/__DEFINES/crafting.dm index 8bf1d73d0b8b..7a2097d14076 100644 --- a/code/__DEFINES/crafting.dm +++ b/code/__DEFINES/crafting.dm @@ -26,16 +26,16 @@ #define CRAFT_ON_SOLID_GROUND (1<<4) /// If the craft checks that there are objects with density in the same turf when being built #define CRAFT_CHECK_DENSITY (1<<5) -/// If the created atom will gain custom mat datums -#define CRAFT_APPLIES_MATS (1<<6) /// Crafting passes reagents of components to the finished product -#define CRAFT_TRANSFERS_REAGENTS (1<<7) +#define CRAFT_TRANSFERS_REAGENTS (1<<6) /// Crafting clears all reagents present in the finished product -#define CRAFT_CLEARS_REAGENTS (1<<8) -/// For the crafting unit test, ensures that the custom materials of an item are the same when crafted and spawned. -#define CRAFT_ENFORCE_MATERIALS_PARITY (1<<9) +#define CRAFT_CLEARS_REAGENTS (1<<7) +/// For the crafting unit test, we don't check if the custom materials of an item are the same when crafted and spawned should its recipe have this flag. +#define CRAFT_SKIP_MATERIALS_PARITY (1<<8) /// Exclusive to the personal_crafting component, skips the time spent crafting the recipe. -#define CRAFT_IGNORE_DO_AFTER (1<<10) +#define CRAFT_IGNORE_DO_AFTER (1<<9) +/// This craft won't change the materials of the resulting item to match that of the combined components +#define CRAFT_NO_MATERIALS (1<<10) //food/drink crafting defines //When adding new defines, please make sure to also add them to the encompassing list @@ -81,4 +81,4 @@ #define CAT_ENTERTAINMENT "Entertainment" #define CAT_TOOLS "Tools" #define CAT_CULT "Blood Cult" -#define CAT_TZIMISCE "Tzimisce" //DARKPACK EDIT ADD +#define CAT_TZIMISCE "Tzimisce" // DARKPACK EDIT ADD diff --git a/code/__DEFINES/dcs/declarations.dm b/code/__DEFINES/dcs/declarations.dm index f5be9fbc6d36..d6517601a355 100644 --- a/code/__DEFINES/dcs/declarations.dm +++ b/code/__DEFINES/dcs/declarations.dm @@ -68,6 +68,7 @@ #define CALTROP_SILENT (1 << 2) #define CALTROP_NOSTUN (1 << 3) #define CALTROP_NOCRAWL (1 << 4) +#define CALTROP_ANTS (1 << 5) //Ingredient type in datum/component/ingredients_holder #define CUSTOM_INGREDIENT_TYPE_EDIBLE 1 diff --git a/code/__DEFINES/dcs/signals/signals_action.dm b/code/__DEFINES/dcs/signals/signals_action.dm index 514a88b2bead..fe57adae363a 100644 --- a/code/__DEFINES/dcs/signals/signals_action.dm +++ b/code/__DEFINES/dcs/signals/signals_action.dm @@ -57,3 +57,6 @@ /// From /datum/action/vehicle/ridden/wheelchair/bell/Trigger(): #define COMSIG_WHEELCHAIR_BELL_RANG "wheelchair_bell_rang" + +/// From /datum/action/cooldown/spell/touch/lay_on_hands/proc/determine_if_this_hurts_instead(), sent to the /mob/living/carbon/hurtguy: (/mob/living/carbon/mendicant) +#define COMSIG_ON_LAY_ON_HANDS "mob_ability_lay_on_hands" diff --git a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_attack.dm b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_attack.dm index bf1f2eff3ab8..16c3fb9eb12f 100644 --- a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_attack.dm +++ b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_attack.dm @@ -14,7 +14,7 @@ #define COMPONENT_NO_AFTERATTACK (1<<0) ///from base of atom/attack_hulk(): (/mob/living/carbon/human) #define COMSIG_ATOM_HULK_ATTACK "hulk_attack" -///from base of atom/animal_attack(): (/mob/user) +///from base of atom/animal_attack(): (/mob/user, list/modifiers) #define COMSIG_ATOM_ATTACK_ANIMAL "attack_animal" //from base of atom/attack_basic_mob(): (/mob/user) #define COMSIG_ATOM_ATTACK_BASIC_MOB "attack_basic_mob" @@ -43,16 +43,18 @@ #define COMSIG_ATOM_ATTACK_GHOST "atom_attack_ghost" ///from base of atom/attack_hand(): (mob/user, list/modifiers) #define COMSIG_ATOM_ATTACK_HAND "atom_attack_hand" -///from base of atom/attack_paw(): (mob/user) +///from base of atom/attack_paw(): (mob/user, list/modifiers) #define COMSIG_ATOM_ATTACK_PAW "atom_attack_paw" ///from base of atom/mech_melee_attack(): (obj/vehicle/sealed/mecha/mecha_attacker, mob/living/user) #define COMSIG_ATOM_ATTACK_MECH "atom_attack_mech" -/// from base of atom/attack_robot(): (mob/user) +/// from base of atom/attack_robot(): (mob/user, list/modifiers) #define COMSIG_ATOM_ATTACK_ROBOT "atom_attack_robot" /// from base of atom/attack_robot_secondary(): (mob/user) #define COMSIG_ATOM_ATTACK_ROBOT_SECONDARY "atom_attack_robot_secondary" /// from base of atom/attack_ai(): (mob/user, params) #define COMSIG_ATOM_ATTACK_AI "atom_attack_ai" +/// from base of atom/attack_larva(): (mob/user, list/modifiers) +#define COMSIG_ATOM_ATTACK_LARVA "atom_attack_larva" ///from relay_attackers element: (atom/attacker, attack_flags) #define COMSIG_ATOM_WAS_ATTACKED "atom_was_attacked" ///Called before a atom gets something tilted on them. If [COMPONENT_IMMUNE_TO_TILT_AND_CRUSH] is returned in a signal, the atom will be unaffected: (atom/target, atom/source) @@ -72,3 +74,10 @@ /// Called on the atom being hit, from /datum/component/anti_magic/on_attack() : (obj/item/weapon, mob/user, antimagic_flags) #define COMSIG_ATOM_HOLYATTACK "atom_holyattacked" + +/// Called from [/mob/living/proc/send_item_attack_message()]: (obj/item/weapon, /mob/living/victim, mob/living/attacker) +#define COMSIG_SEND_ITEM_ATTACK_MESSAGE_OBJECT "send_item_attack_message_object" +/// Called from [/mob/living/proc/send_item_attack_message()]: (mob/living/victim, obj/item/weapon, mob/living/user) +#define COMSIG_SEND_ITEM_ATTACK_MESSAGE_CARBON "send_item_attack_message_carbon" + /// Return value if the hitby messages are changed. + #define SIGNAL_MESSAGE_MODIFIED (1<<0) diff --git a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_main.dm b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_main.dm index 522a5b72f559..b6cc94584beb 100644 --- a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_main.dm +++ b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_main.dm @@ -9,6 +9,8 @@ #define COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZED_ON "atom_init_success_on" ///from base of atom/examine(): (/mob, list/examine_text) #define COMSIG_ATOM_EXAMINE "atom_examine" +/// from base of atom/examine(): (/mob, list/examine_text) +#define COMSIG_CARBON_MID_EXAMINE "carbon_mid_examine" ///from base of atom/examine_tags(): (/mob, list/examine_tags) #define COMSIG_ATOM_EXAMINE_TAGS "atom_examine_tags" ///from base of atom/get_examine_name(): (/mob, list/overrides) @@ -76,9 +78,6 @@ #define COMSIG_ATOM_BUMPED "atom_bumped" ///from base of atom/has_gravity(): (turf/location, list/forced_gravities) #define COMSIG_ATOM_HAS_GRAVITY "atom_has_gravity" -///from internal loop in atom/movable/proc/CanReach(): (list/next) -#define COMSIG_ATOM_CANREACH "atom_can_reach" - #define COMPONENT_ALLOW_REACH (1<<0) ///for when an atom has been created through processing (atom/original_atom, list/chosen_processing_option) #define COMSIG_ATOM_CREATEDBY_PROCESSING "atom_createdby_processing" ///when an atom is processed (mob/living/user, obj/item/process_item, list/atom/results) @@ -135,9 +134,6 @@ ///cancel clean #define COMSIG_ATOM_CANCEL_CLEAN (1<<0) -/// From /obj/item/stack/make_item() -#define COMSIG_ATOM_CONSTRUCTED "atom_constructed" - /// From /obj/effect/particle_effect/sparks/proc/sparks_touched(datum/source, atom/movable/singed) #define COMSIG_ATOM_TOUCHED_SPARKS "atom_touched_sparks" #define COMSIG_ATOM_TOUCHED_HAZARDOUS_SPARKS "atom_touched_hazardous_sparks" diff --git a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_x_act.dm b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_x_act.dm index 0b7329127264..33fad5b5309a 100644 --- a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_x_act.dm +++ b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_x_act.dm @@ -14,7 +14,7 @@ #define COMSIG_ATOM_EMP_ACT "atom_emp_act" ///from base of atom/fire_act(): (exposed_temperature, exposed_volume) #define COMSIG_ATOM_FIRE_ACT "atom_fire_act" -///from base of atom/bullet_act(): (/obj/proj, def_zone, piercing_hit, blocked) +///from base of atom/bullet_act(): (/obj/proj, def_zone, piercing_hit) #define COMSIG_ATOM_PRE_BULLET_ACT "pre_atom_bullet_act" /// All this does is prevent default bullet on_hit from being called, [BULLET_ACT_HIT] being return is implied #define COMPONENT_BULLET_ACTED (1<<0) @@ -24,8 +24,8 @@ #define COMPONENT_BULLET_PIERCED (1<<2) ///from base of atom/bullet_act(): (/obj/proj, def_zone, piercing_hit, blocked) #define COMSIG_ATOM_BULLET_ACT "atom_bullet_act" -///from base of atom/on_craft_completion(): (components, datum/crafting_recipe/current_recipe) -#define COMSIG_ATOM_ON_CRAFT "atom_checkparts" +///from base of atom/on_craft_completion(): (components, datum/crafting_recipe/current_recipe, atom/crafter) +#define COMSIG_ATOM_ON_CRAFT "atom_on_craft_completion" ///from base of atom/used_in_craft(): (atom/result) #define COMSIG_ATOM_USED_IN_CRAFT "atom_used_in_craft" ///from base of atom/blob_act(): (/obj/structure/blob) diff --git a/code/__DEFINES/dcs/signals/signals_bitrunning.dm b/code/__DEFINES/dcs/signals/signals_bitrunning.dm index fcce7ea68d0c..ccf47c226044 100644 --- a/code/__DEFINES/dcs/signals/signals_bitrunning.dm +++ b/code/__DEFINES/dcs/signals/signals_bitrunning.dm @@ -41,7 +41,7 @@ /// from /obj/machienry/quantum_server/station_spawn() #define COMSIG_BITRUNNER_STATION_SPAWN "bitrunner_station_spawn" -/// from /obj/machinery/quantum_server/stock_gear(): (mob/living/carbon/human/avatar, external_load_flags) +/// from /obj/machinery/quantum_server/stock_gear(): (mob/living/carbon/human/avatar, domain_flags) #define COMSIG_BITRUNNER_STOCKING_GEAR "bitrunner_stocking_gear" // Ladder diff --git a/code/__DEFINES/dcs/signals/signals_food.dm b/code/__DEFINES/dcs/signals/signals_food.dm index 1ab582428b7a..9dca9d304d08 100644 --- a/code/__DEFINES/dcs/signals/signals_food.dm +++ b/code/__DEFINES/dcs/signals/signals_food.dm @@ -2,9 +2,14 @@ //Food // Eating stuff +/// From datum/component/edible/proc/TakeBite: (atom/owner) +#define COMSIG_LIVING_EAT_FOOD "food_bit" /// From datum/component/edible/proc/TakeBite: (mob/living/eater, mob/feeder, bitecount, bitesize) #define COMSIG_FOOD_EATEN "food_eaten" #define DESTROY_FOOD (1<<0) +/// From datum/component/edible/proc/AttemptEat: (mob/living/eater, mob/feeder) +#define COMSIG_FOOD_ATTEMPT_EAT "food_attempt_eat" + // #define BLOCK_EAT_ATTEMPT (1<<0) /// From base of datum/component/edible/on_entered: (mob/crosser, bitecount) #define COMSIG_FOOD_CROSSED "food_crossed" /// From base of Component/edible/On_Consume: (mob/living/eater, mob/living/feeder) @@ -72,6 +77,9 @@ ///Sent to the newly spawned object when it's baked in an oven. #define COMSIG_ITEM_BAKED_RESULT "item_baked_result" +/// From /datum/element/basic_eating/finish_eating() : (mob/living/eater, mob/living/feeder) +#define COMSIG_ITEM_EATEN_BY_BASIC_MOB "item_eaten_by_basic_mob" + ///Called on the result spawned during decomposition: (obj/decomposed) #define COMSIG_OBJ_DECOMPOSITION_RESULT "obj_decomposition_result" diff --git a/code/__DEFINES/dcs/signals/signals_heretic.dm b/code/__DEFINES/dcs/signals/signals_heretic.dm index fb76b312316f..14fe7a51e535 100644 --- a/code/__DEFINES/dcs/signals/signals_heretic.dm +++ b/code/__DEFINES/dcs/signals/signals_heretic.dm @@ -16,3 +16,11 @@ /// For [/datum/status_effect/protective_blades] to signal when it is triggered #define COMSIG_BLADE_BARRIER_TRIGGERED "blade_barrier_triggered" + +/// at the end of determine_drafted_knowledge +#define COMSIG_HERETIC_SHOP_SETUP "heretic_shop_finished" + +/// called on the antagonist datum, upgrades the passive to level 2 +#define COMSIG_HERETIC_PASSIVE_UPGRADE_FIRST "heretic_passive_upgrade_first" +/// called on the antagonist datum, upgrades the passive to level 3 +#define COMSIG_HERETIC_PASSIVE_UPGRADE_FINAL "heretic_passive_upgrade_final" diff --git a/code/__DEFINES/dcs/signals/signals_lasertag.dm b/code/__DEFINES/dcs/signals/signals_lasertag.dm new file mode 100644 index 000000000000..ac7fd7c05b52 --- /dev/null +++ b/code/__DEFINES/dcs/signals/signals_lasertag.dm @@ -0,0 +1,13 @@ +///Sending this signal will return either BLOCK_FIRE bitflag or ALLOW_FIRE bitflag +#define COMSIG_LIVING_FIRING_PIN_CHECK "lasertag_firing_pin_check" + ///blocks the lasertag firing pin from authorizing the shot + #define BLOCK_FIRE (1 << 0) + ///allows the lasertag firing pin to authorize the shot + #define ALLOW_FIRE (1 << 1) + +///Neutral Lasertag team +#define LASERTAG_TEAM_NEUTRAL "neutral" +///Red Lasertag team +#define LASERTAG_TEAM_RED "red" +///Blue Lasertag team +#define LASERTAG_TEAM_BLUE "blue" diff --git a/code/__DEFINES/dcs/signals/signals_lockable_storage.dm b/code/__DEFINES/dcs/signals/signals_lockable_storage.dm new file mode 100644 index 000000000000..1c770ef257f4 --- /dev/null +++ b/code/__DEFINES/dcs/signals/signals_lockable_storage.dm @@ -0,0 +1,4 @@ +// /datum/component/lockable_storage signals + +///from base of /datum/component/lockable_storage/proc/set_lock_code(new_code): (obj/source, new_code) +#define COMSIG_LOCKABLE_STORAGE_SET_CODE "lockable_storage_set_code" diff --git a/code/__DEFINES/dcs/signals/signals_material_container.dm b/code/__DEFINES/dcs/signals/signals_material_container.dm index 2c77be55c315..f5faf4b9a677 100644 --- a/code/__DEFINES/dcs/signals/signals_material_container.dm +++ b/code/__DEFINES/dcs/signals/signals_material_container.dm @@ -1,14 +1,14 @@ //Material Container Signals -/// Called from datum/component/material_container/proc/can_hold_material() : (mat) +/// Called from datum/material_container/proc/can_hold_material() : (mat) #define COMSIG_MATCONTAINER_MAT_CHECK "matcontainer_mat_check" #define MATCONTAINER_ALLOW_MAT (1<<0) -/// Called from datum/component/material_container/proc/user_insert() : (target_item, user) +/// Called from datum/material_container/proc/user_insert() : (target_item, user) #define COMSIG_MATCONTAINER_PRE_USER_INSERT "matcontainer_pre_user_insert" #define MATCONTAINER_BLOCK_INSERT (1<<1) -/// Called from datum/component/material_container/proc/insert_item() : (item, primary_mat, mats_consumed, material_amount, context) +/// Called from datum/material_container/proc/insert_item() : (item, primary_mat, mats_consumed, material_amount, context) #define COMSIG_MATCONTAINER_ITEM_CONSUMED "matcontainer_item_consumed" -/// Called from datum/component/material_container/proc/retrieve_sheets() : (new_sheets, context) -#define COMSIG_MATCONTAINER_SHEETS_RETRIEVED "matcontainer_sheets_retrieved" +/// Called from datum/material_container/proc/retrieve_stack() : (new_stack, context) +#define COMSIG_MATCONTAINER_STACK_RETRIEVED "matcontainer_stack_retrieved" //mat container signals but from the ore silo's perspective /// Called from /obj/machinery/ore_silo/on_item_consumed() : (container, item_inserted, last_inserted_id, mats_consumed, amount_inserted) diff --git a/code/__DEFINES/dcs/signals/signals_medical.dm b/code/__DEFINES/dcs/signals/signals_medical.dm index 39bcb1d7cdde..de3814adb4a0 100644 --- a/code/__DEFINES/dcs/signals/signals_medical.dm +++ b/code/__DEFINES/dcs/signals/signals_medical.dm @@ -1,11 +1,11 @@ -/// From /datum/surgery/New(): (datum/surgery/surgery, surgery_location (body zone), obj/item/bodypart/targeted_limb) -#define COMSIG_MOB_SURGERY_STARTED "mob_surgery_started" - -/// From /datum/surgery/Destroy(): (surgery_type, surgery_location, obj/item/bodypart/targeted_limb) -#define COMSIG_MOB_SURGERY_FINISHED "mob_surgery_finished" - -/// From /datum/surgery_step/success(): (datum/surgery_step/step, mob/living/target, target_zone, obj/item/tool, datum/surgery/surgery, default_display_results) -#define COMSIG_MOB_SURGERY_STEP_SUCCESS "mob_surgery_step_success" +/// From /datum/surgery_operation/try_perform(): (datum/surgery_operation/operation, atom/movable/operating_on, tool) +#define COMSIG_LIVING_SURGERY_STARTED "mob_surgery_started" +/// From /datum/surgery_operation/try_perform(): (datum/surgery_operation/operation, atom/movable/operating_on, tool) +#define COMSIG_LIVING_SURGERY_FINISHED "mob_surgery_finished" +/// From /datum/surgery_operation/success(): (datum/surgery_operation/operation, atom/movable/operating_on, tool) +#define COMSIG_LIVING_SURGERY_SUCCESS "mob_surgery_step_success" +/// From /datum/surgery_operation/failure(): (datum/surgery_operation/operation, atom/movable/operating_on, tool) +#define COMSIG_LIVING_SURGERY_FAILED "mob_surgery_step_failed" /// From /obj/item/shockpaddles/do_help, after the defib do_after is complete, but before any effects are applied: (mob/living/defibber, obj/item/shockpaddles/source) #define COMSIG_DEFIBRILLATOR_PRE_HELP_ZAP "carbon_being_defibbed" @@ -19,7 +19,7 @@ /// From /obj/item/shockpaddles/proc/do_disarm(), sent to the shock-ee in non-revival scenarios: (obj/item/shockpaddles/source) #define COMSIG_HEARTATTACK_DEFIB "heartattack_defib" -/// From /datum/surgery/can_start(): (mob/source, datum/surgery/surgery, mob/living/patient) -#define COMSIG_SURGERY_STARTING "surgery_starting" - #define COMPONENT_CANCEL_SURGERY (1<<0) - #define COMPONENT_FORCE_SURGERY (1<<1) +/// Sent from /mob/living/perform_surgery: (mob/living/patient, list/possible_operations) +#define COMSIG_LIVING_OPERATING_ON "living_operating_on" +/// Sent from /mob/living/perform_surgery: (mob/living/patient, list/possible_operations) +#define COMSIG_LIVING_BEING_OPERATED_ON "living_being_operated_on" diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_basic.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_basic.dm index 01df92ebcc25..83084005dd51 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_basic.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_basic.dm @@ -28,3 +28,8 @@ #define COMSIG_BASICMOB_MUTATED "basicmob_mutated" ///cancel further mutation modifications to the mob such as shiny mutation. #define MUTATED_NO_FURTHER_MUTATIONS (1 << 0) + +/// from /mob/living/basic/raptor/proc/change_growth_stage() : (new_stage, prev_stage) +#define COMSIG_RAPTOR_GROWTH_STAGE_CHANGE "raptor_growth_stage_change" + /// Cancel raptor growth + #define COMPONENT_CANCEL_RAPTOR_GROWTH (1<<0) 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 655968cfa0e7..bcdecbfd1a31 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm @@ -19,7 +19,7 @@ #define COMSIG_CARBON_GAIN_WOUND "carbon_gain_wound" //from /datum/wound/proc/apply_wound() (/mob/living/carbon/C, /datum/wound/W, /obj/item/bodypart/L) #define COMSIG_CARBON_LOSE_WOUND "carbon_lose_wound" //from /datum/wound/proc/remove_wound() (/mob/living/carbon/C, /datum/wound/W, /obj/item/bodypart/L) /// Called after limb AND victim has been unset -#define COMSIG_CARBON_POST_LOSE_WOUND "carbon_post_lose_wound" //from /datum/wound/proc/remove_wound() (/datum/wound/lost_wound, /obj/item/bodypart/part, ignore_limb, replaced) +#define COMSIG_CARBON_POST_LOSE_WOUND "carbon_post_lose_wound" //from /datum/wound/proc/remove_wound() (/datum/wound/lost_wound, /obj/item/bodypart/part, ignore_limb, replaced, destroying) ///from base of /obj/item/bodypart/proc/can_attach_limb(): (new_limb, special) allows you to fail limb attachment #define COMSIG_ATTEMPT_CARBON_ATTACH_LIMB "attempt_carbon_attach_limb" #define COMPONENT_NO_ATTACH (1<<0) @@ -60,8 +60,6 @@ /// Called from bodypart being removed /obj/item/bodypart/proc/drop_limb(mob/living/carbon/old_owner, special, dismembered) #define COMSIG_BODYPART_REMOVED "bodypart_removed" -///from base of mob/living/carbon/soundbang_act(): (list(intensity)) -#define COMSIG_CARBON_SOUNDBANG "carbon_soundbang" ///from /item/organ/proc/Insert() (/obj/item/organ/) #define COMSIG_CARBON_GAIN_ORGAN "carbon_gain_organ" ///from /item/organ/proc/Remove() (/obj/item/organ/) @@ -99,8 +97,8 @@ #define COMSIG_CARBON_MOOD_UPDATE "carbon_mood_update" ///Called when a carbon attempts to eat (eating) #define COMSIG_CARBON_ATTEMPT_EAT "carbon_attempt_eat" - // Prevents the breath - #define COMSIG_CARBON_BLOCK_EAT (1 << 0) + // Prevents eating the food + #define BLOCK_EAT_ATTEMPT (1 << 0) ///Called when a carbon vomits : (distance, force) #define COMSIG_CARBON_VOMITED "carbon_vomited" ///Called from apply_overlay(cache_index, overlay) @@ -182,3 +180,19 @@ //from base of [/obj/effect/particle_effect/fluid/smoke/proc/smoke_mob]: (seconds_per_tick) #define COMSIG_CARBON_EXPOSED_TO_SMOKE "carbon_exposed_to_smoke" + +/// From /mob/living/carbon/human/proc/update_mob_height() : (old_height) +#define COMSIG_HUMAN_HEIGHT_UPDATED "human_height_updated" + +/// From /mob/living/carbon/proc/can_defib() : () +/// Return a defib result flag to override default defib brain check +#define COMSIG_CARBON_DEFIB_BRAIN_CHECK "carbon_defib_brain_check" + +/// From /mob/living/carbon/human/proc/defib_check() : () +/// Return a defib result flag to override default defib heart check +#define COMSIG_CARBON_DEFIB_HEART_CHECK "carbon_defib_heart_check" + +/// From /mob/living/carbon/human/proc/smart_equip_targeted(): (mob/living/carbon/human/user, obj/item/possible_container) +#define COMSIG_HUMAN_NON_STORAGE_HOTKEY "human_storage_hotkey" + /// Return to prevent the storage fail message + #define COMPONENT_STORAGE_HOTKEY_HANDLED (1<<0) diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_living.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_living.dm index 514f95db14af..78d7fe2ffa9c 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_living.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_living.dm @@ -16,10 +16,15 @@ #define COMSIG_ORGAN_SURGICALLY_INSERTED "organ_surgically_inserted" /// Called when an organ finishes inserting into a bodypart (obj/item/bodypart/limb, movement_flags) #define COMSIG_ORGAN_BODYPART_INSERTED "organ_bodypart_inserted" +/// Called when a organ's damage is adjusted apply_organ_damage (damage_amount, maximum, required_organ_flag) +#define COMSIG_ORGAN_ADJUST_DAMAGE "organ_adjust_damage" ///Called when movement intent is toggled. #define COMSIG_MOVE_INTENT_TOGGLED "move_intent_toggled" +/// Called when combat mode is toggled. +#define COMSIG_COMBAT_MODE_TOGGLED "combat_mode_toggled" + ///from base of mob/update_transform() #define COMSIG_LIVING_POST_UPDATE_TRANSFORM "living_post_update_transform" @@ -193,6 +198,9 @@ #define TREAT_TTS_FILTER_ARG 3 #define TREAT_CAPITALIZE_MESSAGE 4 +/// From mob/living/send_speech(): (atom/source, list/listeners) +#define COMSIG_LIVING_SEND_SPEECH "living_send_speech" + ///From obj/item/toy/crayon/spraycan #define COMSIG_LIVING_MOB_PAINTED "living_mob_painted" @@ -210,6 +218,10 @@ #define COMSIG_LIVING_SHAPESHIFTED "living_shapeshifted" /// From /datum/status_effect/shapechange_mob/after_unchange(): (mob/living/caster) #define COMSIG_LIVING_UNSHAPESHIFTED "living_unshapeshifted" +// DARKPACK EDIT ADD START +/// From /datum/status_effect/shapechange_mob/after_unchange(): (mob/living/old_mob) +#define COMSIG_LIVING_RETURNED_FROM_SHAPESHIFT "living_return_from_shapeshift" +// DARKPACK EDIT ADD END ///From /obj/effect/rune/convert/do_sacrifice() : (list/invokers) #define COMSIG_LIVING_CULT_SACRIFICED "living_cult_sacrificed" @@ -314,6 +326,10 @@ /// From /obj/machinery/gibber/startgibbing(): (mob/living/user, /obj/machinery/gibber, list/results) #define COMSIG_LIVING_GIBBER_ACT "living_gibber_act" +/// From /mob/living/get_eye_protection() (list/reflist) +#define COMSIG_LIVING_GET_EAR_PROTECTION "living_get_ear_protection" + #define EAR_PROTECTION_ARG 1 + /// Sent to the mob when their mind is slaved #define COMSIG_MOB_ENSLAVED_TO "mob_enslaved_to" /// From /obj/item/proc/attack_atom: (mob/living/attacker, atom/attacked, list/modifiers) @@ -334,14 +350,6 @@ /// From /obj/item/book/bible/attack() : (mob/living/user, obj/item/book/bible/bible, bless_result) #define COMSIG_LIVING_BLESSED "living_blessed" -/// From /datum/surgery_step/initiate() : (mob/living/user, mob/living/target, target_zone, obj/item/tool, datum/surgery/surgery, datum/surgery_step/step, list/modifiers) -#define COMSIG_LIVING_INITIATE_SURGERY_STEP "living_initiate_surgery_step" -#define COMSIG_LIVING_SURGERY_STEP_INITIATED_ON "living_surgery_step_initiated_on" - /// Index in modifiers containing the modifier to failure chance - #define FAIL_PROB_INDEX 1 - /// Index in modifiers containing the modifer to surgery speed - #define SPEED_MOD_INDEX 2 - /// From /datum/status_effect/proc/on_creation() : (datum/status_effect/effect) #define COMSIG_LIVING_STATUS_APPLIED "living_status_applied" @@ -361,3 +369,17 @@ #define COMSIG_LIVING_DROP_LOOT "living_drop_loot" /// Prevent loot from being dropped #define COMPONENT_NO_LOOT_DROP (1<<0) +/// From /datum/element/death_drops/on_death(mob/living/target, gibbed) : (list/loot, gibbed) +#define COMSIG_LIVING_DROPPED_LOOT "living_dropped_loot" + +/// From /mob/living/proc/mob_pickup() : (mob/living/user, obj/item/mob_holder/holder) +#define COMSIG_LIVING_SCOOPED_UP "living_scooped_up" + +/// From /mob/living/proc/update_blood_status(), sent when the return value of /mob/living/proc/can_have_blood() changes : (had_blood, has_blood, old_blood_volume, new_blood_volume) +#define COMSIG_LIVING_UPDATE_BLOOD_STATUS "living_update_blood_status" + +/// From /mob/living/proc/update_nutrition() +#define COMSIG_LIVING_UPDATE_NUTRITION "living_update_nutrition" + +/// Sent to a mob when one of their bodypart's surgery state changes, OR sent from the basic_surgery_state holder when its surgery state changes (old_state, new_state, changed_states) +#define COMSIG_LIVING_UPDATING_SURGERY_STATE "carbon_updating_surgery_state" 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 c9f9b283271d..2db139bceedf 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm @@ -1,6 +1,3 @@ -///Called on user, from base of /datum/strippable_item/perform_alternate_action() (atom/target, action_key) -#define COMSIG_TRY_ALT_ACTION "try_alt_action" - #define COMPONENT_CANT_ALT_ACTION (1<<0) ///Called on /basic when updating its speed, from base of /mob/living/basic/update_basic_mob_varspeed(): () #define POST_BASIC_MOB_UPDATE_VARSPEED "post_basic_mob_update_varspeed" ///from base of /mob/Login(): () @@ -15,6 +12,8 @@ #define COMSIG_MOB_REAGENT_TICK "mob_reagent_tick" ///stops the reagent check call #define COMSIG_MOB_STOP_REAGENT_TICK (1<<0) + ///Allows for most on_life calls BUT metabolize() + #define COMSIG_MOB_STOP_REAGENT_METABOLISM (1<<1) ///from base of mob/clickon(): (atom/A, list/modifiers) #define COMSIG_MOB_CLICKON "mob_clickon" ///from base of mob/MiddleClickOn(): (atom/A) @@ -82,6 +81,8 @@ ///signal sent when a mob has their holy role set. Sent to the mob having their role changed. #define COMSIG_MOB_MIND_SET_HOLY_ROLE "mob_mind_set_holy_role" +///signal sent when a mob has their job role set. Sent to the mob having their role changed. +#define COMSIG_MOB_MIND_SET_ROLE "mob_mind_set_role" ///from base of obj/allowed(mob/M): (/obj) returns ACCESS_ALLOWED if mob has id access to the obj #define COMSIG_MOB_TRIED_ACCESS "tried_access" @@ -227,12 +228,12 @@ ///from living/flash_act(), when a mob is successfully flashed. #define COMSIG_MOB_FLASHED "mob_flashed" -/// from /obj/item/assembly/flash/flash_carbon, to the mob being flashed +/// from /obj/item/assembly/flash/flash_mob, to the mob being flashed #define COMSIG_MOB_FLASH_OVERRIDE_CHECK "mob_flash_override_check" /// Has the flash effect been overridden? #define FLASH_OVERRIDDEN (1<<0) /// from /obj/item/assembly/flash/flash_carbon, to the mob flashing another carbon -#define COMSIG_MOB_PRE_FLASHED_CARBON "mob_pre_flashed_carbon" +#define COMSIG_MOB_PRE_FLASHED_MOB "mob_pre_flashed_mob" /// Return to override deviation to be full deviation (fail the flash, usually) #define DEVIATION_OVERRIDE_FULL (1<<0) /// Return to override deviation to be partial deviation @@ -241,9 +242,9 @@ #define DEVIATION_OVERRIDE_NONE (1<<2) /// Return to stop the flash entirely #define STOP_FLASH (1<<3) -/// from /obj/item/assembly/flash/flash_carbon, to the mob flashing another carbon +/// from /obj/item/assembly/flash/flash_mob, to the mob flashing another carbon /// (mob/living/carbon/flashed, obj/item/assembly/flash/flash, deviation (from code/__DEFINES/mobs.dm)) -#define COMSIG_MOB_SUCCESSFUL_FLASHED_CARBON "mob_success_flashed_carbon" +#define COMSIG_MOB_SUCCESSFUL_FLASHED_MOB "mob_success_flashed_mob" /// from mob/get_status_tab_items(): (list/items) #define COMSIG_MOB_GET_STATUS_TAB_ITEMS "mob_get_status_tab_items" diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_silicon.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_silicon.dm index 564465dfcf2b..f68b08402059 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_silicon.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_silicon.dm @@ -8,10 +8,6 @@ #define COMSIG_BORG_HUG_HANDLED 1 ///called from /mob/living/silicon/attack_hand proc #define COMSIG_MOB_PAT_BORG "mob_pat_borg" -///called when someone is inquiring about an AI's linked core -#define COMSIG_SILICON_AI_CORE_STATUS "AI_core_status" - #define COMPONENT_CORE_ALL_GOOD (1<<0) - #define COMPONENT_CORE_DISCONNECTED (1<<1) ///called when an AI (malf or perhaps combat upgraded or some other circumstance that has them inhabit ///an APC) enters an APC #define COMSIG_SILICON_AI_OCCUPY_APC "AI_occupy_apc" diff --git a/code/__DEFINES/dcs/signals/signals_object.dm b/code/__DEFINES/dcs/signals/signals_object.dm index d09d74c50987..487872df0536 100644 --- a/code/__DEFINES/dcs/signals/signals_object.dm +++ b/code/__DEFINES/dcs/signals/signals_object.dm @@ -17,6 +17,9 @@ #define COMSIG_LIONHUNTER_ON_HIT "lionhunter_on_hit" +/// from /datum/component/subtype_picker/pick_subtype(): (obj/item/old_item, mob/picker) +#define COMSIG_ITEM_SUBTYPE_PICKER_SELECTED "item_subtype_picker_selected" + // /obj/machinery signals ///from /obj/machinery/atom_break(damage_flag): (damage_flag) @@ -145,6 +148,8 @@ #define COMSIG_ITEM_DRIED "item_dried" ///from base of obj/item/dropped(): (mob/user) #define COMSIG_ITEM_DROPPED "item_drop" +///a mob has just dropped an item +#define COMSIG_MOB_DROPPED_ITEM "mob_dropped_item" ///from base of obj/item/pickup(): (/mob/taker) #define COMSIG_ITEM_PICKUP "item_pickup" ///from base of obj/item/on_outfit_equip(): (mob/equipper, visuals_only, slot) @@ -154,6 +159,19 @@ ///from base of datum/storage/handle_exit(): (datum/storage/storage) #define COMSIG_ITEM_UNSTORED "item_unstored" +/** + * From base of datum/strippable_item/get_alternate_actions(): (atom/owner, mob/user, list/alt_actions) + * As a side note, make sure the strippable item datum (the slot) in question doesn't have too many alternate actions already, + * as only up to three are supported at a time (as of september 2025), though, so far only the jumpsuit slot uses all three slots. + * + * Also make sure to code the alt action and add it to the StripMenu.tsx interface + */ +#define COMSIG_ITEM_GET_STRIPPABLE_ALT_ACTIONS "item_get_strippable_alt_actions" + +/// From base of datum/strippable_item/perform_alternate_action(): (atom/owner, mob/user, action_key) +#define COMSIG_ITEM_STRIPPABLE_ALT_ACTION "item_strippable_alt_action" + #define COMPONENT_ALT_ACTION_DONE (1<<0) + ///from base of obj/item/apply_fantasy_bonuses(): (bonus) #define COMSIG_ITEM_APPLY_FANTASY_BONUSES "item_apply_fantasy_bonuses" ///from base of obj/item/remove_fantasy_bonuses(): (bonus) @@ -208,6 +226,8 @@ #define COMSIG_MULTITOOL_REMOVE_BUFFER "multitool_remove_buffer" ///from [/obj/effect/mine/proc/triggermine]: #define COMSIG_MINE_TRIGGERED "minegoboom" +///from [/obj/structure/closet/supplypod/proc/handleReturnAfterDeparting]: +#define COMSIG_SUPPLYPOD_RETURNING "supplypodgohome" ///from [/obj/structure/closet/supplypod/proc/preOpen]: #define COMSIG_SUPPLYPOD_LANDED "supplypodgoboom" @@ -359,7 +379,7 @@ #define COMPONENT_CANCEL_SAWING_OFF (1<<0) #define COMSIG_GUN_SAWN_OFF "gun_sawn_off" -///called in /obj/item/firing_pin/proc/gun_insert(mob/living/user, obj/item/gun/new_gun): (obj/item/firing_pin/pin, mob/living/user) +///called in /obj/item/firing_pin/proc/gun_insert(mob/living/user, obj/item/gun/new_gun, starting): (obj/item/firing_pin/pin, mob/living/user, starting) #define COMSIG_GUN_PIN_INSERTED "gun_pin_inserted" ///called in /obj/item/firing_pin/proc/gun_remove(mob/living/user): (obj/item/firing_pin/pin, mob/living/user) @@ -483,13 +503,17 @@ #define COMSIG_ITEM_ATTACK_SELF_SECONDARY "item_attack_self_secondary" ///from base of obj/item/attack_atom(): (/atom, /mob, list/modifiers) #define COMSIG_ITEM_ATTACK_ATOM "item_attack_atom" -///from base of obj/item/pre_attack(): (atom/target, mob/user, list/modifiers) +///from base of obj/item/pre_attack(): (atom/target, mob/user, list/modifiers, list/attack_modifiers) #define COMSIG_ITEM_PRE_ATTACK "item_pre_attack" +///from base of obj/item/pre_attack(): (obj/item/weapon, atom/target, list/modifiers, list/attack_modifiers) +#define COMSIG_USER_PRE_ITEM_ATTACK "user_pre_item_attack" /// From base of [/obj/item/proc/pre_attack_secondary()]: (atom/target, mob/user, list/modifiers, list/attack_modifiers) #define COMSIG_ITEM_PRE_ATTACK_SECONDARY "item_pre_attack_secondary" #define COMPONENT_SECONDARY_CANCEL_ATTACK_CHAIN (1<<0) #define COMPONENT_SECONDARY_CONTINUE_ATTACK_CHAIN (1<<1) #define COMPONENT_SECONDARY_CALL_NORMAL_ATTACK_CHAIN (1<<2) +///from base of obj/item/pre_attack_secondary(): (obj/item/weapon, atom/target, list/modifiers, list/attack_modifiers) +#define COMSIG_USER_PRE_ITEM_ATTACK_SECONDARY "user_pre_item_attack_secondary" /// From base of [/obj/item/proc/attack_secondary()]: (atom/target, mob/user, list/modifiers, list/attack_modifiers) #define COMSIG_ITEM_ATTACK_SECONDARY "item_attack_secondary" ///from base of [obj/item/attack()]: (atom/target, mob/user, proximity_flag, list/modifiers) @@ -518,7 +542,7 @@ #define COMSIG_SPEED_POTION_APPLIED "speed_potion" #define SPEED_POTION_STOP (1<<0) -/// from /obj/item/detective_scanner/scan(): (mob/user, list/extra_data) +/// from /obj/item/detective_scanner/scan(): (mob/user, datum/detective_scanner_log/entry) #define COMSIG_DETECTIVE_SCANNED "det_scanned" /// from /obj/plunger_act when an object is being plungered @@ -615,3 +639,9 @@ /// Sent from /obj/machinert/console/camera_advanced/attack_hand() : (mob/eye/camera/remote/new_camera) #define COMSIG_ADVANCED_CAMERA_EYE_CREATED "advanced_camera_eye_created" + +/// Sent from /obj/item/mob_holder/purple_raptor/proc/toggle_wings() : (mob/living/carbon/human/user) +#define COMSIG_RAPTOR_WINGS_OPENED "raptor_wings_opened" + +/// Sent from /obj/item/mob_holder/purple_raptor/proc/toggle_wings() : (mob/living/carbon/human/user) +#define COMSIG_RAPTOR_WINGS_CLOSED "raptor_wings_closed" diff --git a/code/__DEFINES/dcs/signals/signals_shuttle.dm b/code/__DEFINES/dcs/signals/signals_shuttle.dm index 69aa13c39003..1f4f596fc74d 100644 --- a/code/__DEFINES/dcs/signals/signals_shuttle.dm +++ b/code/__DEFINES/dcs/signals/signals_shuttle.dm @@ -9,3 +9,9 @@ //from base of /proc/expand_shuttle() : (list/turfs) #define COMSIG_SHUTTLE_EXPANDED "shuttle_expanded" + +//from base of /turf/fromShuttleMove() : (turf/new_turf, move_mode) +#define COMSIG_SHUTTLE_TURF_SHOULD_MOVE_SPECIAL "shuttle_turf_should_move_special" + +//from base of /obj/docking_port/mobile/proc/takeoff() : (turf/new_turf, movement_force, movement_direction, /obj/docking_port/stationary/old_dock, /obj/docking_port/mobile/shuttle) +#define COMSIG_SHUTTLE_TURF_ON_MOVE_SPECIAL "shuttle_turf_on_move_special" diff --git a/code/__DEFINES/dcs/signals/signals_status_effect.dm b/code/__DEFINES/dcs/signals/signals_status_effect.dm new file mode 100644 index 000000000000..917f5dffc9af --- /dev/null +++ b/code/__DEFINES/dcs/signals/signals_status_effect.dm @@ -0,0 +1,2 @@ +/// From /datum/status_effect/fire_handler/fire_stacks/tick() +#define COMSIG_FIRE_STACKS_UPDATED "fire_stacks_updated" diff --git a/code/__DEFINES/dcs/signals/signals_storage.dm b/code/__DEFINES/dcs/signals/signals_storage.dm index 26459ab4dad3..98fc78018504 100644 --- a/code/__DEFINES/dcs/signals/signals_storage.dm +++ b/code/__DEFINES/dcs/signals/signals_storage.dm @@ -5,6 +5,11 @@ /// Sent after dumping into some other storage object: (atom/dest_object, mob/user) #define COMSIG_STORAGE_DUMP_POST_TRANSFER "storage_dump_into_storage" +/// Sent before storing an item (obj/item/being_stored, mob/user, force, messages) +#define COMSIG_ATOM_PRE_STORED_ITEM "atom_pre_storing_item" + /// Return to block the item from being stored. + #define BLOCK_STORAGE_INSERT (1<<0) + /// Fired off the storage's PARENT when an ITEM is STORED INSIDE. (obj/item, mob, force) #define COMSIG_ATOM_STORED_ITEM "atom_storing_item" diff --git a/code/__DEFINES/dcs/signals/signals_techweb.dm b/code/__DEFINES/dcs/signals/signals_techweb.dm index 7765bfe5a3a6..ce0b5bc3f45f 100644 --- a/code/__DEFINES/dcs/signals/signals_techweb.dm +++ b/code/__DEFINES/dcs/signals/signals_techweb.dm @@ -3,3 +3,6 @@ /// Called when a techweb design is removed (datum/design/removed_design, custom) #define COMSIG_TECHWEB_REMOVE_DESIGN "techweb_remove_design" + +/// Called when an experiment is completed (datum/experiment/completed_experiment,) +#define COMSIG_TECHWEB_EXPERIMENT_COMPLETED "techweb_experiment_completed" diff --git a/code/__DEFINES/dcs/signals/signals_tools.dm b/code/__DEFINES/dcs/signals/signals_tools.dm index 110db1ed89c1..a3cc381b97e5 100644 --- a/code/__DEFINES/dcs/signals/signals_tools.dm +++ b/code/__DEFINES/dcs/signals/signals_tools.dm @@ -5,3 +5,10 @@ #define COMSIG_TOOL_ATOM_ACTED_PRIMARY(tooltype) "tool_atom_acted_[tooltype]" ///Called from /atom/proc/tool_act (atom) #define COMSIG_TOOL_ATOM_ACTED_SECONDARY(tooltype) "tool_atom_acted_[tooltype]" + +//Called when a tool attempts to pry open an airlock. Called from /obj/machinery/door/airlock/try_to_crowbar +#define COMSIG_TOOL_FORCE_OPEN_AIRLOCK "tool_force_open_airlock" + //If this value is returned, prevents the airlock from being forced open. + #define COMPONENT_TOOL_DO_NOT_ALLOW_FORCE_OPEN (1<<0) + //If this value is returned, it means the tool successfully opened the airlock without interruption + #define COMPONENT_TOOL_ALLOW_FORCE_OPEN (1<<1) diff --git a/code/__DEFINES/directional.dm b/code/__DEFINES/directional.dm index 83d8ce01d0a8..37ec9abd49d9 100644 --- a/code/__DEFINES/directional.dm +++ b/code/__DEFINES/directional.dm @@ -45,3 +45,25 @@ dir = WEST; \ pixel_x = -offset; \ } + +/// Create diagonal subtypes for a path to simplify mapping. +#define MAPPING_DIAGONAL_HELPERS(path, offset) ##path/directional/northeast {\ + dir = NORTHEAST; \ + pixel_x = offset; \ + pixel_y = offset; \ +} \ +##path/directional/northwest {\ + dir = NORTHWEST; \ + pixel_x = -offset; \ + pixel_y = offset; \ +} \ +##path/directional/southeast {\ + dir = SOUTHEAST; \ + pixel_x = offset; \ + pixel_y = -offset; \ +} \ +##path/directional/southwest {\ + dir = SOUTHWEST; \ + pixel_x = -offset; \ + pixel_y = -offset; \ +} diff --git a/code/__DEFINES/economy.dm b/code/__DEFINES/economy.dm index a1108ba7fb0f..a44bc26079ec 100644 --- a/code/__DEFINES/economy.dm +++ b/code/__DEFINES/economy.dm @@ -81,3 +81,18 @@ #define MARKET_TREND_STABLE 0 #define MARKET_EVENT_PROBABILITY 8 //Probability of a market event firing, in percent. Fires once per material, every stock market tick. + +// Fair warning that these defines at present are not used in all tgui, static descriptions, or any varible names or comments +/// The symbol for the default type of money used in the code. +#define MONEY_SYMBOL "cr" +/// The name for the default type of money used in the code. +#define MONEY_NAME "credits" +#define MONEY_NAME_SINGULAR "credit" +#define MONEY_NAME_CAPITALIZED "Credits" +// Due to the ways macros work, I cant just directly use credit\s. +// You will need to verify there is no loose use cases of credit\s. +// As of present there is none left floating around. +#define MONEY_NAME_AUTOPURAL(amount) "credit[##amount == 1 ? "" : "s"]" + +#define MONEY_MINING_SYMBOL "mp" +#define MONEY_BITRUNNING_SYMBOL "np" diff --git a/code/__DEFINES/experisci.dm b/code/__DEFINES/experisci.dm index c74290ff5f75..a1ffbc0b4b84 100644 --- a/code/__DEFINES/experisci.dm +++ b/code/__DEFINES/experisci.dm @@ -39,3 +39,5 @@ #define EXPERIMENT_CONFIG_SILENT_FAIL (1 << 2) /// Experiment handlers with this flag will bypass any delay when trying to scan something #define EXPERIMENT_CONFIG_IMMEDIATE_ACTION (1 << 3) +/// Experiment handlers with this flag will announce when an experiment is completed even if it isn't compatible with them. +#define EXPERIMENT_CONFIG_ALWAYS_ANNOUNCE (1 << 4) diff --git a/code/__DEFINES/files.dm b/code/__DEFINES/files.dm new file mode 100644 index 000000000000..6f0d36727a38 --- /dev/null +++ b/code/__DEFINES/files.dm @@ -0,0 +1,11 @@ +// None of these should be trusted for the purpose of user input +// They do not check the actual type of the file, a user could just rename it + +/// File types we can sniff the duration from using rustg. +#define IS_SOUND_FILE_SAFE(file) is_file_type_in_list(##file, SSsounds.safe_formats) + +#define IS_SOUND_FILE(file) is_file_type_in_list(##file, SSsounds.byond_sound_formats) + +#define IS_OGG_FILE(file) is_file_type(##file, "ogg") +#define IS_WAV_FILE(file) is_file_type(##file, "wav") +#define IS_MP3_FILE(file) is_file_type(##file, "mp3") diff --git a/code/__DEFINES/fish.dm b/code/__DEFINES/fish.dm index 825315e24b88..e3ab4ba5bd10 100644 --- a/code/__DEFINES/fish.dm +++ b/code/__DEFINES/fish.dm @@ -61,6 +61,8 @@ #define FISHING_LINE_STIFF (1 << 2) ///Skip the biting phase and go straight to the fishing phase. #define FISHING_LINE_AUTOREEL (1 << 3) +///Allow the fishing line to be cast through dense objects and walls +#define FISHING_LINE_PHASE (1 << 4) ///Keeps the bait from falling from gravity, instead allowing the player to move the bait down with right click. #define FISHING_MINIGAME_RULE_BIDIRECTIONAL (1 << 0) @@ -182,9 +184,9 @@ #define GET_FISH_WEIGHT_RANK(weighty) max(round(1 + log(2, max(weighty/FISH_WEIGHT_FORCE_DIVISOR, 1)), 1), 1) ///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. -#define NEW_FISH_LAST_FEEDING_MULT 0.33 +#define NEW_FISH_BREEDING_TIMEOUT_MULT 0.6 +///The last feeding timestamp of newly instantiated fish is multiplied by this. +#define NEW_FISH_LAST_FEEDING_MULT 0.33 //Their hunger meter starts at 33% ///If get_hunger is above this value, the fish is considered to be starving and will slowly lose health because of it #define FISH_STARVING_THRESHOLD 1 diff --git a/code/__DEFINES/food.dm b/code/__DEFINES/food.dm index 69f18887193f..0d8c3e09cd53 100644 --- a/code/__DEFINES/food.dm +++ b/code/__DEFINES/food.dm @@ -121,7 +121,7 @@ DEFINE_BITFIELD(foodtypes, list( #define FOOD_COMPLEXITY_5 5 /// Labels for food quality -GLOBAL_LIST_INIT(food_quality_description, list( +GLOBAL_ALIST_INIT(food_quality_description, alist( FOOD_QUALITY_NORMAL = "okay", FOOD_QUALITY_NICE = "nice", FOOD_QUALITY_GOOD = "good", @@ -131,19 +131,8 @@ GLOBAL_LIST_INIT(food_quality_description, list( FOOD_QUALITY_TOP = "godlike", )) -/// Mood events for food quality -GLOBAL_LIST_INIT(food_quality_events, list( - FOOD_QUALITY_NORMAL = /datum/mood_event/food, - FOOD_QUALITY_NICE = /datum/mood_event/food/nice, - FOOD_QUALITY_GOOD = /datum/mood_event/food/good, - FOOD_QUALITY_VERYGOOD = /datum/mood_event/food/verygood, - FOOD_QUALITY_FANTASTIC = /datum/mood_event/food/fantastic, - FOOD_QUALITY_AMAZING = /datum/mood_event/food/amazing, - FOOD_QUALITY_TOP = /datum/mood_event/food/top, -)) - /// Weighted lists of crafted food buffs randomly given according to crafting_complexity unless the food has a specific buff -GLOBAL_LIST_INIT(food_buffs, list( +GLOBAL_ALIST_INIT(food_buffs, alist( FOOD_COMPLEXITY_1 = list( /datum/status_effect/food/haste = 1, ), @@ -180,7 +169,7 @@ GLOBAL_LIST_INIT(food_buffs, list( // DARKPACK EDIT ADD START - FOOD //Food has state to swap to upon first bite #define FOOD_BITE_SPRITE (1<<4) -// DARKPACK EDIT ADD +// DARKPACK EDIT ADD END DEFINE_BITFIELD(food_flags, list( "FOOD_FINGER_FOOD" = FOOD_FINGER_FOOD, diff --git a/code/__DEFINES/footsteps.dm b/code/__DEFINES/footsteps.dm index 366a4d17b1b3..2d55c09ff08d 100644 --- a/code/__DEFINES/footsteps.dm +++ b/code/__DEFINES/footsteps.dm @@ -17,7 +17,7 @@ //misc footstep sounds #define FOOTSTEP_GENERIC_HEAVY "heavy" -// DARKPACK EDIT ADD START +// DARKPACK EDIT ADD START - WALLS #define FOOTSTEP_PARKET "parket" #define FOOTSTEP_ASPHALT "asphalt" #define FOOTSTEP_TRAVA "trava" @@ -107,23 +107,23 @@ GLOBAL_LIST_INIT(footstep, list( 'sound/effects/footstep/catwalk3.ogg', 'sound/effects/footstep/catwalk4.ogg', 'sound/effects/footstep/catwalk5.ogg'), 100, 1), - FOOTSTEP_PARKET = list(list( // DARKPACK EDIT ADD START - 'modular_darkpack/modules/deprecated/sounds/parket1.ogg', - 'modular_darkpack/modules/deprecated/sounds/parket2.ogg', - 'modular_darkpack/modules/deprecated/sounds/parket3.ogg'), 75, 1), + FOOTSTEP_PARKET = list(list( // DARKPACK EDIT ADD START - WALLS + 'modular_darkpack/modules/walls/sounds/parket1.ogg', + 'modular_darkpack/modules/walls/sounds/parket2.ogg', + 'modular_darkpack/modules/walls/sounds/parket3.ogg'), 75, 1), FOOTSTEP_ASPHALT = list(list( - 'modular_darkpack/modules/deprecated/sounds/asphalt1.ogg', - 'modular_darkpack/modules/deprecated/sounds/asphalt2.ogg'), 75, 1), + 'modular_darkpack/modules/walls/sounds/asphalt1.ogg', + 'modular_darkpack/modules/walls/sounds/asphalt2.ogg'), 75, 1), FOOTSTEP_SNOW = list(list( - 'modular_darkpack/modules/deprecated/sounds/snow2.ogg'), 10, 1), + 'modular_darkpack/modules/walls/sounds/snow2.ogg'), 10, 1), FOOTSTEP_TRAVA = list(list( - 'modular_darkpack/modules/deprecated/sounds/trava1.ogg', - 'modular_darkpack/modules/deprecated/sounds/trava2.ogg', - 'modular_darkpack/modules/deprecated/sounds/trava3.ogg'), 75, 1), + 'modular_darkpack/modules/walls/sounds/trava1.ogg', + 'modular_darkpack/modules/walls/sounds/trava2.ogg', + 'modular_darkpack/modules/walls/sounds/trava3.ogg'), 75, 1), FOOTSTEP_SIDEWALK = list(list( - 'modular_darkpack/modules/deprecated/sounds/sidewalk1.ogg', - 'modular_darkpack/modules/deprecated/sounds/sidewalk2.ogg', - 'modular_darkpack/modules/deprecated/sounds/sidewalk3.ogg'), 75, 1), // DARKPACK EDIT ADD END + 'modular_darkpack/modules/walls/sounds/sidewalk1.ogg', + 'modular_darkpack/modules/walls/sounds/sidewalk2.ogg', + 'modular_darkpack/modules/walls/sounds/sidewalk3.ogg'), 75, 1), // DARKPACK EDIT ADD END )) //bare footsteps lists @@ -168,7 +168,7 @@ GLOBAL_LIST_INIT(barefootstep, list( 'sound/effects/footstep/lava3.ogg'), 100, 0), FOOTSTEP_MEAT = list(list( 'sound/effects/meatslap.ogg'), 100, 0), - FOOTSTEP_PARKET = list(list( // DARKPACK EDIT ADD START + FOOTSTEP_PARKET = list(list( // DARKPACK EDIT ADD START - WALLS 'sound/effects/footstep/woodbarefoot1.ogg', 'sound/effects/footstep/woodbarefoot2.ogg', 'sound/effects/footstep/woodbarefoot3.ogg', @@ -181,12 +181,12 @@ GLOBAL_LIST_INIT(barefootstep, list( 'sound/effects/footstep/hardbarefoot4.ogg', 'sound/effects/footstep/hardbarefoot5.ogg'), 75, 1), FOOTSTEP_SNOW = list(list( - 'modular_darkpack/modules/deprecated/sounds/snow1.ogg', - 'modular_darkpack/modules/deprecated/sounds/snow2.ogg'), 75, 1), + 'modular_darkpack/modules/walls/sounds/snow1.ogg', + 'modular_darkpack/modules/walls/sounds/snow2.ogg'), 75, 1), FOOTSTEP_TRAVA = list(list( - 'modular_darkpack/modules/deprecated/sounds/trava1.ogg', - 'modular_darkpack/modules/deprecated/sounds/trava2.ogg', - 'modular_darkpack/modules/deprecated/sounds/trava3.ogg'), 75, 1), + 'modular_darkpack/modules/walls/sounds/trava1.ogg', + 'modular_darkpack/modules/walls/sounds/trava2.ogg', + 'modular_darkpack/modules/walls/sounds/trava3.ogg'), 75, 1), FOOTSTEP_SIDEWALK = list(list( 'sound/effects/footstep/hardbarefoot1.ogg', 'sound/effects/footstep/hardbarefoot2.ogg', diff --git a/code/__DEFINES/hud.dm b/code/__DEFINES/hud.dm index c8f0a9b66b5a..5ebb322a6668 100644 --- a/code/__DEFINES/hud.dm +++ b/code/__DEFINES/hud.dm @@ -200,6 +200,9 @@ #define ui_ghost_language_menu "SOUTH: 6, CENTER+4:22" #define ui_ghost_floor_changer "SOUTH: 6, CENTER+4:7" +//Voidwalker +#define ui_voidwalker_left_of_hands "CENTER+-2:16,SOUTH+0:5" + //Blobbernauts #define ui_blobbernaut_overmind_health "EAST-1:28,CENTER+0:19" diff --git a/code/__DEFINES/icon_smoothing.dm b/code/__DEFINES/icon_smoothing.dm index 7ba6b4a3cef7..e00866c95e20 100644 --- a/code/__DEFINES/icon_smoothing.dm +++ b/code/__DEFINES/icon_smoothing.dm @@ -140,12 +140,11 @@ DEFINE_BITFIELD(smoothing_junction, list( #define SMOOTH_GROUP_HIEROPHANT S_TURF(61) ///turf/closed/indestructible/riveted/hierophant #define SMOOTH_GROUP_PLASTINUM_WALLS S_TURF(62) ///turf/closed/indestructible/riveted/plastinum -// DARKPACK EDIT START +// DARKPACK EDIT CHANGE START - WALLS #define SMOOTH_GROUP_CITY_WALL S_TURF(63) ///turf/closed/wall/vampwall -#define SMOOTH_GROUP_CITY_LOW_WALL S_TURF(64) ///turf/closed/wall/vampwall/low -#define MAX_S_TURF 64 //Always match this value with the one above it. -// DARKPACK EDIT END +#define MAX_S_TURF 63 //Always match this value with the one above it. +// DARKPACK EDIT CHANGE END #define S_OBJ(num) ("-" + #num + ",") @@ -192,8 +191,8 @@ DEFINE_BITFIELD(smoothing_junction, list( // DARKPACK EDIT START #define SMOOTH_GROUP_REINFORCED_TABLES S_OBJ(57) ///obj/structure/table/reinforced -#define SMOOTH_GROUP_BACO_TABLES S_OBJ(58) ///obj/structure/table/bacotell -#define SMOOTH_GROUP_BUB_TABLES S_OBJ(59) ///obj/structure/table/bubway +#define SMOOTH_GROUP_BACO_TABLES S_OBJ(58) ///obj/structure/table/countertop/bacotell +#define SMOOTH_GROUP_BUB_TABLES S_OBJ(59) ///obj/structure/table/countertop/bubway // DARKPACK EDIT END #define SMOOTH_GROUP_ALIEN_NEST S_OBJ(60) ///obj/structure/bed/nest @@ -231,10 +230,15 @@ DEFINE_BITFIELD(smoothing_junction, list( #define SMOOTH_GROUP_PLATFORMS_PIZZA S_OBJ(85) ///obj/structure/platform/pizza #define SMOOTH_GROUP_PLATFORMS_PAPER S_OBJ(86) ///obj/structure/platform/paper +#define SMOOTH_GROUP_BOULDER_PLATFORM S_OBJ(87) ///obj/structure/lattice/catwalk/boulder + // DARKPACK EDIT START -#define SMOOTH_GROUP_VENTS S_OBJ(87) ///obj/structure/roofstuff/vent/autotiling -#define SMOOTH_GROUP_SPILL S_OBJ(88) ///obj/effect/decal/cleanable/gasoline +#define SMOOTH_GROUP_VENTS S_OBJ(88) ///obj/structure/roofstuff/vent/autotiling +#define SMOOTH_GROUP_SPILL S_OBJ(89) ///obj/effect/decal/cleanable/gasoline + +#define SMOOTH_GROUP_COLOR_COUNTERTOP S_OBJ(90) ///obj/structure/table/countertop/(color) // DARKPACK EDIT END +#define SMOOTH_GROUP_CITY_LOW_WALL S_TURF(91) ///obj/structure/platform/lowwall // DARKPACK EDIT ADD - WALLS /// Performs the work to set smoothing_groups and canSmoothWith. /// An inlined function used in both turf/Initialize and atom/Initialize. diff --git a/code/__DEFINES/inventory.dm b/code/__DEFINES/inventory.dm index 1c7b6a41f846..acb817510127 100644 --- a/code/__DEFINES/inventory.dm +++ b/code/__DEFINES/inventory.dm @@ -19,8 +19,9 @@ //Inventory depth: limits how many nested storage items you can access directly. //1: stuff in mob, 2: stuff in backpack, 3: stuff in box in backpack, etc -#define INVENTORY_DEPTH 3 -#define STORAGE_VIEW_DEPTH 2 +#define REACH_DEPTH_SELF 1 +/// A storage depth ontop of SELF. REACH_DEPTH_STORAGE(1) would allow an item inside of a backpack you are carrying. +#define REACH_DEPTH_STORAGE(level) (level + REACH_DEPTH_SELF) //ITEM INVENTORY SLOT BITMASKS /// Suit slot (armors, costumes, space suits, etc.) @@ -215,7 +216,7 @@ GLOBAL_LIST_INIT(any_suit_storage, typecacheof(list( /obj/item/radio, /obj/item/storage/bag/books, /obj/item/storage/fancy/cigarettes, - /obj/item/tank/jetpack/oxygen/captain, + /obj/item/tank/jetpack/captain, /obj/item/stack/spacecash, /obj/item/storage/wallet, /obj/item/folder, @@ -288,6 +289,8 @@ GLOBAL_LIST_INIT(chaplain_suit_allowed, list( /obj/item/tank/internals/plasmaman, /obj/item/gun/ballistic/bow/divine, /obj/item/gun/ballistic/revolver/chaplain, + /obj/item/toy/plush/carpplushie/nullrod, + /obj/item/melee/energy/sword/nullrod, )) //Allowed list for all mining suits diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm index 27e038bc7132..48e9e09cdb0e 100644 --- a/code/__DEFINES/is_helpers.dm +++ b/code/__DEFINES/is_helpers.dm @@ -175,6 +175,8 @@ GLOBAL_LIST_INIT(turfs_pass_meteor, typecacheof(list( #define is_simian(A) (isgorilla(A) || ismonkey(A)) +#define isstargazer(A) (istype(A, /mob/living/basic/heretic_summon/star_gazer)) + /// returns whether or not the atom is either a basic mob OR simple animal #define isanimal_or_basicmob(A) (istype(A, /mob/living/simple_animal) || istype(A, /mob/living/basic)) @@ -350,3 +352,4 @@ GLOBAL_LIST_INIT(book_types, typecacheof(list( #define is_multi_tile_object(atom) (atom.bound_width > ICON_SIZE_X || atom.bound_height > ICON_SIZE_Y) #define is_area_nearby_station(checked_area) (istype(checked_area, /area/space) || istype(checked_area, /area/space/nearstation) || istype(checked_area, /area/station/asteroid)) +#define is_area_virtual(checked_area) (GLOB.virtual_areas && GLOB.virtual_areas[(checked_area).type]) diff --git a/code/__DEFINES/jobs.dm b/code/__DEFINES/jobs.dm index 4a90ce567fa1..c5c663c130dc 100644 --- a/code/__DEFINES/jobs.dm +++ b/code/__DEFINES/jobs.dm @@ -9,6 +9,23 @@ /// Checks for character age. #define JOB_UNAVAILABLE_AGE 7 +// DARKPACK EDIT ADD START + +/// Checks for character species. +#define JOB_UNAVAILABLE_SPECIES 8 +/// Checks if the job has available species slots. +#define JOB_UNAVAILABLE_SPECIES_SLOTS 9 +/// Checks for character whitelist. +#define JOB_UNAVAILABLE_WHITELIST 10 +/// Checks for character kindred age. +#define JOB_UNAVAILABLE_KINDRED_AGE 11 +/// Checks for character kindred generation. +#define JOB_UNAVAILABLE_KINDRED_GENERATION 12 +/// Checks for character clan. +#define JOB_UNAVAILABLE_KINDRED_CLAN 13 + +// DARKPACK EDIT ADD END + /// Used when the `get_job_unavailable_error_message` proc can't make sense of a given code. #define GENERIC_JOB_UNAVAILABLE_ERROR "Error: Unknown job availability." @@ -203,6 +220,7 @@ #define DEPARTMENT_BITFLAG_CAPTAIN (1<<9) #define DEPARTMENT_CAPTAIN "Captain" +/* // DARKPACK EDIT REMOVAL START - JOBS DEFINE_BITFIELD(departments_bitflags, list( "SECURITY" = DEPARTMENT_BITFLAG_SECURITY, "COMMAND" = DEPARTMENT_BITFLAG_COMMAND, @@ -215,6 +233,7 @@ DEFINE_BITFIELD(departments_bitflags, list( "ASSISTANT" = DEPARTMENT_BITFLAG_ASSISTANT, "CAPTAIN" = DEPARTMENT_BITFLAG_CAPTAIN, )) +*/ // DARKPACK EDIT REMOVAL END /* Job datum job_flags */ /// Whether the mob is announced on arrival. @@ -265,7 +284,7 @@ DEFINE_BITFIELD(job_flags, list( )) /// Combination flag for jobs which are considered regular crew members of the station. -#define STATION_JOB_FLAGS (JOB_ANNOUNCE_ARRIVAL|JOB_CREW_MANIFEST|JOB_EQUIP_RANK|JOB_CREW_MEMBER|JOB_NEW_PLAYER_JOINABLE|JOB_REOPEN_ON_ROUNDSTART_LOSS|JOB_ASSIGN_QUIRKS|JOB_CAN_BE_INTERN) +#define STATION_JOB_FLAGS (JOB_ANNOUNCE_ARRIVAL|JOB_CREW_MANIFEST|JOB_EQUIP_RANK|JOB_CREW_MEMBER|JOB_HIDE_WHEN_EMPTY|JOB_LATEJOIN_ONLY|JOB_CANNOT_OPEN_SLOTS|JOB_REOPEN_ON_ROUNDSTART_LOSS|JOB_ASSIGN_QUIRKS|JOB_CAN_BE_INTERN) // DARKPACK EDIT, ORIGINAL: #define STATION_JOB_FLAGS (JOB_ANNOUNCE_ARRIVAL|JOB_CREW_MANIFEST|JOB_EQUIP_RANK|JOB_CREW_MEMBER|JOB_NEW_PLAYER_JOINABLE|JOB_REOPEN_ON_ROUNDSTART_LOSS|JOB_ASSIGN_QUIRKS|JOB_CAN_BE_INTERN) /// Combination flag for jobs which are considered heads of staff. #define HEAD_OF_STAFF_JOB_FLAGS (JOB_BOLD_SELECT_TEXT|JOB_CANNOT_OPEN_SLOTS|JOB_HEAD_OF_STAFF) /// Combination flag for jobs which are enabled by station traits. @@ -285,3 +304,5 @@ DEFINE_BITFIELD(job_flags, list( /// Mind traits that should be shared by every head of staff. has to be this way cause byond lists lol #define HEAD_OF_STAFF_MIND_TRAITS TRAIT_FAST_TYING, TRAIT_HIGH_VALUE_RANSOM +#define MEDICAL_MIND_TRAITS TRAIT_DESENSITIZED +#define SECURITY_MIND_TRAITS TRAIT_DESENSITIZED diff --git a/code/__DEFINES/jukebox.dm b/code/__DEFINES/jukebox.dm new file mode 100644 index 000000000000..29b4cdea7c9f --- /dev/null +++ b/code/__DEFINES/jukebox.dm @@ -0,0 +1,4 @@ +#define CONFIG_JUKEBOX_SOUNDS "[global.config.directory]/jukebox_music/sounds/" + +#define JUKEBOX_NAME 1 +#define JUKEBOX_BEATS 2 diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index d3679e4ad3c7..cc7c34c1f3a6 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -159,6 +159,9 @@ // 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 +/// Used to shift all topdown layer emissives to a the game plane equivalent layers, as otherwise they render above everything else due to being KEEP_APART +#define TOPDOWN_TO_EMISSIVE_LAYER(layer) LERP(FLOOR_EMISSIVE_START_LAYER, FLOOR_EMISSIVE_END_LAYER, (layer - (TOPDOWN_LAYER + 1)) / TOPDOWN_LAYER_COUNT) + // Must be equal to the offset of the highest topdown layer #define TOPDOWN_LAYER_COUNT 18 @@ -223,6 +226,7 @@ #define DOOR_ACCESS_HELPER_LAYER 2.71 //keep this above OPEN_DOOR_LAYER, special layer used for /obj/effect/mapping_helpers/airlock/access #define DOOR_HELPER_LAYER 2.72 //keep this above DOOR_ACCESS_HELPER_LAYER and OPEN_DOOR_LAYER since the others tend to have tiny sprites that tend to be covered up. #define PROJECTILE_HIT_THRESHHOLD_LAYER 2.75 //projectiles won't hit objects at or below this layer if possible +#define PLATFORM_LAYER 2.78 // DARKPACK EDIT ADD - (Allows tables to be placed ontop of platforms (but please dont)) #define TABLE_LAYER 2.8 #define GIB_LAYER 2.85 // sit on top of tables, but below machines #define BELOW_OBJ_LAYER 2.9 @@ -375,4 +379,4 @@ /// We expect at most 3 layers of multiz /// Increment this define if you make a huge map. We unit test for it too just to make it easy for you /// If you modify this, you'll need to modify the tsx file too -#define MAX_EXPECTED_Z_DEPTH 3 +#define MAX_EXPECTED_Z_DEPTH 5 // DARKPACK EDIT CHANGE - Our max is only 4 but I expect downstreams to need extra diff --git a/code/__DEFINES/living.dm b/code/__DEFINES/living.dm index 920b80544452..ac2cb64efaee 100644 --- a/code/__DEFINES/living.dm +++ b/code/__DEFINES/living.dm @@ -12,9 +12,15 @@ #define STOP_OVERLAY_UPDATE_BODY_PARTS (1<<2) /// Nutrition changed last life tick, so we should bulk update this tick #define QUEUE_NUTRITION_UPDATE (1<<3) +/// Blood volume has changed since the last [proc/update_blood_effects] call +#define QUEUE_BLOOD_UPDATE (1<<4) +/// This mob can have blood, cached value of [proc/can_have_blood] +#define LIVING_CAN_HAVE_BLOOD (1<<5) /// Getter for a mob/living's lying angle, otherwise protected #define GET_LYING_ANGLE(mob) (UNLINT(mob.lying_angle)) +/// Checks if the mob can have blood +#define CAN_HAVE_BLOOD(mob) (mob.living_flags & LIVING_CAN_HAVE_BLOOD) // Used in living mob offset list for determining pixel offsets #define PIXEL_W_OFFSET "w" diff --git a/code/__DEFINES/logging.dm b/code/__DEFINES/logging.dm index 62e7cee425a8..1e83d480488f 100644 --- a/code/__DEFINES/logging.dm +++ b/code/__DEFINES/logging.dm @@ -51,6 +51,7 @@ #define LOG_RADIO_EMOTE (1 << 20) #define LOG_SPEECH_INDICATORS (1 << 21) #define LOG_TRANSPORT (1 << 22) +#define LOG_STATS (1 << 23) // DARKPACK EDIT ADD - logging stats to prevent abuse //Individual logging panel pages #define INDIVIDUAL_GAME_LOG (LOG_GAME) @@ -114,6 +115,7 @@ #define LOG_CATEGORY_TRANSPORT "transport" #define LOG_CATEGORY_VIRUS "virus" #define LOG_CATEGORY_CAVE_GENERATION "cave-generation" +#define LOG_CATEGORY_STATS "stats" // DARKPACK EDIT ADD - logging stats to prevent abuse // Admin categories #define LOG_CATEGORY_ADMIN "admin" diff --git a/code/__DEFINES/magic.dm b/code/__DEFINES/magic.dm index ecc470c04e90..a44f8d9a59fa 100644 --- a/code/__DEFINES/magic.dm +++ b/code/__DEFINES/magic.dm @@ -90,6 +90,8 @@ DEFINE_BITFIELD(spell_requirements, list( /// Holy magic resistance that blocks unholy magic (revenant, vampire, voice of god) #define MAGIC_RESISTANCE_HOLY (1<<2) +#define ALL_MAGIC_RESISTANCE (MAGIC_RESISTANCE|MAGIC_RESISTANCE_MIND|MAGIC_RESISTANCE_HOLY) + DEFINE_BITFIELD(antimagic_flags, list( "MAGIC_RESISTANCE" = MAGIC_RESISTANCE, "MAGIC_RESISTANCE_HOLY" = MAGIC_RESISTANCE_HOLY, diff --git a/code/__DEFINES/map_switch.dm b/code/__DEFINES/map_switch.dm index dbb0059786ee..90ac0b78a986 100644 --- a/code/__DEFINES/map_switch.dm +++ b/code/__DEFINES/map_switch.dm @@ -3,6 +3,10 @@ // or if map tools ever agree on a standard, this should switch to use that. #ifdef CBT #define MAP_SWITCH(compile_time, map_time) ##compile_time +#define WHEN_MAP(map_time) // Not mapping, nothing here +#define WHEN_COMPILE(compile_time) ##compile_time #else #define MAP_SWITCH(compile_time, map_time) ##map_time +#define WHEN_MAP(map_time) ##map_time +#define WHEN_COMPILE(compile_time) // Not compiling, nothing here #endif diff --git a/code/__DEFINES/maps.dm b/code/__DEFINES/maps.dm index 37c3695bf481..6b89c1e6f7d4 100644 --- a/code/__DEFINES/maps.dm +++ b/code/__DEFINES/maps.dm @@ -251,6 +251,7 @@ Always compile, always use that verb, and always make sure that it works for wha #define AWAYSTART_SNOWCABIN "AWAYSTART_SNOWCABIN" #define AWAYSTART_SNOWDIN "AWAYSTART_SNOWDIN" #define AWAYSTART_UNDERGROUND "AWAYSTART_UNDERGROUND" +#define AWAYSTART_HERETIC "AWAYSTART_HERETIC" // Minetypes for maps #define MINETYPE_NONE "none" diff --git a/code/__DEFINES/melee.dm b/code/__DEFINES/melee.dm index c6bfbcddc76a..7762381d0e96 100644 --- a/code/__DEFINES/melee.dm +++ b/code/__DEFINES/melee.dm @@ -4,7 +4,7 @@ #define MARTIALART_CQC "CQC" #define MARTIALART_EVIL_BOXING "evil boxing" #define MARTIALART_HUNTER_BOXING "hunter boxing" -#define MARTIALART_KRAVMAGA "krav maga" +#define MARTIALART_KAZA_RUK "Kaza Ruk" #define MARTIALART_MUSHPUNCH "mushroom punch" #define MARTIALART_PLASMAFIST "plasma fist" #define MARTIALART_PSYCHOBRAWL "psychotic brawling" diff --git a/code/__DEFINES/mob_spawn.dm b/code/__DEFINES/mob_spawn.dm index 6e9fec3bed05..a54ca7993075 100644 --- a/code/__DEFINES/mob_spawn.dm +++ b/code/__DEFINES/mob_spawn.dm @@ -2,3 +2,12 @@ #define CORPSE_INSTANT 1 ///this mob spawn creates the corpse during GAME_STATE_PLAYING #define CORPSE_ROUNDSTART 2 + +// Flags for using your static for a ghost role +/// Ghost role will take on the player's species +#define GHOSTROLE_TAKE_PREFS_SPECIES (1<<0) +/// Ghost role will take on the player's apperance (though exlcuding name) +#define GHOSTROLE_TAKE_PREFS_APPEARANCE (1<<1) + +/// Return from create to stop the spawn process. Falsy value so one can just check !create() +#define CANCEL_SPAWN FALSE diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm index eff22d9d6e01..fb6b0f802a9c 100644 --- a/code/__DEFINES/mobs.dm +++ b/code/__DEFINES/mobs.dm @@ -3,8 +3,8 @@ //Misc mob defines //Ready states at roundstart for mob/dead/new_player -#define PLAYER_NOT_READY 0 -#define PLAYER_READY_TO_PLAY 1 +#define PLAYER_NOT_READY "Not Ready" +#define PLAYER_READY_TO_PLAY "Ready" //movement intent defines for the move_intent var #define MOVE_INTENT_WALK "walk" @@ -125,6 +125,8 @@ #define MOB_MINING (1 << 13) ///The mob is a crustacean. Like crabs. Or lobsters. #define MOB_CRUSTACEAN (1 << 14) +///The mob is all boney +#define MOB_SKELETAL (1 << 15) //Lung respiration type flags #define RESPIRATION_OXYGEN (1 << 0) @@ -161,6 +163,8 @@ #define BODYSHAPE_DIGITIGRADE (1<<2) ///The limb is snouted. #define BODYSHAPE_SNOUTED (1<<3) +/// Golem's wacky rocky limbs +#define BODYSHAPE_GOLEM (1<<4) #define BODYTYPE_BIOSCRAMBLE_INCOMPATIBLE (BODYTYPE_ROBOTIC | BODYTYPE_LARVA_PLACEHOLDER | BODYTYPE_GOLEM | BODYTYPE_PEG) #define BODYTYPE_CAN_BE_BIOSCRAMBLED(bodytype) (!(bodytype & BODYTYPE_BIOSCRAMBLE_INCOMPATIBLE)) @@ -193,7 +197,7 @@ #define SPECIES_SKELETON "skeleton" #define SPECIES_SNAIL "snail" #define SPECIES_VAMPIRE "vampire" -#define SPECIES_ZOMBIE "zombie" +#define SPECIES_ZOMBIE "rotten2" // DARKPACK EDIT -- Original : #define SPECIES_ZOMBIE "zombie" #define SPECIES_ZOMBIE_INFECTIOUS "memezombie" #define SPECIES_ZOMBIE_KROKODIL "krokodil_zombie" #define SPECIES_VOIDWALKER "voidwalker" @@ -480,7 +484,7 @@ #define REM REAGENTS_EFFECT_MULTIPLIER //! Shorthand for the above define for ease of use in equations and the like // Eye protection -// THese values are additive to determine your overall flash protection. +// These values are additive to determine your overall flash protection. #define FLASH_PROTECTION_HYPER_SENSITIVE -2 #define FLASH_PROTECTION_SENSITIVE -1 #define FLASH_PROTECTION_NONE 0 @@ -489,6 +493,29 @@ #define FLASH_PROTECTION_WELDER_SENSITIVE 3 #define FLASH_PROTECTION_WELDER_HYPER_SENSITIVE 4 +/** + * Ear protection + * These values are additive to determine your overall ear/soundbang protection + */ +#define EAR_PROTECTION_NONE 0 +#define EAR_PROTECTION_NORMAL 1 +#define EAR_PROTECTION_HEAVY 2 +#define EAR_PROTECTION_VACUUM 3 +#define EAR_PROTECTION_FULL INFINITY + +/** + * Soundbang defines + * These values are used as argument to determine the strength of the soundbang_act call + */ +///Soundbang strength for most things like flashbangs, honkblasts and harm control modules +#define SOUNDBANG_NORMAL 1 +///Soundbang strength for things like flashbangs in proximity and emagged harm alarm megaphones, cannot be countered by standard ear protection equipment +#define SOUNDBANG_STRONG 2 +///Soundbang strength for things like changeling shrieks, which can affect robots and aliens as well. +#define SOUNDBANG_MASSIVE 3 +///Soundbang strength for anything that cannot be stopped unless you're stacked on multiple effects and equipment to counter it (or are simply deaf) +#define SOUNDBANG_OVERWHELMING 4 + // AI Toggles #define AI_CAMERA_LUMINOSITY 5 #define AI_VOX // Comment out if you don't want VOX to be enabled and have players download the voice sounds. @@ -554,9 +581,11 @@ #define DEFIB_FAIL_NO_INTELLIGENCE (1<<8) #define DEFIB_FAIL_BLACKLISTED (1<<9) #define DEFIB_NOGRAB_AGHOST (1<<10) +#define DEFIB_FAIL_GOLEM (1<<11) +#define DEFIB_FAIL_STAKED (1<<12) // DARKPACK EDIT ADD // Bit mask of possible return values by can_defib that would result in a revivable patient -#define DEFIB_REVIVABLE_STATES (DEFIB_FAIL_NO_HEART | DEFIB_FAIL_FAILING_HEART | DEFIB_FAIL_HUSK | DEFIB_FAIL_TISSUE_DAMAGE | DEFIB_FAIL_FAILING_BRAIN | DEFIB_POSSIBLE) +#define DEFIB_REVIVABLE_STATES (DEFIB_FAIL_NO_HEART | DEFIB_FAIL_FAILING_HEART | DEFIB_FAIL_HUSK | DEFIB_FAIL_TISSUE_DAMAGE | DEFIB_FAIL_FAILING_BRAIN | DEFIB_FAIL_GOLEM | DEFIB_POSSIBLE) #define SLEEP_CHECK_DEATH(X, A) \ sleep(X); \ @@ -623,7 +652,7 @@ #define AI_EMOTION_UNSURE "Unsure" #define AI_EMOTION_CONFUSED "Confused" #define AI_EMOTION_SAD "Sad" -#define AI_EMOTION_BSOD "BSOD" +#define AI_EMOTION_BSOD "BSOD" //It is used only on EMP pulse displays. #define AI_EMOTION_BLANK "Blank" #define AI_EMOTION_PROBLEMS "Problems?" #define AI_EMOTION_AWESOME "Awesome" @@ -633,6 +662,8 @@ #define AI_EMOTION_DORFY "Dorfy" #define AI_EMOTION_BLUE_GLOW "Blue Glow" #define AI_EMOTION_RED_GLOW "Red Glow" +#define AI_EMOTION_DEAD "Dead" //This one is used when deactivating the AI +#define AI_EMOTION_DOWNLOAD "Download" // Defines for AI holograms #define AI_HOLOGRAM_CATEGORY_ANIMAL "Animal" @@ -668,8 +699,8 @@ #define GET_TARGETS_FROM(who) (who.targets_from ? who.get_targets_from() : who) //defines for grad_color and grad_styles list access keys -#define GRADIENT_HAIR_KEY 1 -#define GRADIENT_FACIAL_HAIR_KEY 2 +#define GRADIENT_HAIR_KEY "1" +#define GRADIENT_FACIAL_HAIR_KEY "2" // /datum/sprite_accessory/gradient defines #define GRADIENT_APPLIES_TO_HAIR (1<<0) @@ -710,9 +741,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 -#define TOTAL_LAYERS 40 // DARKPACK EDIT CHANGE - Shadows -/// Layer for shadow overlays under mobs -#define UNDERSHADOW_LAYER 39 // DARKPACK EDIT ADD - Shadows +#define TOTAL_LAYERS 39 /// Mutations layer - Tk headglows, cold resistance glow, etc #define MUTATIONS_LAYER 38 /// Mutantrace features (tail when looking south) that must appear behind the body parts @@ -1028,7 +1057,7 @@ GLOBAL_LIST_INIT(layers_to_offset, list( #define MINING_MOB_PROJECTILE_VULNERABILITY list(BRUTE) /// Helper macro that determines if the mob is at the threshold to start vomitting due to high toxin levels -#define AT_TOXIN_VOMIT_THRESHOLD(mob) (mob.getToxLoss() > 45 && mob.nutrition > 20) +#define AT_TOXIN_VOMIT_THRESHOLD(mob) (mob.get_tox_loss() > 45 && mob.nutrition > 20) /// The duration of the flip emote animation #define FLIP_EMOTE_DURATION 0.7 SECONDS diff --git a/code/__DEFINES/mod.dm b/code/__DEFINES/mod.dm index 5760dc5a05fd..8f6aa7a268fb 100644 --- a/code/__DEFINES/mod.dm +++ b/code/__DEFINES/mod.dm @@ -59,6 +59,10 @@ #define GAUNTLET_SEAL_MESSAGE "tighten around your fingers and wrists" #define BOOT_UNSEAL_MESSAGE "relax their grip on your legs" #define BOOT_SEAL_MESSAGE "seal around your feet" +#define GLASSES_UNSEAL_MESSAGE "moves away from your eyes" +#define GLASSES_SEAL_MESSAGE "settle onto your eyes" +#define NECKWEAR_UNSEAL_MESSAGE "looses around your neck" +#define NECKWEAR_SEAL_MESSAGE "tightens around your neck" /// Global list of all /datum/mod_theme GLOBAL_LIST_INIT(mod_themes, setup_mod_themes()) diff --git a/code/__DEFINES/monkeys.dm b/code/__DEFINES/monkeys.dm index f487f805d508..a4929bb84dcb 100644 --- a/code/__DEFINES/monkeys.dm +++ b/code/__DEFINES/monkeys.dm @@ -30,6 +30,8 @@ #define MONKEY_HATRED_AMOUNT 4 /// amount of aggro to add to an enemy when a monkey is recruited #define MONKEY_RECRUIT_HATED_AMOUNT 2 +/// amount of aggro to add if someone stole the food we wanted +#define MONKEY_FOOD_HATRED_AMOUNT 2 /// probability of reducing aggro by one when the monkey attacks #define MONKEY_HATRED_REDUCTION_PROB 20 diff --git a/code/__DEFINES/mood.dm b/code/__DEFINES/mood.dm index 60fadb031c11..0dcdc9340d6b 100644 --- a/code/__DEFINES/mood.dm +++ b/code/__DEFINES/mood.dm @@ -51,7 +51,7 @@ #define TERROR_HANDLER_EFFECT "effect" // Default cooldown for terror messages, to not get spammy -#define TERROR_MESSAGE_CD 30 SECONDS +#define TERROR_MESSAGE_CD 15 SECONDS // Values for terror buildup effects /// Initial value for effects that apply the component from spooking you @@ -75,3 +75,40 @@ #define PANIC_ATTACK_TERROR_AMOUNT 50 /// How much terror being hugged reduces, or increases if its done by a nightmare or someone you're afraid of #define HUG_TERROR_AMOUNT 90 + +/// Cooldown for phobia checks, to avoid constantly refreshing views +#define PHOBIA_CHECK_DELAY 5 SECONDS +/// Delay between phobia freakouts, also the time it takes for the buildup effect to fade away +#define PHOBIA_FREAKOUT_DELAY 12 SECONDS +/// Amount of terror granted whenever we hear a word we're afraid of +#define PHOBIA_WORD_TERROR_BUILDUP 40 +/// Amount of terror granted by each phobia trigger +#define PHOBIA_FREAKOUT_TERROR_BUILDUP 120 + +/// Cooldown for fear screams +#define TERROR_STARTLE_COOLDOWN 12 SECONDS +/// Minimum difference in fear per tick for screams to actually trigger, so we don't proc from minor fears +#define TERROR_STARTLE_MINIMUM_DIFFERENCE 40 + +/// Relates to fear or resisting fear +#define MOOD_EVENT_FEAR (1<<0) +/// Relates to art +#define MOOD_EVENT_ART (1<<1) +/// Relates to being a generally silly guy +#define MOOD_EVENT_WHIMSY (1<<2) +/// Playing games and goofing off +#define MOOD_EVENT_GAMING (1<<3) +/// Relates to food +#define MOOD_EVENT_FOOD (1<<4) +/// Relates to being in pain +#define MOOD_EVENT_PAIN (1<<5) +/// Relates to spirituality +#define MOOD_EVENT_SPIRITUAL (1<<6) + +/// Checks if the mob has the given personality typepath +#define HAS_PERSONALITY(mob, personality) (LAZYACCESS(mob.personalities, personality)) + +/// Return from /be_replaced or /be_refreshed to actually go prevent the new mood event from being added +#define BLOCK_NEW_MOOD FALSE +/// Return from /be_replaced or /be_refreshed to actually go through and allow the new mood event to be added +#define ALLOW_NEW_MOOD TRUE diff --git a/code/__DEFINES/obj_flags.dm b/code/__DEFINES/obj_flags.dm index 27f1fe87adac..ace8491fe6ac 100644 --- a/code/__DEFINES/obj_flags.dm +++ b/code/__DEFINES/obj_flags.dm @@ -1,20 +1,35 @@ // Flags for the obj_flags var on /obj - +/// Object has been affected by a cryptographic sequencer (EMAG) disabling it or causing other malicious effects #define EMAGGED (1<<0) -#define CAN_BE_HIT (1<<1) //can this be bludgeoned by items? -#define DANGEROUS_POSSESSION (1<<2) //Admin possession yes/no -#define UNIQUE_RENAME (1<<3) // can you customize the description/name of the thing? -#define BLOCK_Z_OUT_DOWN (1<<4) // Should this object block z falling from loc? -#define BLOCK_Z_OUT_UP (1<<5) // Should this object block z uprise from loc? -#define BLOCK_Z_IN_DOWN (1<<6) // Should this object block z falling from above? -#define BLOCK_Z_IN_UP (1<<7) // Should this object block z uprise from below? -#define BLOCKS_CONSTRUCTION (1<<8) //! Does this object prevent things from being built on it? -#define BLOCKS_CONSTRUCTION_DIR (1<<9) //! Does this object prevent same-direction things from being built on it? -#define IGNORE_DENSITY (1<<10) //! Can we ignore density when building on this object? (for example, directional windows and grilles) -#define INFINITE_RESKIN (1<<11) // We can reskin this item infinitely -#define CONDUCTS_ELECTRICITY (1<<12) //! Can this object conduct electricity? -#define NO_DEBRIS_AFTER_DECONSTRUCTION (1<<13) //! Atoms don't spawn anything when deconstructed. They just vanish +/// Can this be bludgeoned by items +#define CAN_BE_HIT (1<<1) +/// Admin possession yes/no +#define DANGEROUS_POSSESSION (1<<2) +/// Can you customize the description/name of the thing +#define UNIQUE_RENAME (1<<3) +/// If it can be renamed, is its description excluded +#define RENAME_NO_DESC (1<<4) +/// Should this object block z falling from loc +#define BLOCK_Z_OUT_DOWN (1<<5) +/// Should this object block z uprise from loc +#define BLOCK_Z_OUT_UP (1<<6) +/// Should this object block z falling from above +#define BLOCK_Z_IN_DOWN (1<<7) +/// Should this object block z uprise from below +#define BLOCK_Z_IN_UP (1<<8) +/// Does this object prevent things from being built on it +#define BLOCKS_CONSTRUCTION (1<<9) +/// Does this object prevent same-direction things from being built on it +#define BLOCKS_CONSTRUCTION_DIR (1<<10) +/// Can we ignore density when building on this object (for example, directional windows and grilles) +#define IGNORE_DENSITY (1<<11) +/// Can this object conduct electricity +#define CONDUCTS_ELECTRICITY (1<<12) +/// Atoms don't spawn anything when deconstructed (they just vanish) +#define NO_DEBRIS_AFTER_DECONSTRUCTION (1<<13) +/// Flag which tells an object to hang onto an support atom on late initialize. Usefull only during mapload and supported by some atoms only +#define MOUNT_ON_LATE_INITIALIZE (1<<14) // If you add new ones, be sure to add them to /obj/Initialize as well for complete mapping support @@ -95,6 +110,10 @@ #define HEADINTERNALS (1<<16) /// Prevents masks from getting adjusted from enabling internals #define INTERNALS_ADJUST_EXEMPT (1<<17) +/// Indicates that the piece of clothing contributes towards Sleeping Carp's style factor, which determines evasion probabilities. See /datums/martial/sleeping_carp/carp_style_check(). +#define CARP_STYLE_FACTOR (1<<18) +/// Prevents clothing from losing bodyparts coverage when shredded +#define NO_ZONE_DISABLING (1<<19) /// Integrity defines for clothing (not flags but close enough) #define CLOTHING_PRISTINE 0 // We have no damage on the clothing @@ -119,3 +138,7 @@ #define INCLUDE_POCKETS (1<<0) #define INCLUDE_ACCESSORIES (1<<1) #define INCLUDE_HELD (1<<2) +/// Include prosthetic item limbs (which are not flavoured as being equipped items) +#define INCLUDE_PROSTHETICS (1<<3) +/// Include items that are not "real" items, such as hand items +#define INCLUDE_ABSTRACT (1<<4) diff --git a/code/__DEFINES/plumbing.dm b/code/__DEFINES/plumbing.dm index 432f8ca4357c..2168a0a0cfd8 100644 --- a/code/__DEFINES/plumbing.dm +++ b/code/__DEFINES/plumbing.dm @@ -10,3 +10,8 @@ /// Name of omni color #define DUCT_COLOR_OMNI "omni" + +///IV drip operation mode when it sucks blood from the object +#define IV_TAKING 0 +///IV drip operation mode when it injects reagents into the object +#define IV_INJECTING 1 diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm index 31465051e152..1ae8403c644f 100644 --- a/code/__DEFINES/preferences.dm +++ b/code/__DEFINES/preferences.dm @@ -156,8 +156,15 @@ #define SPRITE_ACCESSORY_NONE "None" // Loadout -/// Used to make something not recolorable even if it's capable -#define DONT_GREYSCALE -1 +/// When equipped, applies a job specific palette to the item. Only applicable to GAGS items. +#define LOADOUT_FLAG_JOB_GREYSCALING (1<<0) +/// Prevents GAGS items from being player customizable. +#define LOADOUT_FLAG_BLOCK_GREYSCALING (1<<1) +/// Allows the item to be greyscaled by the player, if it's a GAGS item. Automatically set if the item is innately recolorable. +#define LOADOUT_FLAG_GREYSCALING_ALLOWED (1<<2) +/// Allows the item to be renamed by the player. +#define LOADOUT_FLAG_ALLOW_NAMING (1<<3) + // Loadout item info keys // Changing these will break existing loadouts /// Tracks GAGS color information @@ -173,3 +180,21 @@ #define UPPER_LIP "Upper" #define MIDDLE_LIP "Middle" #define LOWER_LIP "Lower" + +// Job greyscale colors for loadout items +#define COLOR_JOB_ASSISTANT /obj/item/clothing/under/color/grey::greyscale_colors +#define COLOR_JOB_BOTANIST "#33cc33" +#define COLOR_JOB_CARGO_GENERIC "#824b32" +#define COLOR_JOB_CE "#d0d0d0" +#define COLOR_JOB_CHEF "#d0d0d0" +#define COLOR_JOB_CHEMIST "#ff6600" +#define COLOR_JOB_CLOWN "#ffbeff" +#define COLOR_JOB_CMO "#009999" +#define COLOR_JOB_DEFAULT "#303030" +#define COLOR_JOB_ENGI_GENERIC "#ff6600" +#define COLOR_JOB_JANITOR /obj/item/clothing/gloves/color/purple::greyscale_colors +#define COLOR_JOB_LAWYER "#003399" +#define COLOR_JOB_SCI_GENERIC "#800080" +#define COLOR_JOB_SEC_GENERIC "#A53228" +#define COLOR_JOB_MED_GENERIC "#5B97BC" +#define COLOR_JOB_COMMAND_GENERIC "#3C5A96" diff --git a/code/__DEFINES/processing.dm b/code/__DEFINES/processing.dm index 905c03830d51..27f0d2126b11 100644 --- a/code/__DEFINES/processing.dm +++ b/code/__DEFINES/processing.dm @@ -1,3 +1,4 @@ #define TOOL_PROCESSING_RESULT "result" #define TOOL_PROCESSING_AMOUNT "amount" #define TOOL_PROCESSING_TIME "time" +#define TOOL_PROCESSING_SOUND "sound" diff --git a/code/__DEFINES/projectiles.dm b/code/__DEFINES/projectiles.dm index 482520098554..25f553ea7403 100644 --- a/code/__DEFINES/projectiles.dm +++ b/code/__DEFINES/projectiles.dm @@ -31,6 +31,8 @@ /// The caliber used by the desert eagle. #define CALIBER_50AE ".50AE" /// The caliber used by the gyrojet pistol. +#define CALIBER_46 "4.6mm" +/// The caliber used by le funni german PDW #define CALIBER_75 ".75" /// The caliber used by [one revolver variant][/obj/item/gun/ballistic/revolver/nagant]. #define CALIBER_N762 "n762" diff --git a/code/__DEFINES/radio.dm b/code/__DEFINES/radio.dm index 582e0d9a4a47..c7a37e7290ec 100644 --- a/code/__DEFINES/radio.dm +++ b/code/__DEFINES/radio.dm @@ -68,6 +68,39 @@ #define RADIO_TOKEN_UPLINK ":z" #define RADIO_COLOR_UPLINK "#8f4a4b" +// DARKPACK EDIT ADD START +#define RADIO_CHANNEL_POLICE "Police" +#define RADIO_KEY_POLICE "s" +#define RADIO_TOKEN_POLICE ":s" +#define RADIO_COLOR_POLICE "#1700e9" + +#define RADIO_CHANNEL_CLINIC "Clinic" +#define RADIO_KEY_CLINIC "m" +#define RADIO_TOKEN_CLINIC ":m" +#define RADIO_COLOR_CLINIC "#05ffea" + +#define RADIO_CHANNEL_MILITARY "Military" +#define RADIO_KEY_MILITARY "a" +#define RADIO_TOKEN_MILITARY ":a" +#define RADIO_COLOR_MILITARY "#35962d" + +#define RADIO_CHANNEL_CAMARILLA "Tower" +#define RADIO_KEY_CAMARILLA "t" +#define RADIO_TOKEN_CAMARILLA ":t" +#define RADIO_COLOR_CAMARILLA "#8b00cc" + +#define RADIO_CHANNEL_ANARCH "Bar" +#define RADIO_KEY_ANARCH "b" +#define RADIO_TOKEN_ANARCH ":b" +#define RADIO_COLOR_ANARCH "#d47100" + +#define RADIO_CHANNEL_ENDRON "Endron" +#define RADIO_KEY_ENDRON "d" +#define RADIO_TOKEN_ENDRON ":d" +#define RADIO_COLOR_ENDRON "#ff4800" + +// DARKPACK EDIT ADD END + #define RADIO_CHANNEL_CTF_RED "Red Team" #define RADIO_COLOR_CTF_RED "#ff0000" #define RADIO_CHANNEL_CTF_BLUE "Blue Team" @@ -116,6 +149,15 @@ #define MAX_FREQ 1489 // ------------------------------------------------------ +// DARKPACK EDIT ADD START +#define FREQ_POLICE 1501 // Police comms frequency, dark blue +#define FREQ_CLINIC 1503 // Clinic comms frequency, light blue +#define FREQ_MILITARY 1505 // Military comms frequency, dark green +#define FREQ_CAMARILLA 1507 // Camarilla comms frequency, purple +#define FREQ_ANARCH 1509 // Anarch comms frequency, dark orange +#define FREQ_ENDRON 1511 // Endron comms frequency, orange +// DARKPACK EDIT ADD END + #define MAX_FREE_FREQ 1599 // ------------------------------------------------- // Transmission types. diff --git a/code/__DEFINES/reagents.dm b/code/__DEFINES/reagents.dm index 508080183bc1..f0629886ef27 100644 --- a/code/__DEFINES/reagents.dm +++ b/code/__DEFINES/reagents.dm @@ -205,6 +205,48 @@ #define REACTION_TAG_PLANT (1<<19) /// This reaction is produces a product that affects plants #define REACTION_TAG_COMPETITIVE (1<<20) +/// Reaction produces a reagent that is a common component for other reactions +#define REACTION_TAG_COMPONENT (1<<21) +/// Denotes reactions that will immediately do something on reaction, like an explosion, smoke, etc. +#define REACTION_TAG_ACTIVE (1<<22) + +/// Readable list of reagent reaction tags (in the same order as they are defined!) +#define REACTION_TAG_READABLE list(\ + "BRUTE" = REACTION_TAG_BRUTE,\ + "BURN" = REACTION_TAG_BURN,\ + "TOXIN" = REACTION_TAG_TOXIN,\ + "OXY" = REACTION_TAG_OXY,\ + "HEALING" = REACTION_TAG_HEALING,\ + "DAMAGING" = REACTION_TAG_DAMAGING,\ + "EXPLOSIVE" = REACTION_TAG_EXPLOSIVE,\ + "OTHER" = REACTION_TAG_OTHER,\ + "DANGEROUS" = REACTION_TAG_DANGEROUS,\ + "EASY" = REACTION_TAG_EASY,\ + "MODERATE" = REACTION_TAG_MODERATE,\ + "HARD" = REACTION_TAG_HARD,\ + "ORGAN" = REACTION_TAG_ORGAN,\ + "DRINK" = REACTION_TAG_DRINK,\ + "FOOD" = REACTION_TAG_FOOD,\ + "SLIME" = REACTION_TAG_SLIME,\ + "DRUG" = REACTION_TAG_DRUG,\ + "UNIQUE" = REACTION_TAG_UNIQUE,\ + "CHEMICAL" = REACTION_TAG_CHEMICAL,\ + "PLANT" = REACTION_TAG_PLANT,\ + "COMPETITIVE" = REACTION_TAG_COMPETITIVE,\ + "COMPONENT" = REACTION_TAG_COMPONENT,\ + "ACTIVE" = REACTION_TAG_ACTIVE,\ +) + +/// Reaction tags for basic damgae types +#define DAMAGE_HEALING_REACTION_TAGS (REACTION_TAG_BRUTE | REACTION_TAG_BURN | REACTION_TAG_TOXIN | REACTION_TAG_OXY) +/// Reaction tags for medication +#define MEDICATION_REACTION_TAGS (REACTION_TAG_HEALING | REACTION_TAG_DAMAGING | REACTION_TAG_ORGAN | REACTION_TAG_DRUG) +/// Reaction tags for things the chemist would make +#define CHEMIST_REACTION_TAGS (REACTION_TAG_EXPLOSIVE | REACTION_TAG_CHEMICAL | REACTION_TAG_COMPETITIVE | REACTION_TAG_EXPLOSIVE | REACTION_TAG_COMPONENT) +/// Reaction tags for botanist stuff +#define BOTANIST_REACTION_TAGS (REACTION_TAG_PLANT | REACTION_TAG_COMPONENT) +/// Reaction tags for food and drink mainly +#define KITCHEN_REACTION_TAGS (REACTION_TAG_FOOD | REACTION_TAG_DRINK | REACTION_TAG_COMPONENT) //flags used by holder.dm to locate an reagent ///Direct type diff --git a/code/__DEFINES/research.dm b/code/__DEFINES/research.dm index f3b2cf819489..96a2c74ef8b3 100644 --- a/code/__DEFINES/research.dm +++ b/code/__DEFINES/research.dm @@ -74,11 +74,12 @@ //Defines how many percent of vat grown atoms come out as hue shifted color mutants. A flat chance for now, maybe in the future dependant on the cell line. #define CYTO_SHINY_CHANCE 15 -#define SCIPAPER_COOPERATION_INDEX 1 -#define SCIPAPER_FUNDING_INDEX 2 +#define SCIPAPER_COOPERATION_INDEX "cooperation" +#define SCIPAPER_FUNDING_INDEX "funding" #define SCIENTIFIC_COOPERATION_PURCHASE_MULTIPLIER 0.01 /// How much money is one point of gain worth. #define SCIPAPER_GAIN_TO_MONEY 125 +#define SCIPAPER_ALREADY_BOUGHT 2 ///Connects the 'server_var' to a valid research server on your Z level. ///Used for machines in LateInitialize, to ensure that RND servers are loaded first. diff --git a/code/__DEFINES/research/anomalies.dm b/code/__DEFINES/research/anomalies.dm index f0dabae02509..b2b39d4d08ce 100644 --- a/code/__DEFINES/research/anomalies.dm +++ b/code/__DEFINES/research/anomalies.dm @@ -8,6 +8,7 @@ #define MAX_CORES_BIOSCRAMBLER 8 #define MAX_CORES_DIMENSIONAL 8 #define MAX_CORES_ECTOPLASMIC 8 +#define MAX_CORES_WEATHER 8 ///Defines for the different types of explosion a flux anomaly can have #define FLUX_NO_EMP 0 diff --git a/code/__DEFINES/research/techweb_nodes.dm b/code/__DEFINES/research/techweb_nodes.dm index 8fcd954e1a66..baf220fda688 100644 --- a/code/__DEFINES/research/techweb_nodes.dm +++ b/code/__DEFINES/research/techweb_nodes.dm @@ -83,6 +83,7 @@ #define TECHWEB_NODE_MOD_ENGI_ADV "mod_engi_adv" #define TECHWEB_NODE_MOD_ENTERTAINMENT "mod_entertainment" #define TECHWEB_NODE_MOD_EQUIP "mod_equip" +#define TECHWEB_NODE_MOD_SERVICE "mod_service" #define TECHWEB_NODE_MOD_EXPERIMENTAL "mod_experimental" #define TECHWEB_NODE_MOD_MEDICAL "mod_medical" #define TECHWEB_NODE_MOD_MEDICAL_ADV "mod_medical_adv" diff --git a/code/__DEFINES/reskin.dm b/code/__DEFINES/reskin.dm new file mode 100644 index 000000000000..250b3959fe22 --- /dev/null +++ b/code/__DEFINES/reskin.dm @@ -0,0 +1,18 @@ +/// Global list of available atom skins +GLOBAL_LIST_INIT_TYPED(atom_skins, /datum/atom_skin, init_subtypes_w_path_keys(/datum/atom_skin)) + +/// Sets the atom's varname to newvalue if newvalue is not null, otherwise resets it to its initial value if resetcondition is true +#define APPLY_VAR_OR_RESET_INITIAL(atom, varname, newvalue, resetcondition) \ + if(newvalue) {atom.##varname = (##newvalue) } else if(resetcondition) { atom.##varname = initial(atom.##varname) } + +/// Sets the atom's varname to newvalue if newvalue is not null, otherwise sets it to resetvalue if resetcondition is true +#define APPLY_VAR_OR_RESET_TO(atom, varname, newvalue, resetcondition, resetvalue) \ + if(newvalue) {atom.##varname = (##newvalue) } else if(resetcondition) { atom.##varname = (resetvalue) } + +/// Resets the atom's varname to its initial value if oldvalue is not null +#define RESET_INITIAL_IF_SET(atom, varname, oldvalue) \ + if(oldvalue) { atom.##varname = initial(atom.##varname) } + +/// Sets the atom's varname to resetvalue if oldvalue is not null +#define RESET_TO_IF_SET(atom, varname, oldvalue, resetvalue) \ + if(oldvalue) { atom.##varname = (resetvalue) } diff --git a/code/__DEFINES/role_preferences.dm b/code/__DEFINES/role_preferences.dm index 124c68f7cf4c..004f990bcdf5 100644 --- a/code/__DEFINES/role_preferences.dm +++ b/code/__DEFINES/role_preferences.dm @@ -41,8 +41,6 @@ #define ROLE_VOIDWALKER "Voidwalker" #define ROLE_SUNWALKER "Sunwalker" -// Latejoin roles -#define ROLE_HERETIC_SMUGGLER "Heretic Smuggler" #define ROLE_PROVOCATEUR "Provocateur" #define ROLE_STOWAWAY_CHANGELING "Stowaway Changeling" #define ROLE_SYNDICATE_INFILTRATOR "Syndicate Infiltrator" diff --git a/code/__DEFINES/rust_g.dm b/code/__DEFINES/rust_g.dm index 048ea0bd0b75..877d06ed19f6 100644 --- a/code/__DEFINES/rust_g.dm +++ b/code/__DEFINES/rust_g.dm @@ -168,6 +168,9 @@ */ #define rustg_dmi_inject_metadata(path, metadata) RUSTG_CALL(RUST_G, "dmi_inject_metadata")(path, metadata) +#define rustg_create_qr_code_png(path, data) RUSTG_CALL(RUST_G, "create_qr_code_png")(path, data) +#define rustg_create_qr_code_svg(data) RUSTG_CALL(RUST_G, "create_qr_code_svg")(data) + #define rustg_file_read(fname) RUSTG_CALL(RUST_G, "file_read")(fname) #define rustg_file_exists(fname) (RUSTG_CALL(RUST_G, "file_exists")(fname) == "true") #define rustg_file_write(text, fname) RUSTG_CALL(RUST_G, "file_write")(text, fname) @@ -280,6 +283,21 @@ #define rustg_iconforge_generate(file_path, spritesheet_name, sprites, hash_icons, generate_dmi, flatten) RUSTG_CALL(RUST_G, "iconforge_generate")(file_path, spritesheet_name, sprites, "[hash_icons]", "[generate_dmi]", "[flatten]") /// Returns a job_id for use with rustg_iconforge_check() #define rustg_iconforge_generate_async(file_path, spritesheet_name, sprites, hash_icons, generate_dmi, flatten) RUSTG_CALL(RUST_G, "iconforge_generate_async")(file_path, spritesheet_name, sprites, "[hash_icons]", "[generate_dmi]", "[flatten]") +/// Creates a single DMI or PNG using 'sprites' as a list of icon states / images. +/// This function is intended for generating icons with only a few states that have little in common with each other, and only one size. +/// For icons with a large number of states, potentially variable sizes, that re-use sets of transforms more than once, or that benefit from caching, use rustg_iconforge_generate. +/// sprites - follows the same format as rustg_iconforge_generate. +/// file_path - the full relative path at which the PNG or DMI will be written. It must be a full filepath such as tmp/my_icon.dmi or my_icon.png +/// flatten - boolean (0 or 1) determines if the DMI output will be flattened to a single frame/dir if unscoped (null/0 dir or frame values). +/// +/// Returns a HeadlessResult, decoded to a BYOND list (always, it's not possible for this to panic unless rustg itself has an issue) containing the following fields: +/// list( +/// "file_path" = "tmp/my_icon.dmi" // [whatever you input returned back to you, null if there was a fatal error] +/// "width" = 32 // the width, which is determined by the first entry of 'sprites', null if there was a fatal error +/// "height" = 32 // the height, which is determined by the first entry of 'sprites', null if there was a fatal error +/// "error" = "[A string, null if there were no errors.]" +/// ) +#define rustg_iconforge_generate_headless(file_path, sprites, flatten) json_decode(RUSTG_CALL(RUST_G, "iconforge_generate_headless")(file_path, sprites, "[flatten]")) /// Returns the status of an async job_id, or its result if it is completed. See RUSTG_JOB DEFINEs. #define rustg_iconforge_check(job_id) RUSTG_CALL(RUST_G, "iconforge_check")("[job_id]") /// Clears all cached DMIs and images, freeing up memory. diff --git a/code/__DEFINES/say.dm b/code/__DEFINES/say.dm index ecbbb3ec04bb..d1da7ea09760 100644 --- a/code/__DEFINES/say.dm +++ b/code/__DEFINES/say.dm @@ -118,6 +118,7 @@ #define MAX_PLAQUE_LEN 144 #define MAX_LABEL_LEN 64 #define MAX_DESC_LEN 280 +#define MAX_AAS_LENGTH 168 // Audio/Visual Flags. Used to determine what sense are required to notice a message. #define MSG_VISUAL (1<<0) diff --git a/code/__DEFINES/security.dm b/code/__DEFINES/security.dm index a385d843398e..eb36b2d70925 100644 --- a/code/__DEFINES/security.dm +++ b/code/__DEFINES/security.dm @@ -1,6 +1,9 @@ // CATEGORY HEADERS +/// New `/datum/detective_scan_category` must be created when adding new `DETSCAN_CATEGORY`. +/// Macros are sorted by `/datum/detective_scan_category::display_order` + /// Fingerpints detected #define DETSCAN_CATEGORY_FINGERS "Prints" /// Displays any bloodprints found and their uefi @@ -8,37 +11,20 @@ /// Clothing and glove fibers #define DETSCAN_CATEGORY_FIBER "Fibers" /// Liquids detected -#define DETSCAN_CATEGORY_DRINK "Reagents" +#define DETSCAN_CATEGORY_REAGENTS "Reagents" /// ID Access #define DETSCAN_CATEGORY_ACCESS "ID Access" // The categories below do not have hard rules on what info is displayed, and are for categorizing info thematically. -/// Generic extra information category -#define DETSCAN_CATEGORY_NOTES "Additional Notes" -/// Attributes that might be illegal, but don't have ties to syndicate/aren't exclusively produced by them -#define DETSCAN_CATEGORY_ILLEGAL "Illegal Tech" -/// The emags and other in-house technology from the syndicate -#define DETSCAN_CATEGORY_SYNDIE "Syndicate Tech" -/// praise be -#define DETSCAN_CATEGORY_HOLY "Holy Data" /// The mode that the items in, what kind of item is dispensed, etc #define DETSCAN_CATEGORY_SETTINGS "Active Settings" - -// If your category is not in this list it WILL NOT BE DISPLAYED -/// defines the order categories are displayed, with the original categories, then custom ones, then finally the extra info. -#define DETSCAN_DEFAULT_ORDER(...) list(\ - DETSCAN_CATEGORY_FINGERS, \ - DETSCAN_CATEGORY_BLOOD, \ - DETSCAN_CATEGORY_FIBER, \ - DETSCAN_CATEGORY_DRINK, \ - DETSCAN_CATEGORY_ACCESS, \ - DETSCAN_CATEGORY_SETTINGS, \ - DETSCAN_CATEGORY_HOLY, \ - DETSCAN_CATEGORY_ILLEGAL, \ - DETSCAN_CATEGORY_SYNDIE, \ - DETSCAN_CATEGORY_NOTES, \ -) +/// praise be +#define DETSCAN_CATEGORY_HOLY "Holy Data" +/// Attributes that might be illegal, can also have ties to syndicate +#define DETSCAN_CATEGORY_ILLEGAL "Illegal Tech" +/// Generic extra information category +#define DETSCAN_CATEGORY_NOTES "Additional Notes" /// the order departments show up in for the id scan (its sorted by red to blue on the color wheel) #define DETSCAN_ACCESS_ORDER(...) list(\ diff --git a/code/__DEFINES/shuttles.dm b/code/__DEFINES/shuttles.dm index fb7b57e41844..5b48acc82d96 100644 --- a/code/__DEFINES/shuttles.dm +++ b/code/__DEFINES/shuttles.dm @@ -81,9 +81,10 @@ #define DOCKING_NULL_SOURCE (1<<4) //Docking turf movements -#define MOVE_TURF 1 -#define MOVE_AREA 2 -#define MOVE_CONTENTS 4 +#define MOVE_TURF (1<<0) +#define MOVE_AREA (1<<1) +#define MOVE_CONTENTS (1<<2) +#define MOVE_SPECIAL (1<<3) //Rotation params #define ROTATE_DIR 1 diff --git a/code/__DEFINES/sound.dm b/code/__DEFINES/sound.dm index 5f12e8d1a4fd..abc71f451c55 100644 --- a/code/__DEFINES/sound.dm +++ b/code/__DEFINES/sound.dm @@ -12,10 +12,11 @@ #define CHANNEL_ELEVATOR 1014 #define CHANNEL_ESCAPEMENU 1013 #define CHANNEL_WEATHER 1012 -#define CHANNEL_BLOOD 1011 // DARKPACK ADD +#define CHANNEL_BLOOD 1011 // DARKPACK EDIT ADD +#define CHANNEL_MUSIC 1010 // DARKPACK EDIT ADD - AMBIENCE //THIS SHOULD ALWAYS BE THE LOWEST ONE! //KEEP IT UPDATED -#define CHANNEL_HIGHEST_AVAILABLE 1010 // DARKPACK EDIT +#define CHANNEL_HIGHEST_AVAILABLE 1009 // DARKPACK EDIT #define MAX_INSTRUMENT_CHANNELS (128 * 6) @@ -45,7 +46,7 @@ /* Calculates the volume of a sound based on distance * - * https://www.desmos.com/calculator/sqdfl8ipgf + * https://www.desmos.com/calculator/shjpmz3ck7 * * Arguments: * * volume: The initial volume of the sound being played @@ -287,6 +288,40 @@ GLOBAL_LIST_EMPTY(sfx_datum_by_key) #define SFX_CIG_PACK_RUSTLE "cig_pack_rustle" #define SFX_CIG_PACK_THROW_DROP "cig_pack_throw_drop" #define SFX_RORO_WARBLE "roro_warble" +#define SFX_POTTED_PLANT_PICKUP "potted_plant_pickup" +#define SFX_POTTED_PLANT_DROP "potted_plant_drop" +#define SFX_GOGGLES_PICKUP "goggles_pickup" +#define SFX_GOGGLES_DROP "goggles_drop" +#define SFX_GOGGLES_EQUIP "goggles_equip" +#define SFX_GLASSES_PICKUP "glasses_pickup" +#define SFX_GLASSES_DROP "glasses_drop" +#define SFX_GLASSES_EQUIP "glasses_equip" +#define SFX_FOOD_PLATE_PICKUP "food_plate_pickup" +#define SFX_FOOD_PLATE_DROP "food_plate_drop" +#define SFX_TRAY_PICKUP "tray_pickup" +#define SFX_TRAY_DROP "tray_drop" +#define SFX_TRAY_INSERT "tray_insert" +#define SFX_CUTLERY_PICKUP "generic_cutlery_pickup" +#define SFX_CUTLERY_DROP "generic_cutlery_drop" +#define SFX_KNIFE_PICKUP "knife_pickup" +#define SFX_KNIFE_DROP "knife_drop" +#define SFX_KNIFE_SLICE "knife_slice" +#define SFX_POT_PICKUP "pot_pickup" +#define SFX_POT_DROP "pot_drop" +#define SFX_ROLLING_PIN_PICKUP "rolling_pin_pickup" +#define SFX_ROLLING_PIN_DROP "rolling_pin_drop" +#define SFX_ROLLING_PIN_ROLLING "rolling_pin_rolling" +#define SFX_FIRE_MODE_SWITCH "fire_mode_switch" +#define SFX_REMOTE_MODE_SWITCH "remote_mode_switch" +#define SFX_REMOTE_ACTION "remote_action" +#define SFX_GAS_MASK_PICKUP "gas_mask_pickup" +#define SFX_GAS_MASK_DROP "gas_mask_drop" +#define SFX_GAS_MASK_EQUIP "gas_mask_equip" +#define SFX_GENERIC_DEVICE_PICKUP "generic_device_pickup" +#define SFX_GENERIC_DEVICE_DROP "generic_device_drop" +#define SFX_HARD_HAT_PICKUP "hard_hat_pickup" +#define SFX_HARD_HAT_DROP "hard_hat_drop" +#define SFX_HARD_HAT_EQUIP "hard_hat_equip" // Standard is 44.1khz #define MIN_EMOTE_PITCH 40000 diff --git a/code/__DEFINES/span.dm b/code/__DEFINES/span.dm index ca15b2616d81..fbbd8f8a90a9 100644 --- a/code/__DEFINES/span.dm +++ b/code/__DEFINES/span.dm @@ -83,6 +83,7 @@ #define span_italics(str) ("" + str + "") #define span_linkify(str) ("" + str + "") #define span_looc(str) ("" + str + "") +#define span_rlooc(str) ("" + str + "") // DARKPACK EDIT ADD #define span_major_announcement_text(str) ("" + str + "") #define span_major_announcement_title(str) ("" + str + "") #define span_medal(str) ("" + str + "") @@ -98,7 +99,7 @@ #define span_narsie(str) ("" + str + "") #define span_narsiesmall(str) ("" + str + "") #define span_nicegreen(str) ("" + str + "") -#define span_userlove(str) ("" + str + "") // DARKPACK ADD +#define span_userlove(str) ("" + str + "") // DARKPACK EDIT ADD #define span_notice(str) ("" + str + "") #define span_noticealien(str) ("" + str + "") #define span_ooc(str) ("" + str + "") diff --git a/code/__DEFINES/species_clothing_paths.dm b/code/__DEFINES/species_clothing_paths.dm index 99fe7baab1dd..828510bf7cb3 100644 --- a/code/__DEFINES/species_clothing_paths.dm +++ b/code/__DEFINES/species_clothing_paths.dm @@ -9,7 +9,3 @@ //DIGITIGRADE PATHS ///The dmi containing digitigrade uniforms #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' diff --git a/code/__DEFINES/speech_channels.dm b/code/__DEFINES/speech_channels.dm index 9f1526ebd56a..17bd2fd9cb86 100644 --- a/code/__DEFINES/speech_channels.dm +++ b/code/__DEFINES/speech_channels.dm @@ -4,3 +4,4 @@ #define ME_CHANNEL "Me" #define OOC_CHANNEL "OOC" #define ADMIN_CHANNEL "Admin" +#define LOOC_CHANNEL "LOOC" // DARKPACK EDIT ADD - LOOC diff --git a/code/__DEFINES/stat_tracking.dm b/code/__DEFINES/stat_tracking.dm index 9bd697440406..e71a073daafd 100644 --- a/code/__DEFINES/stat_tracking.dm +++ b/code/__DEFINES/stat_tracking.dm @@ -15,7 +15,8 @@ #define INIT_COST(costs, counting) \ var/list/_costs = costs; \ var/list/_counting = counting; \ - var/_usage = TICK_USAGE; + var/_usage = TICK_USAGE; \ + var/_cost = 0; // STATIC cost tracking macro. Uses static lists instead of the normal global ones // Good for debug stuff, and for running before globals init @@ -33,10 +34,22 @@ } \ _usage = TICK_USAGE; +#define SET_COST_BOUNDS(category) \ + do { \ + _cost = TICK_USAGE; \ + var/_tmp_delta = TICK_DELTA_TO_MS(_cost - _usage);\ + _costs[category] += _tmp_delta;\ + _counting[category] += 1;\ + _costs["[category]_min"] = min(_tmp_delta, _costs["[category]_min"] || INFINITY);\ + _counting["[category]_min"] += 1;\ + _costs["[category]_max"] = max(_tmp_delta, _costs["[category]_max"] || 0);\ + _counting["[category]_max"] += 1;\ + } while(FALSE); \ + _usage = TICK_USAGE; #define SET_COST(category) \ do { \ - var/_cost = TICK_USAGE; \ + _cost = TICK_USAGE; \ _costs[category] += TICK_DELTA_TO_MS(_cost - _usage);\ _counting[category] += 1; \ } while(FALSE); \ diff --git a/code/__DEFINES/status_effects.dm b/code/__DEFINES/status_effects.dm index ceecdb729da2..4b0767091b93 100644 --- a/code/__DEFINES/status_effects.dm +++ b/code/__DEFINES/status_effects.dm @@ -57,7 +57,6 @@ // Grouped effect sources, see also code/__DEFINES/traits.dm #define STASIS_MACHINE_EFFECT "stasis_machine" -#define STASIS_CHEMICAL_EFFECT "stasis_chemical" #define STASIS_SHAPECHANGE_EFFECT "stasis_shapechange" #define STASIS_ADMIN "stasis_admin" #define STASIS_LEGION_EATEN "stasis_eaten" diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm index a002b4bef933..9521983acd8f 100644 --- a/code/__DEFINES/subsystems.dm +++ b/code/__DEFINES/subsystems.dm @@ -158,6 +158,7 @@ #define FIRE_PRIORITY_PARALLAX 65 #define FIRE_PRIORITY_INSTRUMENTS 80 #define FIRE_PRIORITY_FLUIDS 80 +#define FIRE_PRIORITY_CAMERAS 85 #define FIRE_PRIORITY_PRIORITY_EFFECTS 90 #define FIRE_PRIORITY_MOBS 100 #define FIRE_PRIORITY_TGUI 110 diff --git a/code/__DEFINES/surgery.dm b/code/__DEFINES/surgery.dm index 9d73f12a980e..dc54c139dba7 100644 --- a/code/__DEFINES/surgery.dm +++ b/code/__DEFINES/surgery.dm @@ -36,6 +36,11 @@ #define ORGAN_GHOST (1<<14) /// This is a mutant organ, having this makes you a -derived mutant to health analyzers. #define ORGAN_MUTANT (1<<15) +/// The organ has been chomped or otherwise rendered unusable. +#define ORGAN_UNUSABLE (1<<16) + +/// Organ flags that correspond to bodytypes +#define ORGAN_TYPE_FLAGS (ORGAN_ORGANIC | ORGAN_ROBOTIC | ORGAN_MINERAL | ORGAN_GHOST) /// Scarring on the right eye #define RIGHT_EYE_SCAR (1<<0) @@ -85,28 +90,83 @@ /// Default for most heads #define HEAD_DEFAULT_FEATURES (HEAD_HAIR|HEAD_FACIAL_HAIR|HEAD_LIPS|HEAD_EYESPRITES|HEAD_EYECOLOR|HEAD_EYEHOLES|HEAD_DEBRAIN) -/// Return value when the surgery step fails :( -#define SURGERY_STEP_FAIL -1 +/// Checks if the mob is lying down if they can lie down, otherwise always passes +#define IS_LYING_OR_CANNOT_LIE(mob) ((mob.mobility_flags & MOBILITY_LIEDOWN) ? (mob.body_position == LYING_DOWN) : TRUE) + +/// Applies moodlets after the surgical operation is complete +#define OPERATION_AFFECTS_MOOD (1<<0) +/// Notable operations are specially logged and also leave memories +#define OPERATION_NOTABLE (1<<1) +/// Operation will automatically repeat until it can no longer be performed +#define OPERATION_LOOPING (1<<2) +/// Grants a speed bonus if the user is morbid and their tool is morbid +#define OPERATION_MORBID (1<<3) +/// Not innately available to doctors, must be added via COMSIG_MOB_ATTEMPT_SURGERY to show up +#define OPERATION_LOCKED (1<<4) +/// A surgeon can perform this operation on themselves +#define OPERATION_SELF_OPERABLE (1<<5) +/// Operation can be performed on standing patients - note: mobs that cannot lie down are *always* considered lying down for surgery +#define OPERATION_STANDING_ALLOWED (1<<6) +/// Some traits may cause operations to be infalliable - this flag disables that behavior, always allowing it to be failed +#define OPERATION_ALWAYS_FAILABLE (1<<7) +/// If set, the operation will ignore clothing when checking for access to the target body part. +#define OPERATION_IGNORE_CLOTHES (1<<8) +/// This operation should be prioritized as the next step in a surgery sequence. (In the operating computer it will flash red) +#define OPERATION_PRIORITY_NEXT_STEP (1<<9) +/// Operation is a mechanic / robotic surgery +#define OPERATION_MECHANIC (1<<10) +/// Hides the operation from autowiki generation +#define OPERATION_NO_WIKI (1<<11) + +DEFINE_BITFIELD(operation_flags, list( + "AFFECTS MOOD" = OPERATION_AFFECTS_MOOD, + "NOTABLE" = OPERATION_NOTABLE, + "LOOPING" = OPERATION_LOOPING, + "MORBID" = OPERATION_MORBID, + "LOCKED" = OPERATION_LOCKED, + "SELF OPERABLE" = OPERATION_SELF_OPERABLE, + "STANDING ALLOWED" = OPERATION_STANDING_ALLOWED, + "ALWAYS FAILABLE" = OPERATION_ALWAYS_FAILABLE, + "IGNORE CLOTHES" = OPERATION_IGNORE_CLOTHES, + "PRIORITY NEXT STEP" = OPERATION_PRIORITY_NEXT_STEP, + "MECHANIC" = OPERATION_MECHANIC, +)) + +/// All of these equipment slots are ignored when checking for clothing coverage during surgery +#define IGNORED_OPERATION_CLOTHING_SLOTS (ITEM_SLOT_NECK) + +// Surgery related mood defines +#define SURGERY_STATE_STARTED "surgery_started" +#define SURGERY_STATE_FAILURE "surgery_failed" +#define SURGERY_STATE_SUCCESS "surgery_success" +#define SURGERY_MOOD_CATEGORY "surgery" + +/// Dummy "tool" for surgeries which use hands +#define IMPLEMENT_HAND "hands" -// Flags for surgery_flags on surgery datums -///Will allow the surgery to bypass clothes -#define SURGERY_IGNORE_CLOTHES (1<<0) -///Will allow the surgery to be performed by the user on themselves. -#define SURGERY_SELF_OPERABLE (1<<1) -///Will allow the surgery to work on mobs that aren't lying down. -#define SURGERY_REQUIRE_RESTING (1<<2) -///Will allow the surgery to work only if there's a limb. -#define SURGERY_REQUIRE_LIMB (1<<3) -///Will allow the surgery to work only if there's a real (eg. not pseudopart) limb. -#define SURGERY_REQUIRES_REAL_LIMB (1<<4) -///Will grant a bonus during surgery steps to users with TRAIT_MORBID while they're using tools with CRUEL_IMPLEMENT -#define SURGERY_MORBID_CURIOSITY (1<<5) -/** - * Instead of checking if the tool used is an actual surgery tool to avoid accidentally whacking patients with the wrong tool, - * it'll check if it has a defined tool behaviour instead. Useful for surgeries that use mechanical tools instead of medical ones, - * like hardware manipulation. - */ -#define SURGERY_CHECK_TOOL_BEHAVIOUR (1<<6) +/// Surgery speed modifiers are soft-capped at this value +/// The actual modifier can exceed this but it gets +#define SURGERY_MODIFIER_FAILURE_THRESHOLD 2.5 +/// There is an x percent chance of failure per second beyond 2.5x the base surgery time +#define FAILURE_CHANCE_PER_SECOND 10 +/// Calculates failure chance of an operation based on the base time and the effective speed modifier +/// This may look something like: Base time 1 second and 4x effective multiplier -> 4 seconds - 2.5 seconds = 1.5 seconds * 10 = 15% failure chance +/// Or: Base time 2 seconds and 1x effective multiplier -> 2 seconds - 5 seconds = -3 seconds * 10 = -30% failure chance (clamped to 0%) +#define GET_FAILURE_CHANCE(base_time, speed_mod) (FAILURE_CHANCE_PER_SECOND * (((speed_mod * (base_time)) - (SURGERY_MODIFIER_FAILURE_THRESHOLD * (base_time))) / (1 SECONDS))) -///Return true if target is not in a valid body position for the surgery -#define IS_IN_INVALID_SURGICAL_POSITION(target, surgery) ((surgery.surgery_flags & SURGERY_REQUIRE_RESTING) && (target.mobility_flags & MOBILITY_LIEDOWN && target.body_position != LYING_DOWN)) +// Operation argument indexes +/// Total speed/failure modifier applied to the operation +#define OPERATION_SPEED "speed_modifier" +/// The action being performed, simply "default" for 95% of surgeries +#define OPERATION_ACTION "action" +/// Whether the operation should automatically fail +#define OPERATION_FORCE_FAIL "force_fail" +/// The body zone being targeted by the operation +#define OPERATION_TARGET_ZONE "target_zone" +/// The specific target of the operation, usually a bodypart or organ, generally redundant +#define OPERATION_TARGET "target" +// For tend wounds - only reason these aren't local is we use them in unit testing +#define OPERATION_BRUTE_HEAL "brute_heal" +#define OPERATION_BURN_HEAL "burn_heal" +#define OPERATION_BRUTE_MULTIPLIER "brute_multiplier" +#define OPERATION_BURN_MULTIPLIER "burn_multiplier" diff --git a/code/__DEFINES/traits/declarations.dm b/code/__DEFINES/traits/declarations.dm index 879732717b1f..a3f7c0738b4c 100644 --- a/code/__DEFINES/traits/declarations.dm +++ b/code/__DEFINES/traits/declarations.dm @@ -96,11 +96,15 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_EMOTEMUTE "emotemute" #define TRAIT_DEAF "deaf" #define TRAIT_FAT "fat" +/// If you are fat, you no longer get the slowdown from it +#define TRAIT_FAT_IGNORE_SLOWDOWN "fat_ignore_slowdown" /// Always hungry. They can eat as much as they want without eating slowdown. #define TRAIT_GLUTTON "glutton" #define TRAIT_HUSK "husk" ///Blacklisted from being revived via defibrillator #define TRAIT_DEFIB_BLACKLISTED "defib_blacklisted" +/// This carbon doesn't need a brain to be revived, though some revival methods like defibbing will still check for a functional brain +#define TRAIT_BRAINLESS_CARBON "brainless_carbon" #define TRAIT_BADDNA "baddna" #define TRAIT_CLUMSY "clumsy" /// Trait that means you are capable of holding items in some form @@ -180,6 +184,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_NUKEIMMUNE "nuke_immunity" /// Can't be given viruses #define TRAIT_VIRUSIMMUNE "virus_immunity" +/// Stepping on ants wont cause damage +#define TRAIT_SPACE_ANT_IMMUNITY "space_ant_immunity" /// Won't become a husk under any circumstances #define TRAIT_UNHUSKABLE "trait_unhuskable" /// Reduces the chance viruses will spread to this mob, and if the mob has a virus, slows its advancement @@ -216,7 +222,7 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_NO_AUGMENTS "no_augments" /// This carbon doesn't get hungry #define TRAIT_NOHUNGER "no_hunger" -/// This carbon doesn't bleed +/// This carbon doesn't have blood #define TRAIT_NOBLOOD "noblood" /// This just means that the carbon will always have functional liverless metabolism #define TRAIT_LIVERLESS_METABOLISM "liverless_metabolism" @@ -326,6 +332,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_WOUND_LICKER "wound_licker" /// Mobs with this trait are allowed to use silicon emotes #define TRAIT_SILICON_EMOTES_ALLOWED "silicon_emotes_allowed" +/// Mobs with this trait can tell when other mobs whisper even if their mouth is covered. They still can't tell what was whispered though. +#define TRAIT_SEE_MASK_WHISPER "see_mask_whisper" /// This trait designate that the mob was originally a monkey #define TRAIT_BORN_MONKEY "born_as_a_monkey" @@ -355,6 +363,7 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_NODEATH "nodeath" #define TRAIT_NOHARDCRIT "nohardcrit" #define TRAIT_NOSOFTCRIT "nosoftcrit" +#define TRAIT_NO_OXYLOSS_PASSOUT "nooxylosspassout" /// Makes someone show up as mindshielded on sechuds. Does NOT actually make them unconvertable - See TRAIT_UNCONVERTABLE for that #define TRAIT_MINDSHIELD "mindshield" /// Makes it impossible for someone to be converted by cult/revs/etc. @@ -415,7 +424,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_SPINNING_WEB_TURF "spinning_web_turf" #define TRAIT_ABDUCTOR_TRAINING "abductor-training" #define TRAIT_ABDUCTOR_SCIENTIST_TRAINING "abductor-scientist-training" -#define TRAIT_SURGEON "surgeon" #define TRAIT_STRONG_GRABBER "strong_grabber" #define TRAIT_SOOTHED_THROAT "soothed-throat" #define TRAIT_SOOTHED_HEADACHE "soothed-headache" @@ -433,7 +441,12 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_UNSTABLE "unstable" #define TRAIT_OIL_FRIED "oil_fried" #define TRAIT_MEDICAL_HUD "med_hud" +#define TRAIT_MEDICAL_HUD_SENSOR_ONLY "med_hud_lesser" #define TRAIT_SECURITY_HUD "sec_hud" +#define TRAIT_SECURITY_HUD_ID_ONLY "sec_hud_lesser" +#define TRAIT_ABDUCTOR_HUD "abductor_hud" +/// Stop the user from seeing the sechud. Only works for trait handled sechuds. +#define TRAIT_BLOCK_SECHUD "block_sechud" /// for something granting you a diagnostic hud #define TRAIT_DIAGNOSTIC_HUD "diag_hud" #define TRAIT_BOT_PATH_HUD "bot_path_hud" @@ -459,6 +472,14 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_HALLUCINATION_IMMUNE "hallucination_immune" /// Increases chance of getting special traumas, makes them harder to cure #define TRAIT_SPECIAL_TRAUMA_BOOST "special_trauma_boost" + +//---- Brain trauma resists +/// Unable to gain any brain trauma whatsoever +#define TRAIT_BRAIN_TRAUMA_IMMUNITY "brain_trauma_immunity" + +/// Prevents death from having too much brain damage +#define TRAIT_BRAIN_DAMAGE_NODEATH "brain_damage_nodeath" + #define TRAIT_SPACEWALK "spacewalk" /// Mobs with this trait still breathe gas in and out but aren't harmed by lacking any particular gas mix. (You can still be hurt by TOO MUCH of a specific gas). #define TRAIT_NO_BREATHLESS_DAMAGE "spacebreathing" @@ -533,6 +554,10 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_CULT_HALO "cult_halo" /// Their eyes glow an unnatural red colour. Currently used to set special examine text on humans. Does not guarantee the mob's eyes are coloured red, nor that there is any visible glow on their character sprite. #define TRAIT_UNNATURAL_RED_GLOWY_EYES "unnatural_red_glowy_eyes" +/// Their eyes glow in the dark (aka emissive appearance) +#define TRAIT_LUMINESCENT_EYES "luminescent_eyes" +/// Their eyes reflect light, making them shine faintly in dim, shadowy areas. Kinda like nocturnal animals. +#define TRAIT_REFLECTIVE_EYES "reflective_eyes" /// Their eyes are bloodshot. Currently used to set special examine text on humans. Examine text is overridden by TRAIT_UNNATURAL_RED_GLOWY_EYES. #define TRAIT_BLOODSHOT_EYES "bloodshot_eyes" /// This mob should never close UI even if it doesn't have a client @@ -641,6 +666,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_NO_GUN_AKIMBO "no_gun_akimbo" /// Mobs with this trait cannot be hit by projectiles, meaning the projectiles will just go through. #define TRAIT_UNHITTABLE_BY_PROJECTILES "unhittable_by_projectiles" +/// Mobs with this trait can never be hit by laser projectiles, meaning the projectiles will just go through. +#define TRAIT_UNHITTABLE_BY_LASERS "unhittable_by_lasers" /// 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" @@ -882,8 +909,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_ROD_ATTRACT_SHINY_LOVERS "rod_attract_shiny_lovers" /// This rod can be used to fish on lava #define TRAIT_ROD_LAVA_USABLE "rod_lava_usable" -/// This rod was infused by a heretic, making it awesome and improving influence gain -#define TRAIT_ROD_MANSUS_INFUSED "rod_infused" /// Stuff that can go inside fish cases and aquariums #define TRAIT_AQUARIUM_CONTENT "aquarium_content" /// If the item can be used as a bit. @@ -932,10 +957,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_NO_STRIP "no_strip" /// Disallows this item from being pricetagged with a barcode #define TRAIT_NO_BARCODES "no_barcode" -/// Allows heretics to cast their spells. -#define TRAIT_ALLOW_HERETIC_CASTING "allow_heretic_casting" -/// Designates a heart as a living heart for a heretic. -#define TRAIT_LIVING_HEART "living_heart" /// Prevents the same person from being chosen multiple times for kidnapping objective #define TRAIT_HAS_BEEN_KIDNAPPED "has_been_kidnapped" /// An item still plays its hitsound even if it has 0 force, instead of the tap @@ -954,6 +975,24 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_EXAMINE_SKIP "examine_skip" /// Objects with this trait cannot be repaired with duct tape #define TRAIT_DUCT_TAPE_UNREPAIRABLE "duct_tape_unrepairable" +/// An item is ALWAYS considered baseline reachable and will pipe into CanBeReached(). +#define TRAIT_SKIP_BASIC_REACH_CHECK "skip_basic_reach_check" + +//---- Heretic Traits +/// Hides the heretic overlay that outs them as the heretic +#define TRAIT_HERETIC_AURA_HIDDEN "heretic_aura_hidden" +/// This rod was infused by a heretic, making it awesome and improving influence gain +#define TRAIT_ROD_MANSUS_INFUSED "rod_infused" +/// Allows heretics to cast their spells. +#define TRAIT_ALLOW_HERETIC_CASTING "allow_heretic_casting" +/// Designates a heart as a living heart for a heretic. +#define TRAIT_LIVING_HEART "living_heart" +/// Trait given to all participants in a heretic arena +#define TRAIT_ELDRITCH_ARENA_PARTICIPANT "eldritch_arena_participant" +/// Trait given to heretic summons, making them immune to heretic spells +#define TRAIT_HERETIC_SUMMON "heretic_summon" +/// Lock heretic grasp no longer goes on cooldown when opening things +#define TRAIT_LOCK_GRASP_UPGRADED "lock_grasp_upgraded" //quirk traits #define TRAIT_ALCOHOL_TOLERANCE "alcohol_tolerance" @@ -974,7 +1013,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_PHOTOGRAPHER "photographer" #define TRAIT_MUSICIAN "musician" #define TRAIT_LIGHT_DRINKER "light_drinker" -#define TRAIT_EMPATH "empath" #define TRAIT_EVIL "evil" #define TRAIT_FRIENDLY "friendly" #define TRAIT_GRABWEAKNESS "grab_weakness" @@ -1154,6 +1192,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_FISH_SURVIVE_COOKING "fish_survive_cooking" ///This fish is healed by milk and hurt by bone hurting juice #define TRAIT_FISH_MADE_OF_BONE "fish_made_of_bone" +///The traits of this fish have been edited by a fish gene-gun at least once. It'll die the next time the fish genegun is used on them. +#define TRAIT_FISH_GENEGUNNED "fish_genegunned" /** * This fish has been fed teslium without the electrogenesis having trait. * Gives the electrogenesis, but at halved output, and it hurts the fish over time. @@ -1386,9 +1426,6 @@ 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" -/// Trait given to all participants in a heretic arena -#define TRAIT_ELDRITCH_ARENA_PARTICIPANT "eldritch_arena_participant" - // 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" @@ -1475,8 +1512,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai ///Trait given to atoms currently affected by projectile dampeners #define TRAIT_GOT_DAMPENED "got_dampened" -/// humans with this trait will have their health visible to AIs without suit -#define HUMAN_SENSORS_VISIBLE_WITHOUT_SUIT "hmsensorsvisiblewithoutsuit" +/// Having this trait allows the basic health hud to show up for this mob +#define TRAIT_BASIC_HEALTH_HUD_VISIBLE "basic_health_hud_visible" /// Apply to movables to say "hey, this movable is technically flat on the floor, so it'd be mopped up by a mop" #define TRAIT_MOPABLE "mopable" @@ -1515,9 +1552,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai ///A trait given to users as a mutex to prevent repeated unresolved attempts to christen a shuttle #define TRAIT_ATTEMPTING_CHRISTENING "attempting_christening" -///Trait given to heretic summons, making them immune to heretic spells -#define TRAIT_HERETIC_SUMMON "heretic_summon" - ///trait given to mobs that are difficult to tame through mounting #define TRAIT_MOB_DIFFICULT_TO_MOUNT "difficult_to_mount" @@ -1554,8 +1588,13 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai ///Attached to objects currently on tables and such, allowing them to walk on other objects without the climbing delay #define TRAIT_ON_CLIMBABLE "on_climbable" -/// Trait that allows mobs to perform surgery on themselves +/// Allows a mob to perform any operation on themselves (with a penalty), where normally only specific operations allow self-surgery. #define TRAIT_SELF_SURGERY "self_surgery" +/// This mob's surgical operations ignore ALL speed modifiers (even positive ones!) besides tool quality. +/// The mob can also no longer fail their operations, unless the operation says otherwise +#define TRAIT_IGNORE_SURGERY_MODIFIERS "ignore_surgery_modifiers" +/// Trait applied to mobs or bodyparts which allows for them to be operated on +#define TRAIT_READY_TO_OPERATE "ready_to_operate" /// Trait that makes mobs with it immune to mining gear AOE attacks #define TRAIT_MINING_AOE_IMMUNE "mining_aoe_immune" @@ -1563,7 +1602,23 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai /// Trait that allows an item to perform holy rites akin to a nullrod #define TRAIT_NULLROD_ITEM "nullrod_item" +/// Mob gets far less severe negative moodlets from seeing death / blood +#define TRAIT_DESENSITIZED "desensitized" + /// Trait specifying that an AI has a remote connection to an integrated circuit #define TRAIT_CONNECTED_TO_CIRCUIT "connected_to_circuit" +/// Applied to an organ that has been operated on - some organs can't be operated on multiple times +#define TRAIT_ORGAN_OPERATED_ON "organ_operated_on" + +/// Mob is artificially spawned rather than being created through more natural means - applied to monkey cubes and such +#define TRAIT_SPAWNED_MOB "spawned_mob" + +/// Turf is one that ai mobs will generally avoid pathing through +/// Doesn't need to be applied to any turfs that override can_cross_safely +#define TRAIT_AI_AVOID_TURF "warning_turf" + +/// Object is dangerous to mobs buckled to it +#define TRAIT_DANGEROUS_BUCKLE "dangerous_buckle" + // END TRAIT DEFINES diff --git a/code/__DEFINES/traits/sources.dm b/code/__DEFINES/traits/sources.dm index edea6b634788..f68a242e5657 100644 --- a/code/__DEFINES/traits/sources.dm +++ b/code/__DEFINES/traits/sources.dm @@ -26,8 +26,12 @@ #define JOB_TRAIT "job" /// Any traits granted by quirks. #define QUIRK_TRAIT "quirk_trait" +/// Trait source for personality traits +#define PERSONALITY_TRAIT "personality_trait" /// (B)admins only. #define ADMIN_TRAIT "admin" +/// Traits that were granted via modify_traits in vv or the mass_modify_traits verb +#define TRAIT_ADMIN_GRANTED "adminabuse" /// Any traits given through a smite. #define SMITE_TRAIT "smite" #define CHANGELING_TRAIT "changeling" @@ -57,8 +61,6 @@ #define SHOES_TRAIT "shoes" /// Trait inherited by implants #define IMPLANT_TRAIT "implant" -/// Traits given by the heretic arena spell -#define HERETIC_ARENA_TRAIT "heretic_arena" #define GLASSES_TRAIT "glasses" /// inherited from riding vehicles #define VEHICLE_TRAIT "vehicle" @@ -102,9 +104,16 @@ /// Trait given by being recruited as a nuclear operative #define NUKE_OP_MINION_TRAIT "nuke-op-minion" +//---- Heretic Traits Sources +/// Traits given by the heretic arena spell +#define HERETIC_ARENA_TRAIT "heretic_arena" + /// Trait given to you by shapeshifting #define SHAPESHIFT_TRAIT "shapeshift_trait" +///From the cuffed_item status effect +#define CUFFED_ITEM_TRAIT "cuffed_item_trait" + // unique trait sources, still defines #define EMP_TRAIT "emp_trait" #define STATUE_MUTE "statue" diff --git a/code/__DEFINES/transport.dm b/code/__DEFINES/transport.dm index 09d4f39280a8..0a36c27979da 100644 --- a/code/__DEFINES/transport.dm +++ b/code/__DEFINES/transport.dm @@ -19,6 +19,7 @@ #define HILBERT_LINE_1 "hilb_1" #define BIRDSHOT_LINE_1 "bird_1" #define BIRDSHOT_LINE_2 "bird_2" +#define HERETIC_LINE_1 "heretic_1" // Destinations/platforms #define TRAMSTATION_WEST 1 @@ -32,6 +33,10 @@ #define BIRDSHOT_PRISON_WING 1 #define BIRDSHOT_SECURITY_WING 2 +#define HERETIC_PORT 1 +#define HERETIC_CENTRAL 2 +#define HERETIC_STARBOARD 3 + #define BIRDSHOT_MAINTENANCE_LEFT 1 #define BRIDSHOT_MAINTENANCE_RIGHT 2 diff --git a/code/__DEFINES/turfs.dm b/code/__DEFINES/turfs.dm index 41319ab7b9e2..3f7010c80f20 100644 --- a/code/__DEFINES/turfs.dm +++ b/code/__DEFINES/turfs.dm @@ -89,6 +89,7 @@ #define RUST_RESISTANCE_REINFORCED 2 #define RUST_RESISTANCE_TITANIUM 3 #define RUST_RESISTANCE_ORGANIC 4 +/// Should not be rustable. EVER. Includes thing like space, lava, chasms, admin walls #define RUST_RESISTANCE_ABSOLUTE 5 /// Turf will be passable if density is 0 diff --git a/code/__DEFINES/vv.dm b/code/__DEFINES/vv.dm index 6c9d4e2b8509..accfdf2ab224 100644 --- a/code/__DEFINES/vv.dm +++ b/code/__DEFINES/vv.dm @@ -136,6 +136,7 @@ #define VV_HK_VIEW_PLANES "view_planes" #define VV_HK_GIVE_AI "give_ai" #define VV_HK_GIVE_AI_SPEECH "give_ai_speech" +#define VV_HK_GIVE_ACCESS "give_access" // /mob/living #define VV_HK_GIVE_SPEECH_IMPEDIMENT "impede_speech" diff --git a/code/__DEFINES/weather.dm b/code/__DEFINES/weather.dm index 7cc84cc8a4ea..9792ff823ea4 100644 --- a/code/__DEFINES/weather.dm +++ b/code/__DEFINES/weather.dm @@ -26,7 +26,7 @@ GLOBAL_LIST_EMPTY(wizard_rain_reagents) /// 1 / 20,000 chance for a turf to get a thunder strike per tick (rare damage to mobs/equipment in area) #define THUNDER_CHANCE_RARE 0.00005 /// 1 / 50,000 chance for a turf to get a thunder strike per tick (almost no damage to mobs/equipment in area) -#define THUNDER_CHANCE_VERY_RARE 0.00002 +#define THUNDER_CHANCE_VERY_RARE 0.000002 // DARKPACK EDIT CHANGE /// admin verb to control thunder via the run_weather command GLOBAL_LIST_INIT(thunder_chance_options, list( @@ -35,7 +35,7 @@ GLOBAL_LIST_INIT(thunder_chance_options, list( "Regular - Standard Storm Activity" = THUNDER_CHANCE_AVERAGE, "Occasional - A polite amount of thunder" = THUNDER_CHANCE_RARE, "Rare - Like finding a four-leaf clover, but in the sky" = THUNDER_CHANCE_VERY_RARE, - "None - Admin Safe Space (Thunder Disabled)" = NONE, + "None - Admin Safe Space (Thunder Disabled)" = 0, )) //WEATHER FLAGS @@ -53,6 +53,17 @@ GLOBAL_LIST_INIT(thunder_chance_options, list( #define WEATHER_BAROMETER (1<<5) /// If weather temperature ignores clothing insulation when adjusting bodytemperature #define WEATHER_TEMPERATURE_BYPASS_CLOTHING (1<<6) +/// Alerts are only sent to people within affected area rather than on affected z-levels +#define WEATHER_STRICT_ALERT (1<<7) /// Does weather have any type of processing related to mobs, turfs, or thunder? #define FUNCTIONAL_WEATHER (WEATHER_TURFS|WEATHER_MOBS|WEATHER_THUNDER) + +// Indexes for weather_data list to override behaviors +#define WEATHER_FORCED_AREAS "Areas" +#define WEATHER_FORCED_FLAGS "Flags" +#define WEATHER_FORCED_REAGENT "Reagent" +#define WEATHER_FORCED_THUNDER "Thunder Chance" +#define WEATHER_FORCED_TELEGRAPH "Telegraph Duration" +#define WEATHER_FORCED_END "End Duration" +#define WEATHER_FORCED_DURATION "Weather Duration" diff --git a/code/__DEFINES/wounds.dm b/code/__DEFINES/wounds.dm index 39012e8f0786..b345fda19950 100644 --- a/code/__DEFINES/wounds.dm +++ b/code/__DEFINES/wounds.dm @@ -80,12 +80,16 @@ GLOBAL_LIST_INIT(wound_severities_chronological, list( #define BIO_FLESH (1<<1) /// Has metal - allows the victim to suffer robotic blunt and burn wounds #define BIO_METAL (1<<2) +/// Has wood - should probably be able to catch on fire, or something +#define BIO_WOOD (1<<3) /// Is wired internally - allows the victim to suffer electrical wounds (robotic T1-T3 slash/pierce) -#define BIO_WIRED (1<<3) +#define BIO_WIRED (1<<4) /// Has bloodflow - can suffer bleeding wounds and can bleed -#define BIO_BLOODED (1<<4) +#define BIO_BLOODED (1<<5) /// Is connected by a joint - can suffer T1 bone blunt wounds (dislocation) -#define BIO_JOINTED (1<<5) +#define BIO_JOINTED (1<<6) +/// Skin is covered in thick chitin and is resistant to cutting +#define BIO_CHITIN (1<<7) /// Robotic - can suffer all metal/wired wounds, such as: UNIMPLEMENTED PLEASE UPDATE ONCE SYNTH WOUNDS 9/5/2023 ~Niko #define BIO_ROBOTIC (BIO_METAL|BIO_WIRED) /// Has flesh and bone - See BIO_BONE and BIO_FLESH @@ -94,6 +98,8 @@ GLOBAL_LIST_INIT(wound_severities_chronological, list( #define BIO_STANDARD_UNJOINTED (BIO_FLESH_BONE|BIO_BLOODED) /// Standard humanoid limbs - can bleed and suffer all flesh/bone wounds, such as: T1-3 slash/pierce/burn/blunt. Can also bleed, and be dislocated. Think human arms and legs #define BIO_STANDARD_JOINTED (BIO_STANDARD_UNJOINTED|BIO_JOINTED) +/// Xenomorph limbs (xenos are immune to wounds anyhow) +#define BIO_STANDARD_ALIEN (BIO_CHITIN|BIO_BONE|BIO_BLOODED|BIO_JOINTED) // "Where" a specific biostate is within a given limb // Interior is hard shit, the last line, shit like bones @@ -115,6 +121,7 @@ GLOBAL_LIST_INIT(bio_state_anatomy, list( "[BIO_METAL]" = ANATOMY_INTERIOR, "[BIO_FLESH]" = ANATOMY_EXTERIOR, "[BIO_BONE]" = ANATOMY_INTERIOR, + "[BIO_CHITIN]" = ANATOMY_EXTERIOR, )) // Wound series @@ -235,7 +242,7 @@ GLOBAL_LIST_INIT(wounding_types_to_series, list( * severity_max to the highest wound you're willing to tolerate, and severity_pick_mode to WOUND_PICK_LOWEST_SEVERITY. * * Args: - * * list/wounding_types: A list of wounding_types. Only wounds that accept these wound types will be considered. + * * wounding_type: Wounding type wounds of which we should be searching for * * obj/item/bodypart/part: The limb we are considering. Extremely important for biostates. * * severity_min: The minimum wound severity we will search for. * * severity_max = severity_min: The maximum wound severity we will search for. @@ -247,12 +254,10 @@ GLOBAL_LIST_INIT(wounding_types_to_series, list( * Returns: * A randomly picked wound typepath meeting all the above criteria and being applicable to the part's biotype - or null if there were none. */ -/proc/get_corresponding_wound_type(list/wounding_types, obj/item/bodypart/part, severity_min, severity_max = severity_min, severity_pick_mode = WOUND_PICK_HIGHEST_SEVERITY, random_roll = TRUE, duplicates_allowed = FALSE, care_about_existing_wounds = TRUE) +/proc/get_corresponding_wound_type(wounding_type, obj/item/bodypart/part, severity_min, severity_max = severity_min, severity_pick_mode = WOUND_PICK_HIGHEST_SEVERITY, random_roll = TRUE, duplicates_allowed = FALSE, care_about_existing_wounds = TRUE) RETURN_TYPE(/datum/wound) // note that just because its set to return this doesnt mean its non-nullable - var/list/wounding_type_list = list() - for (var/wounding_type in wounding_types) - wounding_type_list += GLOB.wounding_types_to_series[wounding_type] + var/list/wounding_type_list = GLOB.wounding_types_to_series[wounding_type] if (!length(wounding_type_list)) return null @@ -277,7 +282,7 @@ GLOBAL_LIST_INIT(wounding_types_to_series, list( for (var/datum/wound/iterated_path as anything in wound_typepaths) var/datum/wound_pregen_data/pregen_data = GLOB.all_wound_pregen_data[iterated_path] - if (pregen_data.can_be_applied_to(part, wounding_types, random_roll = random_roll, duplicates_allowed = duplicates_allowed, care_about_existing_wounds = care_about_existing_wounds)) + if (pregen_data.can_be_applied_to(part, wounding_type, random_roll = random_roll, duplicates_allowed = duplicates_allowed, care_about_existing_wounds = care_about_existing_wounds)) paths_to_pick_from[iterated_path] = wound_typepaths[iterated_path] return pick_weight(paths_to_pick_from) // we found our winners! diff --git a/code/__DEFINES/~darkpack/areas.dm b/code/__DEFINES/~darkpack/areas.dm index e3c5dc74ffb6..d81c585bcf5d 100644 --- a/code/__DEFINES/~darkpack/areas.dm +++ b/code/__DEFINES/~darkpack/areas.dm @@ -2,5 +2,5 @@ #define ZONE_MASQUERADE "masquerade" /// Safe zone where Masquerade breaches can't occur #define ZONE_NO_MASQUERADE "battle" -// TODO: [Rebase] - Someone give this a comment lol +/// Safe zone where no fighting is supposed to happen. #define ZONE_ELYSIUM "elysium" diff --git a/code/__DEFINES/~darkpack/auras.dm b/code/__DEFINES/~darkpack/auras.dm new file mode 100644 index 000000000000..514c44e06e60 --- /dev/null +++ b/code/__DEFINES/~darkpack/auras.dm @@ -0,0 +1,68 @@ +// Base color auras +#define AURA_AFRAID COLOR_ORANGE // Orange +#define AURA_AGGRESSIVE COLOR_PURPLE // Purple +#define AURA_ANGRY COLOR_RED // Red +#define AURA_BITTER COLOR_BROWN // Brown +#define AURA_CALM COLOR_CARP_LIGHT_BLUE // Light Blue +#define AURA_COMPASSIONATE COLOR_PINK // Pink +#define AURA_CONSERVATIVE LIGHT_COLOR_LAVENDER // Lavender +#define AURA_DEPRESSED COLOR_GRAY // Gray +#define AURA_DESIROUS COLOR_DARK_RED // Deep Red +#define AURA_DISTRUSTFUL LIGHT_COLOR_GREEN // Light Green +#define AURA_ENVIOUS COLOR_CARP_DARK_GREEN // Dark Green +#define AURA_EXCITED COLOR_VIOLET // Violet +#define AURA_GENEROUS COLOR_LIGHT_PINK // Rose +#define AURA_HAPPY COLOR_VIVID_RED // Vermillion +#define AURA_HATEFUL COLOR_BLACK // Black +#define AURA_IDEALISTIC COLOR_YELLOW // Yellow +#define AURA_INNOCENT COLOR_WHITE // White +#define AURA_LOVESTRUCK COLOR_BLUE // Blue +#define AURA_OBSESSED COLOR_GREEN // Green +#define AURA_SAD COLOR_SILVER // Silver +#define AURA_SPIRITUAL COLOR_GOLD // Gold +#define AURA_SUSPICIOUS COLOR_STRONG_BLUE // Dark Blue + +// Modifier auras. +#define AURA_ANXIOUS "Anxious" // Auras appear scrambled like static or white noise + +#define AURA_CONFUSED "Confused" // Mottled, shifting colors -- Intermittent pauses in animation +#define AURA_DAYDREAMING "Daydreaming" // Sharp flickering colors -- Slow animation +#define AURA_PSYCHOTIC "Psychotic" // Hypnotic, swirling colors -- Fast animation + +// Untoggleable auras. Left in here as reminders of what is used by outside variables. +#define AURA_DIABLERIST (FALSE) // Black veins in aura +#define AURA_FRENZIED (FALSE) // Rapidly rippling colors +#define AURA_VAMPIRE (FALSE) // Aura colors are pale +#define AURA_GHOUL (FALSE) // Pale blotches in the aura +#define AURA_MAGIC_USE (FALSE) // Myriad sparkles in aura -- Not implemented. Mages. +#define AURA_WEREBEAST (FALSE) // Bright, vibrant aura -- DARKPACK TODO - GAROU +#define AURA_GHOST (FALSE) // Weak, intermittent aura +#define AURA_FAERIE (FALSE) // Rainbow highlights in aura -- Not implemented. Changelings. + +GLOBAL_LIST_INIT(aura_list, sort_list(list( +"Afraid" = AURA_AFRAID, +"Aggressive" = AURA_AGGRESSIVE, +"Angry" = AURA_ANGRY, +"Bitter" = AURA_BITTER, +"Calm" = AURA_CALM, +"Compassionate" = AURA_COMPASSIONATE, +"Conservative" = AURA_CONSERVATIVE, +"Depressed" = AURA_DEPRESSED, +"Desirous" = AURA_DESIROUS, +"Distrustful" = AURA_DISTRUSTFUL, +"Envious" = AURA_ENVIOUS, +"Excited" = AURA_EXCITED, +"Generous" = AURA_GENEROUS, +"Happy" = AURA_HAPPY, +"Hateful" = AURA_HATEFUL, +"Idealistic" = AURA_IDEALISTIC, +"Innocent" = AURA_INNOCENT, +"Lovestruck" = AURA_LOVESTRUCK, +"Obsessed" = AURA_OBSESSED, +"Sad" = AURA_SAD, +"Spiritual" = AURA_SPIRITUAL, +"Suspicious" = AURA_SUSPICIOUS, +"Anxious" = AURA_ANXIOUS, +"Confused" = AURA_CONFUSED, +"Daydreaming" = AURA_DAYDREAMING, +"Psychotic" = AURA_PSYCHOTIC))) diff --git a/code/__DEFINES/~darkpack/banning.dm b/code/__DEFINES/~darkpack/banning.dm new file mode 100644 index 000000000000..6e320960cbe9 --- /dev/null +++ b/code/__DEFINES/~darkpack/banning.dm @@ -0,0 +1 @@ +#define BAN_LOOC "LOOC" diff --git a/code/__DEFINES/~darkpack/beastmaster.dm b/code/__DEFINES/~darkpack/beastmaster.dm new file mode 100644 index 000000000000..f2f06d41424f --- /dev/null +++ b/code/__DEFINES/~darkpack/beastmaster.dm @@ -0,0 +1 @@ +#define BB_BEASTMASTER_ENEMIES_LIST "beastmaster_enemies" diff --git a/code/__DEFINES/~darkpack/branding.dm b/code/__DEFINES/~darkpack/branding.dm index 1a59ebf73488..774626bc4970 100644 --- a/code/__DEFINES/~darkpack/branding.dm +++ b/code/__DEFINES/~darkpack/branding.dm @@ -1,2 +1,221 @@ #define CITY_NAME "San Francisco" -#define CITY_POLICE_DEPARTMENT "San Francisco Police Department" +#define CITY_POLICE_DEPARTMENT CITY_NAME + " Police Department" + +#define NEWSPAPER_COMPANY "Angel Times" + +#define SEPT_NAME "Sept of the Western Eye" + +#define EVIL_COMPANY "Pentex" + +#define MAIN_EVIL_COMPANY EVIL_OIL_COMPANY // Only effects Pentex job slots + +// Treated as subsidary of EVIL_COMPANY +/* MAJOR COMPANIES - Currently or at one time held the Top 21 Company title */ +#define EVIL_TRASH_COMPANY "Ardus Enterprises" +#define EVIL_TOY_COMPANY "Avalon Incorporated." +#define EVIL_CIGARETTE_COMPANY "Circinus Brands" +#define EVIL_INVESTMENT_COMPANY "Consolidex Worldwide" +#define EVIL_OIL_COMPANY "Endron International" +#define EVIL_NUCLEAR_COMPANY "Atlas International" // Subsidiary of Endron +#define EVIL_MINING_COMPANY "Harold and Harold Mining, Incorporated" +#define EVIL_PAPER_COMPANY "Good House International" +#define EVIL_FISHING_COMPANY "Hallahan Fishing Company" +#define EVIL_GROCERY_COMPANY "Herrick's" +#define EVIL_LIQUOR_COMPANY "King Breweries and Distilleries" +#define EVIL_PHARMA_COMPANY "Magadon, Incorporated" +#define EVIL_COSMETICS_COMPANY "Aesop Research Company" // Subsidiary of Magadon +#define EVIL_HOSPITAL_COMPANY "Autumn Health Management Systems" // Subsidiary of Magadon +#define EVIL_AVIATION_COMPANY "Nastrum Enterprises" +#define EVIL_TELEVISION_COMPANY "Omni Television" +#define EVIL_FAST_FOOD_COMPANY "O'Tolley's" +#define EVIL_TTRPG_COMPANY "Black Dog Game Factory" +#define EVIL_PLASTIC_COMPANY "Rainbow Incorporated" +#define EVIL_COMPUTER_COMPANY "Tellus Enterprises" +#define EVIL_COMPUTER_COMPANY_2 "Sunburst Computers" // Subsidiary of Tellus +#define EVIL_PUBLISHING_COMPANY "Vesuvius Incorporated" +#define EVIL_FOOD_COMPANY "Young and Smith, Incorporated" + +/* ENDRON SUBSIDIARIES */ +#define EVIL_ENGINE_COMPANY "Easton Exploratory Energies" +#define EVIL_CAR_COMPANY "Falcon Motors" +#define EVIL_EGYPTIAN_OIL_COMPANY "EGPC" + +/* HAROLD AND HAROLD SUBSIDIARIES */ +#define EVIL_EGYPTIAN_MINING_COMPANY "Kaulet Mining" + +/* KING BREWERIES SUBSIDIARIES */ +#define EVIL_WATERWAY_COMPANY "AquaClear Foundation" +#define EVIL_WINE_COMPANY "Dragon Valley Vineyards" +#define EVIL_BEER_COMPANY "King Breweries" +#define EVIL_LIQUOR_IMPORT_COMPANY "King Import Company" +#define EVIL_DISTILLER_COMPANY "King Spirits" +#define EVIL_VODKA_COMPANY "Ruskaiya Distilleries" +#define EVIL_ALE_COMPANY "Ten Tickle Ales" +#define EVIL_SELTZER_COMPANY "Thaw Beverages" + +/* MAGADON SUBSIDIAIRES */ +#define EVIL_OLD_PEOPLE_COMPANY "Campesi Gerontological Research" +#define EVIL_NUTRITION_COMPANY "General Health and Nutrition" +#define EVIL_DRUG_TESTING_COMPANY "PANACEA Pharmaceuticals" +#define EVIL_EGYPTIAN_DRUG_COMPANY "Hearst Pharmaceuticals" + +/* NASTRUM SUBSIDIARIES */ +#define EVIL_MILITARY_ELECTRONICS_COMPANY "Mars Electronics" + +/* BLACK DOG SUBSIDIARIES */ +#define EVIL_ICELAND_COMPANY "PCP" // This is actually their parent company, but it isn't in the Top 21 +#define EVIL_TTRPG_COMPANY_2 "Death Lord Games" + +/* TELLUS SUBSIDIARIES */ +#define EVIL_FREELANCE_DEV_COMPANY "Fatalistic" +#define EVIL_INDIE_COMPANY "Nightmare Engine Studios" +#define EVIL_JAPANESE_PUBLISHING_COMPANY "Tellus of Japan" // Formerly Tetsumomo Studios +#define EVIL_JAPANESE_STUDIO "Wotan Studios" + +/* VESUVIUS SUBSIDIARIES */ +#define EVIL_COMIC_COMPANY "POW Comics" + +/* DIRECT PENTEX SUBISIDIARES */ +#define EVIL_SCHOOL_COMPANY "Bradford Incorporated." +#define EVIL_CREDIT_COMPANY "Credicorps" +#define EVIL_COSMETICS_COMPANY_2 "Siren Cosmetics" +#define EVIL_COSMETICS_COMPANY_3 "Pangloss Cosmetics" // Subsidiary of Siren Cosmetics +#define EVIL_WEAPON_COMPANY "Full Force Solutions" +#define EVIL_PR_COMPANY "Gaia Research Company" +#define EVIL_HANDGUN_COMPANY "Herculean Firearms Incorporated" +#define EVIL_CONSTRUCTION_COMPANY "Hi-Quality Builders" +#define EVIL_LAW_COMPANY "Meyers, Feinstein and Hargrett" +#define EVIL_TECH_COMPANY "NikNak Computing" +#define EVIL_GAMING_COMPANY "Deep Dive Games" // Subsidiary of NikNak +#define EVIL_NEWS_COMPANY "RED Network" +#define EVIL_CONTSTRUCTION_COMPANY_2 "Safe Haven Construction" +#define EVIL_INTEL_COMPANY "Shade, Inc." +#define EVIL_HORROR_COMPANY "Slaughterhouse Video" +#define EVIL_CONSULTING_COMPANY "Southeastern Tech Management" +#define EVIL_ENERGY_COMPANY "Everlite Gas & Electric" +#define EVIL_COPYRIGHT_COMPANY "Genefex" // Not a subsidiary, but supports EVIL_COMPANY subsidiaries + +// Generic companies - Some are still evil, but not under EVIL_COMPANY +#define BRAND_BAIL_BOND_COMPANY "A & B Kilpatrick's Bail Bonds" +#define BRAND_TTRPG_COMPANY "Apex Amusement Association" +#define BRAND_IMPORTS_COMPANY "Ashukhi Corporation" +#define BRAND_NIGHTCLUB_COMPANY "The Asylum" +#define BRAND_CHILD_CARE_COMPANY "Aunt Charlotte's Child Care" // Weaver tainted company +#define BRAND_ICE_CREAM_COMPANY "Banana Split" +#define BRAND_VIDEO_COMPANY "Block Party Videos" // Front company for the NWO - Owned by the Syndicate +#define BRAND_MECHANIC_COMPANY "Brothers Downtown Garage" +#define BRAND_SCRAPYARD_COMAPNY "Brothers Salvage" // Subsidiary of Brothers Downtown Garage +#define BRAND_COFFEE_COMPANY "C. Moore's Coffee" +#define BRAND_ENERGY_COMPANY "Chemikon" +#define BRAND_RAMEN_COMPANY "Chiki Mei-Mei Ramen" +#define BRAND_TACO_COMPANY "Chubby's Taco Shack" +#define BRAND_NIGHTCLUB_COMPANY_2 "Club Confession" +#define BRAND_PHARMA_COMPANY "Crucible Genetics Amalgamated" +#define BRAND_TTRPG_COMPANY_2 "Cryptograph" +#define BRAND_TTRPG_COMPANY_3 "Death Lord Games" +#define BRAND_PORN_COMPANY "Death Mask Productions" +#define BRAND_GENETICS_COMPANY "Developmental Neogenetics Amalgamated" +#define BRAND_TATTOO_COMPANY "Devil's Brand Tattoo" +#define BRAND_TTRPG_COMPANY_4 "Discordium" +#define BRAND_TECH_COMPANY "DodecaTechnoCo" +#define BRAND_SHIPPING_COMPANY "Ash Shipping" +#define BRAND_CAPITALISM_COMPANY "DotGEO Futures" // Front company for the Camarilla +#define BRAND_TECH_COMPANY_2 "Double Spiral" +#define BRAND_SHIPPING_COMPANY_2 "EEP Shipping" +#define BRAND_SHIPPING_COMPANY_3 "Gary Export Company" // Front company to transport Kindred into Gary Indiana +#define BRAND_LAW_COMPANY "Hernandez and Associates" // Specializes in animal rights, owned by Gangrel Rosa Hernandez +#define BRAND_ECONOMY_COMPANY "Newman-Feng BlueTech" +#define BRAND_ART_COMPANY "Rosemond Society" +#define BRAND_SMUGGLING_COMPANY "Sugar Trust" +#define BRAND_RECORD_COMPANY "Temple of Boom" +#define BRAND_FILM_COMPANY "Elegant Pictures" +#define BRAND_HOTEL_COMPANY "Empire Arms Hotels" +#define BRAND_TOFU_COMPANY "Extreme Tofu" +#define BRAND_SHIPPING_COMPANY_4 "Foxy Boxes" +#define BRAND_NONPROFIT_COMPANY "Fraser Foundation" +#define BRAND_CAPITALISM_COMPANY_2 "Fu Syndicate" +#define BRAND_ART_COMPANY_2 "Gallery Noir" +#define BRAND_PROSTHETICS_COMPANY "Gimble's Prosthetics" +#define BRAND_NIGHTCLUB_COMPANY_3 "Glaze" +#define BRAND_FISH_COMPANY "Golden Oceans Fish Market" +#define BRAND_COFFEE_COMPANY_2 "gosh!coffee" +#define BRAND_ENVRIONMENTAL_COMPANY "Green Weave Enterprises" // Owned and ran by Glasswalkers +#define BRAND_HOTEL_COMPANY_2 "Hallowbrook Hotels" +#define BRAND_BANKING_COMPANY "Huaxia Bank" +#define BRAND_PIZZA_COMPANY "Hungry Veggie's No Meatza" +#define BRAND_WATCH_COMPANY "Huntley Watches" +#define BRAND_INVESTMENT_COMPANY "Insight Investments" +#define BRAND_BABY_FOOD_COMPANY "Insurrection Baby Food Formula Company" +#define BRAND_TECH_COMPANY_3 "JBX Solutions" +#define BRAND_CRYO_COMPANY "JDG Cryogenics" +#define BRAND_COMPUTER_COMPANY "Kamikazi Zen" +#define BRAND_AI_COMPANY "Keen Corporation" +#define BRAND_CAPITALISM_COMPANY_3 "LaCroix Foundation" // Yes, that LaCroix +#define BRAND_PROJECTION_COMPANY "Lazarus Redux" // Founded by members of the Orpheus Group +#define BRAND_MASSAGE_COMPANY "Lotus Blossom" +#define BRAND_TTRPG_COMPANY_5 "LSD, Inc." +#define BRAND_COMPUTER_COMPANY_2 "Macrosoft" +#define BRAND_TTRPG_COMPANY_6 "Magicians of the Bay" +#define BRAND_CHINESE_FOOD_COMPANY "Mao Long Restaurant" +#define BRAND_COMPUTER_COMPANY_6 "Megahurtz Computing" +#define BRAND_GHOST_COMPANY "Monster-X" +#define BRAND_FOOD_COMPANY "Neldner Wellness Group" +#define BRAND_PRIVATE_SECURITY_COMPANY "Neo Albion" +#define BRAND_PROJECTION_COMPANY_2 "NextWorld" +#define BRAND_THEATRE_COMPANY "Nocturne Theatres" +#define BRAND_PROJECTION_COMPANY_3 "Orpheus Group" +#define BRAND_FILM_COMPANY_2 "Parasite Studios" +#define BRAND_GHOST_COMPANY_2 "Phantom Nabbers" +#define BRAND_ARCADE_COMPANY "Playtime Arcades" +#define BRAND_HOUSING_COMPANY "Pleasant Homes" +#define BRAND_TECH_COMPANY_4 "Re:Venge" +#define BRAND_CHINESE_FOOD_COMPANY_2 "Red Dragon" +#define BRAND_FAST_FOOD_COMPANY "S&M: All Deviant Food" +#define BRAND_DEPARTMENT_STORE_COMPANY "Shanghai Zhonglian Department Stores" +#define BRAND_TECH_COMPANY_5 "Shinzui Industries" // Basically Weaver Pentex +#define BRAND_SMOKING_COMPANY "The Smoke Shop" +#define BRAND_FAST_FOOD_COMPANY_2 "Space Burger" +#define BRAND_COFFEE_COMPANY_3 "Spooky Brews" +#define BRAND_TTRPG_COMPANY_7 "Stan Paxton Games" +#define BRAND_DEPARTMENT_STORE_COMPANY_2 "Star-Mart" +#define BRAND_GAS_COMPANY "SunCo Gasoline" +#define BRAND_GAMES_COMPANY "Sweatshop Games" +#define BRAND_DATING_COMPANY "Tender" +#define BRAND_PROJECTION_COMPANY_4 "Terrel & Squib" +#define BRAND_PROJECTION_COMPANY_5 "Tranquility, Inc." +#define BRAND_DRUG_COMPANY "Tseng's Herbal Remedies" +#define BRAND_GAMES_COMPANY_2 "WebWorks" +#define BRAND_CURIO_COMPANY "White Cloud" +#define BRAND_RAMEN_COMPANY_2 "Wu Family Ramen" +#define BRAND_GLASSES_COMPANY "Wuliangcai Glasses" +#define BRAND_TELECOM_COMPANY "XTend Ltd." +#define BRAND_SHIPPING_COMPANY_5 "Zhao's Imports" + +// Invidiual products +#define BRAND_CHOCOLATE_BAR "100 Rando" +#define BRAND_CHOCOLATE_BAR_2 "5th Venue" +#define BRAND_CHOCOLATE_BAR_3 "Big Lunk" +#define BRAND_BUBBLEGUM "Bubble Bum" +#define BRAND_CHOCOLATE_BAR_4 "DayDay" +#define BRAND_CHOCOLATE_BAR_5 "Eat" +#define BRAND_CHOCOLATE_BAR_6 "Fiix" +#define BRAND_CHOCOLATE_BAR_7 "Farefree" +#define BRAND_CHOCOLATE_BAR_8 "Hers His" +#define BRAND_CHOCOLATE_BAR_9 "MilkyMan" +#define BRAND_CHOCOLATE_BAR_10 "Mr. Goo Goo" +#define BRAND_CHOCOLATE_BAR_11 "n&n's" +#define BRAND_CHOCOLATE_BAR_12 "PitPat" +#define BRAND_CHOCOLATE_BAR_13 "Pounds" +#define BRAND_CANDIES "Srittles" +#define BRAND_CHOCOLATE_BAR_14 "STork" +#define BRAND_SODA_COMPANY "Cepsi" +#define BRAND_SODA_COMPANY_2 "Diet Cock" +#define BRAND_TTRPG_SYSTEM "CRUNCH" + +// Other Groups +#define BRAND_BAND "Bronx Cheer" // Kindred mashup band +#define BRAND_BAND_2 "Lilith's Satanic Blood" +#define BRAND_BAND_3 "Phyre" +#define BRAND_BAND_4 "Seventh Son" // Led by the Prince of Denver +#define BRAND_BAND_5 "Ynglinga" +// We should really port shiptest or tgmc's branding examine text stuff diff --git a/code/__DEFINES/~darkpack/colors.dm b/code/__DEFINES/~darkpack/colors.dm new file mode 100644 index 000000000000..ba63b538ad1b --- /dev/null +++ b/code/__DEFINES/~darkpack/colors.dm @@ -0,0 +1 @@ +#define COLOR_ENDRON_GREEN "#015334" diff --git a/code/__DEFINES/~darkpack/combat.dm b/code/__DEFINES/~darkpack/combat.dm new file mode 100644 index 000000000000..629e884fd051 --- /dev/null +++ b/code/__DEFINES/~darkpack/combat.dm @@ -0,0 +1,14 @@ +//normal duration defines +///Duration of one "turn", which is 5 seconds according to us +#define TURNS * 5 SECONDS +///Duration of one "scene", which is 3 minutes according to us +#define SCENES * 3 MINUTES + +// To eyeball damage as its calcuated in the ttrpg +#define TTRPG_DAMAGE * 5 + +// Unused for now +#define BASHING "bashing" +#define LETHAL "lethal" +// exists in code/__DEFINES/~darkpack/aggravated_damage.dm +//#define AGGRAVATED diff --git a/code/__DEFINES/~darkpack/crimes.dm b/code/__DEFINES/~darkpack/crimes.dm new file mode 100644 index 000000000000..8fe9bc535867 --- /dev/null +++ b/code/__DEFINES/~darkpack/crimes.dm @@ -0,0 +1,6 @@ +#define CRIME_GUNSHOTS "Gunshots" +#define CRIME_FIREFIGHT "Firefight" +#define CRIME_MURDER "Murder" +#define CRIME_BURGLARY "Burglary" +#define CRIME_EMERGENCY "Emergency Alarm" +#define CRIME_ATM_TAMPERING "Atm Tampering" diff --git a/code/__DEFINES/~darkpack/darkpack_roles.dm b/code/__DEFINES/~darkpack/darkpack_roles.dm index 5b62248cf520..14956df5d163 100644 --- a/code/__DEFINES/~darkpack/darkpack_roles.dm +++ b/code/__DEFINES/~darkpack/darkpack_roles.dm @@ -1 +1,6 @@ +// Roles for all the different possible darkpack ghost spawns. #define ROLE_GHOUL "Ghoul" +#define ROLE_FIRST_TEAM "First Team" +#define ROLE_SWAT "SWAT" +#define ROLE_SABBAT "Sabbat" +#define ROLE_NATIONAL_GUARD "National Guard" diff --git a/code/__DEFINES/~darkpack/dcs/fire_signals.dm b/code/__DEFINES/~darkpack/dcs/fire_signals.dm new file mode 100644 index 000000000000..75a503dbab1e --- /dev/null +++ b/code/__DEFINES/~darkpack/dcs/fire_signals.dm @@ -0,0 +1,9 @@ +///From /datum/hotspot/perform_exposure() +#define COMSIG_TURF_HOTSPOT_EXPOSE "turf_hotspot_expose" +///From /turf/ignite_turf(): (power, fire_color) +#define COMSIG_TURF_IGNITED "turf_ignited" + ///Prevents hotspots and turf fires + #define SUPPRESS_FIRE (1<<0) +///From /obj/item/open_flame(): (flame_heat) +#define COMSIG_TURF_OPEN_FLAME "open_flame" + #define BLOCK_TURF_IGNITION (1<<0) diff --git a/code/__DEFINES/~darkpack/dcs/signals/signals_global.dm b/code/__DEFINES/~darkpack/dcs/signals/signals_global.dm new file mode 100644 index 000000000000..267c90a8a593 --- /dev/null +++ b/code/__DEFINES/~darkpack/dcs/signals/signals_global.dm @@ -0,0 +1 @@ +#define COMSIG_GLOB_REPORT_CRIME "report_crime" diff --git a/code/__DEFINES/~darkpack/dcs/signals_mob/signals_mob.dm b/code/__DEFINES/~darkpack/dcs/signals_mob/signals_mob.dm new file mode 100644 index 000000000000..2f34b021ea4e --- /dev/null +++ b/code/__DEFINES/~darkpack/dcs/signals_mob/signals_mob.dm @@ -0,0 +1,2 @@ +#define COMSIG_MOB_EMOTION_CHANGED "mob_emotion_changed" +#define COMSIG_MOB_UPDATE_AURA "mob_update_aura" diff --git a/code/__DEFINES/~darkpack/dcs/signals_mob/signals_mob_living.dm b/code/__DEFINES/~darkpack/dcs/signals_mob/signals_mob_living.dm index b759312eac0d..0ea48837babf 100644 --- a/code/__DEFINES/~darkpack/dcs/signals_mob/signals_mob_living.dm +++ b/code/__DEFINES/~darkpack/dcs/signals_mob/signals_mob_living.dm @@ -1 +1,9 @@ #define COMSIG_LIVING_JUMP_PREP_TOGGLE "living_jump_prep_toggle" + +//from base of living/set_pull_offset(): (mob/living/pull_target, grab_state) +#define COMSIG_LIVING_SET_PULL_OFFSET "living_set_pull_offset" +//from base of living/reset_pull_offsets(): (mob/living/pull_target, override) +#define COMSIG_LIVING_RESET_PULL_OFFSETS "living_reset_pull_offsets" +//from base of living/CanAllowThrough(): (atom/movable/mover, border_dir) +#define COMSIG_LIVING_CAN_ALLOW_THROUGH "living_can_allow_through" + #define COMPONENT_LIVING_PASSABLE (1<<0) diff --git a/code/__DEFINES/~darkpack/dcs/splat_signals.dm b/code/__DEFINES/~darkpack/dcs/splat_signals.dm new file mode 100644 index 000000000000..a431bb20db54 --- /dev/null +++ b/code/__DEFINES/~darkpack/dcs/splat_signals.dm @@ -0,0 +1,9 @@ +/// From /datum/splat/assign(): (mob/living/source, datum/splat/splat) +#define COMSIG_LIVING_GAINING_SPLAT "living_gaining_splat" + /// Prevent the splat from being gained, cancel assign() + #define SPLAT_PREVENT_GAIN (1<<0) +/// From /datum/splat/assign(): (mob/living/source, datum/splat/splat) +#define COMSIG_LIVING_GAINED_SPLAT "living_gained_splat" + +/// From /datum/splat/unassign(): (mob/living/source, datum/splat/splat) +#define COMSIG_LIVING_LOSE_SPLAT "living_lose_splat" diff --git a/code/__DEFINES/~darkpack/discipline.dm b/code/__DEFINES/~darkpack/discipline.dm index 9a9f8bef28b2..10f85f1b3b4b 100644 --- a/code/__DEFINES/~darkpack/discipline.dm +++ b/code/__DEFINES/~darkpack/discipline.dm @@ -1,9 +1,3 @@ -//normal duration defines -///Duration of one "turn", which is 5 seconds according to us -#define TURNS * 5 SECONDS -///Duration of one "scene", which is 3 minutes according to us -#define SCENES * 3 MINUTES - //targeting bitflags, NONE or 0 if targeting self exclusively ///Allows for self to also be selected in ranged targeting, SET TO 0 IF NOT TARGETED OR RANGED #define TARGET_SELF (1<<0) @@ -45,6 +39,8 @@ #define DISC_CHECK_SPEAK (1<<6) ///Caster must be able to see #define DISC_CHECK_SEE (1<<7) +///Caster must see the target directly (without the usage of auspex for example) +#define DISC_CHECK_DIRECT_SEE (1<<8) //power type defines, will be useful when it's made generic ///Power is a Discipline of the Vampire: The Masquerade game line diff --git a/code/__DEFINES/~darkpack/economy.dm b/code/__DEFINES/~darkpack/economy.dm index 437072c75854..72b804cd9676 100644 --- a/code/__DEFINES/~darkpack/economy.dm +++ b/code/__DEFINES/~darkpack/economy.dm @@ -1,4 +1,5 @@ #define is_creditcard(I) (istype(I, /obj/item/card/credit)) #define MINIMUM_WAGE 8 +// To allow for adjustion of inflation across a setting without too much of a headache. #define COST_OF_EGGS 3.60 diff --git a/code/__DEFINES/~darkpack/flavor_text.dm b/code/__DEFINES/~darkpack/flavor_text.dm new file mode 100644 index 000000000000..6ea5c18d398a --- /dev/null +++ b/code/__DEFINES/~darkpack/flavor_text.dm @@ -0,0 +1,17 @@ +#define MAX_FLAVOR_LEN 4096 //double the maximum message length. + +/// Examine Panel headshot +#define EXAMINE_DNA_HEADSHOT "headshot" +/// Examine Panel flavor text +#define EXAMINE_DNA_FLAVOR_TEXT "flavor_text" +/// Examine Panel flavor text +#define EXAMINE_DNA_NSFW_FLAVOR_TEXT "nsfw_flavor_text" +/// Examine Panel OOC notes +#define EXAMINE_DNA_CHARACTER_NOTES "character_notes" +/// Examine Panel OOC notes +#define EXAMINE_DNA_OOC_NOTES "ooc_notes" + +/// How many characters will be displayed in the flavor text preview before we cut it off? +#define FLAVOR_PREVIEW_LIMIT 110 +/// The default value that will go in any new player's exploitables. +#define EXPLOITABLE_DEFAULT_TEXT "This is where you put flaws that can be exploited in any way. This will be viewable by certain discplines if you modify this string, but only if there's anything at all in this box." diff --git a/code/__DEFINES/~darkpack/generations.dm b/code/__DEFINES/~darkpack/generations.dm new file mode 100644 index 000000000000..d8b48a78e502 --- /dev/null +++ b/code/__DEFINES/~darkpack/generations.dm @@ -0,0 +1,31 @@ +/** + * Generation defines + * Higher = weaker + * Lower = stronger + */ + +/// Limit for highest generation possible, Based off v20 Beckket's Jyhad Diary +#define HIGHEST_GENERATION_LIMIT 16 +/// Limit for lowest generation possible +#define LOWEST_GENERATION_LIMIT 1 +/// Limit for lowest public generation +#define MAX_PUBLIC_GENERATION 10 +/// Limit for lowest trusted player generation +#define MAX_TRUSTED_GENERATION 8 +/// The default generation every kindred begins at +#define DEFAULT_GENERATION 13 +// The generation a ghoul is. This is purely so that ghouls can use disciplines on humans only. +#define GHOUL_GENERATION HIGHEST_GENERATION_LIMIT + 1 +// The generation a human is. +#define HUMAN_GENERATION GHOUL_GENERATION + 1 +// The lowest generation that anyone using Blood of Potency can go down to. +#define BLOOD_POTENCY_GENERATION 4 + +//Rank definitions. + +#define MAX_PUBLIC_RANK 4 +#define MAX_TRUSTED_RANK 5 +#define MINIMUM_LUPUS_ATHRO_AGE 7 +#define MINIMUM_ATHRO_AGE 21 +#define MINIMUM_LUPUS_ELDER_AGE 15 +#define MINIMUM_ELDER_AGE 30 diff --git a/code/__DEFINES/~darkpack/guestbook.dm b/code/__DEFINES/~darkpack/guestbook.dm new file mode 100644 index 000000000000..b27992f4ca12 --- /dev/null +++ b/code/__DEFINES/~darkpack/guestbook.dm @@ -0,0 +1,9 @@ +// ~guestbook_flags variable on datum/job +/// We will know absolutely everyone, no matter the department +#define GUESTBOOK_OMNISCIENT (1 << 0) +/// We will know others of the same job type +#define GUESTBOOK_JOB (1 << 1) +/// We will know others in our departments +#define GUESTBOOK_DEPARTMENT (1 << 2) +/// We will not be known by others, even if they pass checks in any way otherwise +#define GUESTBOOK_FORGETMENOT (1 << 3) diff --git a/code/__DEFINES/~darkpack/is_helpers.dm b/code/__DEFINES/~darkpack/is_helpers.dm new file mode 100644 index 000000000000..bfe45ef9c953 --- /dev/null +++ b/code/__DEFINES/~darkpack/is_helpers.dm @@ -0,0 +1,5 @@ +#define is_vampire_job(job_type) (istype(job_type, /datum/job/vampire)) +#define is_prince_job(job_type) (istype(job_type, /datum/job/vampire/prince)) +#define is_sabbatist(job_type) (istype(job_type, /datum/job/vampire/sabbatpack || /datum/job/vampire/sabbatpriest || /datum/job/vampire/sabbatductus)) +#define is_sabbat_priest(job_type) (istype(job_type, /datum/job/vampire/sabbatpriest)) +#define is_sabbat_ductus(job_type) (istype(job_type, /datum/job/vampire/sabbatductus)) diff --git a/code/__DEFINES/~darkpack/jobs.dm b/code/__DEFINES/~darkpack/jobs.dm new file mode 100644 index 000000000000..bd3c6c1388c8 --- /dev/null +++ b/code/__DEFINES/~darkpack/jobs.dm @@ -0,0 +1,265 @@ +/** + * ======================= + * WARNING WARNING WARNING + * WARNING WARNING WARNING + * WARNING WARNING WARNING + * ======================= + * These names are used as keys in many locations in the database + * you cannot change them trivially without breaking job bans and + * role time tracking, if you do this and get it wrong you will die + * and it will hurt the entire time + */ + +//No department +#define JOB_CITIZEN "Citizen" +#define JOB_ORDINARY_CITIZEN "Ordinary Citizen" +#define JOB_BARISTA "Barista" +#define JOB_GRAVEYARD_KEEPER "Graveyard Keeper" +#define JOB_STREET_JANITOR "Street Janitor" +#define JOB_CLUB_WORKER "Club Worker" +#define JOB_TAXI_DRIVER "Taxi Driver" + +//Camarilla +#define JOB_PRINCE "Prince" +#define JOB_SHERIFF "Sheriff" +#define JOB_HOUND "Hound" +#define JOB_HARPY "Harpy" +#define JOB_SENESCHAL "Seneschal" +#define JOB_TOWERWORK "Tower Employee" + +//Primogens +#define JOB_PRIMOGEN_TOREADOR "Primogen Toreador" +#define JOB_PRIMOGEN_BANU_HAQIM "Primogen Banu Haqim" +#define JOB_PRIMOGEN_LASOMBRA "Primogen Lasombra" +#define JOB_PRIMOGEN_MALKAVIAN "Primogen Malkavian" +#define JOB_PRIMOGEN_NOSFERATU "Primogen Nosferatu" +#define JOB_PRIMOGEN_VENTRUE "Primogen Ventrue" + +//Anarch +#define JOB_BARON "Baron" +#define JOB_TAPSTER "Tapster" +#define JOB_BRUISER "Bruiser" +#define JOB_EMISSARY "Emissary" +#define JOB_SWEEPER "Sweeper" + +//Tremere +#define JOB_CHANTRY_ARCHIVIST "Chantry Archivist" +#define JOB_CHANTRY_REGENT "Chantry Regent" +#define JOB_CHANTRY_GARGOYLE "Chantry Gargoyle" + +//Tzimisce +#define JOB_BOGATYR "Bogatyr" +#define JOB_VOIVODE "Voivode" +#define JOB_ZADRUGA "Zadruga" + +//Police +#define JOB_POLICE_CHIEF "Police Chief" +#define JOB_POLICE_SERGEANT "Police Sergeant" +#define JOB_POLICE_OFFICER "Police Officer" +#define JOB_EMERGENCY_DISPATCHER "Emergency Dispatcher" +#define JOB_FEDERAL_INVESTIGATOR "Federal Investigator" +#define JOB_NATIONAL_GUARD "National Guard Soldier" +#define JOB_POLICE_SWAT "Swat Officer" + +//Clinic +#define JOB_CLINIC_DIRECTOR "Clinic Director" +#define JOB_DOCTOR "Doctor" + +//Church +#define JOB_PRIEST "Priest" + +//Giovanni +#define JOB_CAPO "Capo" +#define JOB_LA_SQUADRA "La Squadra" +#define JOB_LA_FAMIGLIA "La Famiglia" + +//Sabbat +#define JOB_SABBAT_DUCTUS "Sabbat Ductus" +#define JOB_SABBAT_PRIEST "Sabbat Priest" +#define JOB_SABBAT_PACK "Sabbat Pack" +#define JOB_SABBAT_SABBATIST "Sabbatist" + +// Axe Gang +#define JOB_AXE_LEADER "Screentender" +#define JOB_AXE_GANG "Axe Gang" + +// Supply +#define JOB_DEALER "Dealer" +#define JOB_SUPPLY_TECH "Dealer" + +// Forest Wolves +#define JOB_GAROU_COUNCIL "Councillor" // Elder, Athro +#define JOB_GAROU_TRUTHCATCHER "Truthcatcher" // Adren+ +#define JOB_GAROU_WARDER "Warder" // Adren+ +#define JOB_GAROU_WYRMFOE "Wyrmfoe" // Fostern +#define JOB_GAROU_GUARDIAN "Guardian" + +// Pentex +#define JOB_PENTEX_FIRST "First Team" +#define JOB_PENTEX_LEAD "Branch Lead" +#define JOB_PENTEX_EXEC "Executive" +#define JOB_PENTEX_AFFAIRS "Internal Affairs Agent" +#define JOB_PENTEX_SEC_CHIEF "Chief of Security" +#define JOB_PENTEX_SEC "Security Agent" +#define JOB_PENTEX_EMPLOYEE "Employee" + +////////////////////////////////////////////////// + +#define JOB_DISPLAY_ORDER_CITIZEN 1 + +#define JOB_DISPLAY_ORDER_PRINCE 2 +#define JOB_DISPLAY_ORDER_CLERK 3 +#define JOB_DISPLAY_ORDER_SHERIFF 4 +#define JOB_DISPLAY_ORDER_HARPY 5 +#define JOB_DISPLAY_ORDER_HOUND 6 +#define JOB_DISPLAY_ORDER_TOWERWORK 7 +#define JOB_DISPLAY_ORDER_BANU 8 +#define JOB_DISPLAY_ORDER_LASOMBRA 9 +#define JOB_DISPLAY_ORDER_MALKAVIAN 10 +#define JOB_DISPLAY_ORDER_NOSFERATU 11 +#define JOB_DISPLAY_ORDER_TOREADOR 12 +#define JOB_DISPLAY_ORDER_VENTRUE 13 + + +#define JOB_DISPLAY_ORDER_CLINICS_DIRECTOR 14 +#define JOB_DISPLAY_ORDER_DOCTOR 15 + +#define JOB_DISPLAY_ORDER_GRAVEYARD 16 +#define JOB_DISPLAY_ORDER_STREETJAN 17 +#define JOB_DISPLAY_ORDER_STRIP 18 +#define JOB_DISPLAY_ORDER_TAXI 19 +#define JOB_DISPLAY_ORDER_PRIEST 20 + +#define JOB_DISPLAY_ORDER_SUPPLY 21 +#define JOB_DISPLAY_ORDER_DEALER 22 + +#define JOB_DISPLAY_ORDER_BARON 23 +#define JOB_DISPLAY_ORDER_EMISSARY 24 +#define JOB_DISPLAY_ORDER_SWEEPER 25 +#define JOB_DISPLAY_ORDER_BRUISER 26 +#define JOB_DISPLAY_ORDER_LIAISON 27 +#define JOB_DISPLAY_ORDER_TAPSTER 28 + +#define JOB_DISPLAY_ORDER_REGENT 29 +#define JOB_DISPLAY_ORDER_ARCHIVIST 30 +#define JOB_DISPLAY_ORDER_GARGOYLE 31 + +#define JOB_DISPLAY_ORDER_GIOVANNI 32 + +#define JOB_DISPLAY_ORDER_POLICE_CHIEF 33 +#define JOB_DISPLAY_ORDER_POLICE_SERGEANT 34 +#define JOB_DISPLAY_ORDER_POLICE 35 +#define JOB_DISPLAY_ORDER_FBI 36 + +#define JOB_DISPLAY_ORDER_VOIVODE 37 +#define JOB_DISPLAY_ORDER_BOGATYR 38 +#define JOB_DISPLAY_ORDER_ZADRUGA 39 + +#define JOB_DISPLAY_ORDER_SABBATDUCTUS 40 +#define JOB_DISPLAY_ORDER_SABBATPACK 41 +#define JOB_DISPLAY_ORDER_SABBATPRIEST 42 + +#define JOB_DISPLAY_ORDER_COUNCIL 43 +#define JOB_DISPLAY_ORDER_TRUTHCATCHER 44 +#define JOB_DISPLAY_ORDER_WARDER 45 +#define JOB_DISPLAY_ORDER_WYRMFOE 46 +#define JOB_DISPLAY_ORDER_GUARDIAN 47 + +#define JOB_DISPLAY_ORDER_BRANCH_LEAD 48 +#define JOB_DISPLAY_ORDER_EXECUTIVE 49 +#define JOB_DISPLAY_ORDER_AFFAIRS 50 +#define JOB_DISPLAY_ORDER_SECCHIEF 51 +#define JOB_DISPLAY_ORDER_PENTEX_SEC 52 +#define JOB_DISPLAY_ORDER_EMPLOYEE 53 + +////////////////////////////////////////////////// + +#define DEPARTMENT_BITFLAG_CITIZEN (1<<0) +#define DEPARTMENT_CITIZEN "Citizen" +#define DEPARTMENT_BITFLAG_PRINCE (1<<1) +#define DEPARTMENT_PRINCE "Prince" +#define DEPARTMENT_BITFLAG_CAMARILLA (1<<2) +#define DEPARTMENT_CAMARILLA "Camarilla" +#define DEPARTMENT_BITFLAG_CHURCH (1<<3) +#define DEPARTMENT_CHURCH "Church" +#define DEPARTMENT_BITFLAG_CLINIC (1<<4) +#define DEPARTMENT_CLINIC "Clinic" +#define DEPARTMENT_BITFLAG_ANARCH (1<<5) +#define DEPARTMENT_ANARCH "Anarch" +#define DEPARTMENT_BITFLAG_STRIP_CLUB (1<<6) +#define DEPARTMENT_STRIP_CLUB "Strip_Club" +#define DEPARTMENT_BITFLAG_SUPPLY (1<<7) +#define DEPARTMENT_SUPPLY "Warehouse" +#define DEPARTMENT_BITFLAG_GIOVANNI (1<<8) +#define DEPARTMENT_GIOVANNI "Giovanni" +#define DEPARTMENT_BITFLAG_POLICE (1<<9) +#define DEPARTMENT_POLICE "Police" +#define DEPARTMENT_BITFLAG_SABBAT (1<<10) +#define DEPARTMENT_SABBAT "Sabbat" +#define DEPARTMENT_BITFLAG_CHANTRY (1<<11) +#define DEPARTMENT_CHANTRY "Chantry" +#define DEPARTMENT_BITFLAG_MANOR (1<<12) +#define DEPARTMENT_MANOR "Manor" +#define DEPARTMENT_BITFLAG_CITY_SERVICES (1<<13) +#define DEPARTMENT_CITY_SERVICES "City_Services" +#define DEPARTMENT_BITFLAG_PENTEX (1<<14) +#define DEPARTMENT_PENTEX "Pentex" +#define DEPARTMENT_BITFLAG_GAIA (1<<15) +#define DEPARTMENT_GAIA "Garou_Nation" + +DEFINE_BITFIELD(departments_bitflags, list( + "CITIZEN" = DEPARTMENT_BITFLAG_CITIZEN, + "PRINCE" = DEPARTMENT_BITFLAG_PRINCE, + "GAIA" = DEPARTMENT_BITFLAG_GAIA, + "PENTEX" = DEPARTMENT_BITFLAG_PENTEX, + "CAMARILLA" = DEPARTMENT_BITFLAG_CAMARILLA, + "CHURCH" = DEPARTMENT_BITFLAG_CHURCH, + "CLINIC" = DEPARTMENT_BITFLAG_CLINIC, + "ANARCH" = DEPARTMENT_BITFLAG_ANARCH, + "STRIP_CLUB" = DEPARTMENT_BITFLAG_STRIP_CLUB, + "SUPPLY" = DEPARTMENT_BITFLAG_SUPPLY, + "GIOVANNI" = DEPARTMENT_BITFLAG_GIOVANNI, + "POLICE" = DEPARTMENT_BITFLAG_POLICE, + "SABBAT" = DEPARTMENT_BITFLAG_SABBAT, + "CHANTRY" = DEPARTMENT_BITFLAG_CHANTRY, + "MANOR" = DEPARTMENT_BITFLAG_MANOR, + "CITY_SERVICES" = DEPARTMENT_BITFLAG_CITY_SERVICES, +)) + +/// Combination flag for jobs which are considered regular crew members of the station. +#define CITY_JOB_FLAGS (JOB_CREW_MANIFEST|JOB_EQUIP_RANK|JOB_CREW_MEMBER|JOB_NEW_PLAYER_JOINABLE|JOB_REOPEN_ON_ROUNDSTART_LOSS|JOB_ASSIGN_QUIRKS) + +// Variable macros used to declare who is the supervisor for a given job, announced to the player when they join as any given job. +#define SUPERVISOR_TRADITIONS "the Traditions" +#define SUPERVISOR_LITANY "the Litany" +#define SUPERVISOR_PRINCE "the Prince" +#define SUPERVISOR_SHERIFF "the Sheriff" +#define SUPERVISOR_PRIMOGEN_BANU_HAQIM "the Banu Haqim Primogen" +#define SUPERVISOR_BARON "the Baron" +#define SUPERVISOR_CLINIC_DIRECTOR "the Clinic Director" +#define SUPERVISOR_CLUB_DIRECTOR "the Strip Club Owner" +#define SUPERVISOR_POLICE_CHIEF "the Police Chief" +#define SUPERVISOR_POLICE_CHIEF_AND_SERGEANT "the Police Chief and Sergeant" +#define SUPERVISOR_CAMARILLA "the Camarilla" +#define SUPERVISOR_REGENT "the Regent" +#define SUPERVISOR_SENESCHAL_PUBLIC "the COO" +#define SUPERVISOR_BARON_PUBLIC "the Bar's Owner" + +// Playtime tracking system, see jobs_exp.dm +#define EXP_TYPE_KINDRED "Kindred" +#define EXP_TYPE_GAIA "Garou Nation" +#define EXP_TYPE_SPIRAL "Pentex" +#define EXP_TYPE_CAMARILLA "Camarilla Authorities" +#define EXP_TYPE_WAREHOUSE "Supply" +#define EXP_TYPE_CHANTRY "Chantry" +#define EXP_TYPE_ANARCH "Anarchs" +#define EXP_TYPE_SABBAT "Sabbat" +#define EXP_TYPE_COUNCIL "Camarilla Primogen Council" +#define EXP_TYPE_POLICE "Police Force" +#define EXP_TYPE_NATIONAL_SECURITY "National Security" +#define EXP_TYPE_SERVICES "City Services" +#define EXP_TYPE_CLINIC "St. John's Clinic" +#define EXP_TYPE_GIOVANNI "Giovanni Family" +#define EXP_TYPE_MANOR "Tzimisce Manor" +#define EXP_TYPE_CHURCH "Church" +#define EXP_TYPE_CLUB "Strip Club" diff --git a/code/__DEFINES/~darkpack/keybinding.dm b/code/__DEFINES/~darkpack/keybinding.dm index 92b2b83a30cc..67302845b084 100644 --- a/code/__DEFINES/~darkpack/keybinding.dm +++ b/code/__DEFINES/~darkpack/keybinding.dm @@ -1,2 +1,13 @@ -//Human +// Human #define COMSIG_KB_HUMAN_BITE_DOWN "keybinding_human_bite_down" + +// Pixelshifting +#define COMSIG_KB_MOB_PIXEL_SHIFT_DOWN "keybinding_mob_pixel_shift_down" +#define COMSIG_KB_MOB_PIXEL_SHIFT_UP "keybinding_mob_pixel_shift_up" +#define COMSIG_KB_MOB_ITEM_PIXEL_SHIFT_DOWN "keybinding_mob_item_pixelshift_down" +#define COMSIG_KB_MOB_ITEM_PIXEL_SHIFT_UP "keybinding_mob_item_pixelshift_up" +#define COMSIG_KB_MOB_PIXEL_TILT_DOWN "keybinding_mob_pixeltilt_down" +#define COMSIG_KB_MOB_PIXEL_TILT_UP "keybinding_mob_pixeltilt_up" + +// LOOC +#define COMSIG_KB_CLIENT_LOOC_DOWN "keybinding_client_looc_down" diff --git a/code/__DEFINES/~darkpack/library.dm b/code/__DEFINES/~darkpack/library.dm new file mode 100644 index 000000000000..5fc3420fa40d --- /dev/null +++ b/code/__DEFINES/~darkpack/library.dm @@ -0,0 +1,3 @@ +#define BOOK_CATEGORY_KINDRED "Kindred" +#define BOOK_CATEGORY_LUPINE "Lupine" +#define BOOK_CATEGORY_KUEIJIN "Kuei-Jin" diff --git a/code/__DEFINES/~darkpack/lock_access_defines.dm b/code/__DEFINES/~darkpack/lock_access_defines.dm new file mode 100644 index 000000000000..2e3f3abf52cb --- /dev/null +++ b/code/__DEFINES/~darkpack/lock_access_defines.dm @@ -0,0 +1,72 @@ +#define LOCKACCESS_ALL "all" // Any door with this access can be locked and unlocked without keys. For bathroom doors etc. + +#define LOCKACCESS_CAMARILLA "camarilla" +#define LOCKACCESS_PRINCE "prince" +#define LOCKACCESS_PRIMOGEN "primogen" +#define LOCKACCESS_BANU "banuhaqim" +#define LOCKACCESS_STRIP "strip" +#define LOCKACCESS_CHANTRY "chantry" +#define LOCKACCESS_CLERK "clerk" + +#define LOCKACCESS_BANKBOSS "bankboss" +#define LOCKACCESS_BANK "bianchiBank" + +#define LOCKACCESS_THEATRE "theatre" +#define LOCKACCESS_JAZZ_CLUB "milleniumCommon" +#define LOCKACCESS_JAZZ_CLUB_DELIVERY "millenium_delivery" + +#define LOCKACCESS_DIRECTOR "director" +#define LOCKACCESS_CLINIC "clinic" + +#define LOCKACCESS_PRIMOGEN_VENTRUE "primVentrue" +#define LOCKACCESS_VENTRUE "ventrue" + +#define LOCKACCESS_PRIMOGEN_TOREADOR "primToreador" +#define LOCKACCESS_TOREADOR "toreador" + +#define LOCKACCESS_MALK_PRIMOGEN "primMalkav" +#define LOCKACCESS_MALK "malkav" + +#define LOCKACCESS_PRIMOGEN_BRUJAH "primBrujah" +#define LOCKACCESS_BRUJAH "brujah" + +#define LOCKACCESS_PRIMOGEN_NOSFERATU "primNosferatu" +#define LOCKACCESS_NOSFERATU "nosferatu" + +#define LOCKACCESS_GIOVANNI "giovanni" +#define LOCKACCESS_DAUGHTERS "daughters" +#define LOCKACCESS_CAPPADOCIAN "cappadocian" +#define LOCKACCESS_SALUBRI "salubri" +#define LOCKACCESS_OLD_CLAN_TZI "old_clan_tzimisce" +#define LOCKACCESS_BAALI "baali" + +#define LOCKACCESS_PRIMOGEN_LASOMBRA "primLasombra" +#define LOCKACCESS_LASOMBRA "lasombra" + +#define LOCKACCESS_KYASID "kyasid" + +#define LOCKACCESS_SABBAT "sabbat" + +#define LOCKACCESS_ANARCH "anarch" +#define LOCKACCESS_BAR "biker_bar" +#define LOCKACCESS_BAR_DELIVERY "bar_delivery" + +#define LOCKACCESS_SUPPLY "supply" +#define LOCKACCESS_GRAVEYARD "graveyard" +#define LOCKACCESS_CHURCH "church" +#define LOCKACCESS_TAXI "taxi" + +#define LOCKACCESS_TRAID "triad" +#define LOCKACCESS_CLEANING "cleaning" +#define LOCKACCESS_LAUNDROMAT "laundromat" + +#define LOCKACCESS_POLICE "police" +#define LOCKACCESS_DISPATCH "dispatch" +#define LOCKACCESS_POLICE_SECURE "police_secure" +#define LOCKACCESS_POLICE_CHIEF "police_chief" + +#define LOCKACCESS_WOLFTECH "wolftech" +#define LOCKACCESS_PARK_RANGER "nps" +#define LOCKACCESS_COGGIE "coggie" +#define LOCKACCESS_PENTEX "pentex" +#define LOCKACCESS_PENTEX_LEADER "pentexleader" diff --git a/code/__DEFINES/~darkpack/mapswitch.dm b/code/__DEFINES/~darkpack/mapswitch.dm index ed367425d386..6dd9bfac0f50 100644 --- a/code/__DEFINES/~darkpack/mapswitch.dm +++ b/code/__DEFINES/~darkpack/mapswitch.dm @@ -1,13 +1,6 @@ /// Uses the left operator when compiling, uses the right operator when not compiling. // Currently uses the CBT macro, but if http://www.byond.com/forum/post/2831057 is ever added, // or if map tools ever agree on a standard, this should switch to use that. -#ifdef CBT -#define WHEN_MAP(map_time) // Not mapping, nothing here -#define WHEN_COMPILE(compile_time) ##compile_time -#else -#define WHEN_MAP(map_time) ##map_time -#define WHEN_COMPILE(compile_time) // Not compiling, nothing here -#endif #if defined(CBT) || defined(SHOW_INVENTORY_ICONS) #define ONFLOOR_ICON_HELPER(_icon) onflooricon = ##_icon diff --git a/code/__DEFINES/~darkpack/mobs.dm b/code/__DEFINES/~darkpack/mobs.dm index bfbacf0b5b10..f97c6bf1bb12 100644 --- a/code/__DEFINES/~darkpack/mobs.dm +++ b/code/__DEFINES/~darkpack/mobs.dm @@ -1,22 +1,26 @@ // Defines for Species IDs. Used to refer to the name of a species, for things like bodypart names or species preferences. #define SPECIES_KINDRED "kindred" #define SPECIES_GHOUL "ghoul" +#define SPECIES_GAROU "garou" /// Health level where mobs who can Torpor will actually die #define HEALTH_THRESHOLD_TORPOR_DEAD -200 -#define iskindred(A) (is_species(A, /datum/species/human/kindred)) -#define isghoul(A) (is_species(A, /datum/species/human/ghoul)) -#define issupernatural(A) (isgarou(A) || isghoul(A) || iskindred(A)) +#define isavatar(A) (istype(A, /mob/living/basic/avatar)) +#define iszomboid(A) (istype(A, /mob/living/basic/zombie) || (istype(A, /mob/living/basic/beastmaster/giovanni_zombie))) - -// TODO: [Rebase] implement other splats +// DARKPACK TODO - implement other splats #define isgarou(A) (FALSE) +#define iswerewolf(A) (FALSE) +#define iscrinos(A) (FALSE) +#define islupus(A) (FALSE) + +#define iscorax(A) (FALSE) +#define iscorvid(A) (FALSE) +#define iscoraxcrinos(A) (FALSE) #define isnpc(A) (istype(A, /mob/living/carbon/human/npc)) -#define SOUL_PRESENT 1 -#define SOUL_ABSENT 2 -#define SOUL_PROJECTING 3 +#define INCORPOREAL_MOVE_AVATAR 4 // Avatar incorporeal movement diff --git a/code/__DEFINES/~darkpack/npc.dm b/code/__DEFINES/~darkpack/npc.dm deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/code/__DEFINES/~darkpack/phones.dm b/code/__DEFINES/~darkpack/phones.dm new file mode 100644 index 000000000000..ae4540f4924f --- /dev/null +++ b/code/__DEFINES/~darkpack/phones.dm @@ -0,0 +1,31 @@ +#define TIME_TO_RING 10 SECONDS + +#define USABLE_RADIO_FREQUENCY_FOR_PHONE_RANGE 2000 + +#define PHONE_AVAILABLE 0 +#define PHONE_RINGING 1 +#define PHONE_CALLING 2 +#define PHONE_IN_CALL 3 + +#define PHONE_NO_SIM (1<<1) +#define PHONE_OPEN (1<<2) + +DEFINE_BITFIELD(phone_flags, list( + "PHONE_NO_SIM" = PHONE_NO_SIM, + "PHONE_OPEN" = PHONE_OPEN, +)) + +// Icons used for call history logging +#define PHONE_CALL_ACCEPTED "fa-phone-volume" +#define PHONE_CALL_DECLINED "fa-phone-slash" +#define PHONE_CALL_RECEIVED "fa-phone" +#define PHONE_CALL_MISSED "fa-history" +#define PHONE_CALL_SENT "fa-share" +#define PHONE_CALL_ENDED "fa-tty" + +#define PHONE_CALL_ACCEPTED_TOOLTIP "Phone call accepted" +#define PHONE_CALL_DECLINED_TOOLTIP "Phone call declined" +#define PHONE_CALL_RECEIVED_TOOLTIP "Phone call received" +#define PHONE_CALL_MISSED_TOOLTIP "Phone call missed" +#define PHONE_CALL_SENT_TOOLTIP "Phone call sent" +#define PHONE_CALL_ENDED_TOOLTIP "Phone call ended" diff --git a/code/__DEFINES/~darkpack/radio_networks.dm b/code/__DEFINES/~darkpack/radio_networks.dm new file mode 100644 index 000000000000..16e263372bb3 --- /dev/null +++ b/code/__DEFINES/~darkpack/radio_networks.dm @@ -0,0 +1,6 @@ +#define NETWORK_POLICE "Police Network" +#define NETWORK_CLINIC "Clinic Network" +#define NETWORK_MILITARY "Military Network" +#define NETWORK_CAMARILLA "Tower Network" +#define NETWORK_ANARCH "Bar Network" +#define NETWORK_ENDRON "Endron Network" diff --git a/code/__DEFINES/~darkpack/sight.dm b/code/__DEFINES/~darkpack/sight.dm new file mode 100644 index 000000000000..6baa144fa675 --- /dev/null +++ b/code/__DEFINES/~darkpack/sight.dm @@ -0,0 +1,4 @@ +#define OBFUSCATE_INVISIBILITY 61 +#define SEE_OBFUSCATE_INVISIBLITY 61 + +#define OBSERVER_SIGHT 70 diff --git a/code/__DEFINES/~darkpack/sound.dm b/code/__DEFINES/~darkpack/sound.dm index bc4229f27650..3245805f6c6b 100644 --- a/code/__DEFINES/~darkpack/sound.dm +++ b/code/__DEFINES/~darkpack/sound.dm @@ -3,4 +3,14 @@ #define AMBIENCE_NATURE "nature" #define AMBIENCE_SEWER "sewer" #define AMBIENCE_OFFICE "office" -#define AMBIENCE_PRINCE "prince" + +//Alot of these names are pretty placeholder while we develop better lists and vibes. +#define MUSIC_CITY "city" +// Currently used as the track for any werewolf owned space +#define MUSIC_FOREST "forest" +#define MUSIC_CHURCH "church" +#define MUSIC_PRINCE "prince" +#define MUSIC_BAR "bar" +#define MUSIC_HOLLYWOOD "hollywood" +#define MUSIC_SANTAMONICA "santamonica" +#define MUSIC_SAFE "saftey" diff --git a/code/__DEFINES/~darkpack/splats.dm b/code/__DEFINES/~darkpack/splats.dm new file mode 100644 index 000000000000..e59c2678cab3 --- /dev/null +++ b/code/__DEFINES/~darkpack/splats.dm @@ -0,0 +1,2 @@ +#define SPLAT_KINDRED "splat_kindred" +#define SPLAT_GHOUL "splat_ghoul" diff --git a/code/__DEFINES/~darkpack/status_effects_debuffs.dm b/code/__DEFINES/~darkpack/status_effects_debuffs.dm index 6724bc27ceb3..f3e64f12580d 100644 --- a/code/__DEFINES/~darkpack/status_effects_debuffs.dm +++ b/code/__DEFINES/~darkpack/status_effects_debuffs.dm @@ -1,3 +1,4 @@ // This is the new file that should hold all the debuff status effects in wod13 #define STATUS_EFFECT_SILVER_SLOWDOWN /datum/status_effect/silver_slowdown //slows down any mobs with a bane to silver. +#define STATUS_EFFECT_AWE /datum/status_effect/awe diff --git a/code/__DEFINES/~darkpack/storyteller_stats.dm b/code/__DEFINES/~darkpack/storyteller_stats.dm index 426f96ce8886..e6077b527cdc 100644 --- a/code/__DEFINES/~darkpack/storyteller_stats.dm +++ b/code/__DEFINES/~darkpack/storyteller_stats.dm @@ -1,3 +1,11 @@ +// Stat Flags +#define AFFECTS_HEALTH (1<<0) +#define AFFECTS_SPEED (1<<1) +#define AFFECTS_STATS (1<<2) // If the stat affects other stats, like courage or permanent willpower. + + +#define STAT_FREEBIE_POINTS /datum/st_stat/freebie + // Physical #define STAT_STRENGTH /datum/st_stat/attribute/strength #define STAT_DEXTERITY /datum/st_stat/attribute/dexterity @@ -48,5 +56,33 @@ #define STAT_TECHNOLOGY /datum/st_stat/ability/technology // Advantages -#define STAT_BLOOD_POOL /datum/st_stat/pooled/blood_pool -#define STAT_WILLPOWER /datum/st_stat/pooled/willpower +#define STAT_PERMANENT_WILLPOWER /datum/st_stat/pooled/permanent_willpower +#define STAT_TEMPORARY_WILLPOWER /datum/st_stat/pooled/temporary_willpower + +// Virtues +#define STAT_CONSCIENCE /datum/st_stat/virtue/conscience +#define STAT_SELF_CONTROL /datum/st_stat/virtue/self_control +#define STAT_CONVICTION /datum/st_stat/virtue/conviction +#define STAT_INSTINCT /datum/st_stat/virtue/instinct +#define STAT_COURAGE /datum/st_stat/virtue/courage + +// Parent stats, mainly used for point allocation in preferences. + + +#define STAT_ATTRIBUTE "Attributes" +#define STAT_CATEGORY_MENTAL "Mental" +#define STAT_CATEGORY_SOCIAL "Social" +#define STAT_CATEGORY_PHYSICAL "Physical" + +#define STAT_ABILITY "Abilities" +#define STAT_SUBCATEGORY_TALENTS "Talents" +#define STAT_SUBCATEGORY_SKILLS "Skills" +#define STAT_SUBCATEGORY_KNOWLEDGES "Knowledges" + +#define STAT_POOLED "Pooled" +#define STAT_CATEGORY_VIRTUES "Virtues" + +// Defines used for saving of stats. +#define STAT_SCORE "score" +#define STAT_POINTS "points" +#define STAT_FREEBIE_COST_SPENT "freebie_cost_spent" diff --git a/code/__DEFINES/~darkpack/traits/declarations.dm b/code/__DEFINES/~darkpack/traits/declarations.dm index 738f335ba348..15d767958cbc 100644 --- a/code/__DEFINES/~darkpack/traits/declarations.dm +++ b/code/__DEFINES/~darkpack/traits/declarations.dm @@ -7,6 +7,14 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming traits. */ +// CITY_TRAITS +#define STATION_TRAIT_RED_STAR "station_trait_red_star" +#define STATION_TRAIT_WILD_MASQUERADE "station_trait_wild_masquerade" +#define STATION_TRAIT_INFESTATION "station_trait_infestation" +#define STATION_TRAIT_PEST_CONTROL "station_trait_pest_control" +#define STATION_TRAIT_STRAY_MIGRATION "station_trait_stray_migration" +#define STATION_TRAIT_COSPLAY_CONVENTION "station_trait_cosplay_convention" + // Mob traits // If the user is unbondable via blood bonds. @@ -15,23 +23,29 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_DEFICIENT_VITAE "deficient_vitae" //If the kindred is obfuscated. #define TRAIT_OBFUSCATED "obfuscated" -#define TRAIT_BLOODY_LOVER "bloody_lover" -#define TRAIT_TOUGH_FLESH "tough_flesh" -#define TRAIT_BLOODY_SUCKER "bloody_sucker" -#define TRAIT_NON_INT "non_intellectual" -#define TRAIT_COFFIN_THERAPY "coffin_therapy" -#define TRAIT_RUBICON "rubicon" -#define TRAIT_HUNGRY "hungry" -#define TRAIT_STAKE_RESISTANT "stake_resistant" -#define TRAIT_LAZY "lazy" -#define TRAIT_HOMOSEXUAL "homosexual" -#define TRAIT_HUNTED "hunted" -#define TRAIT_VIOLATOR "violator" -#define TRAIT_DIABLERIE "diablerie" -#define TRAIT_GULLET "gullet" -#define TRAIT_CHARMER "charmer" +#define TRAIT_BLOODY_LOVER "bloody_lover" +#define TRAIT_TOUGH_FLESH "tough_flesh" +#define TRAIT_BLOODY_SUCKER "bloody_sucker" +#define TRAIT_NON_INT "non_intellectual" +#define TRAIT_COFFIN_THERAPY "coffin_therapy" +#define TRAIT_RUBICON "rubicon" +#define TRAIT_HUNGRY "hungry" +#define TRAIT_STAKE_RESISTANT "stake_resistant" +#define TRAIT_STAKE_IMMUNE "stake_immune" +#define TRAIT_STAKED "staked" +#define TRAIT_LAZY "lazy" +#define TRAIT_HOMOSEXUAL "homosexual" +#define TRAIT_HUNTED "hunted" +#define TRAIT_VIOLATOR "violator" +#define TRAIT_DIABLERIE "diablerie" +#define TRAIT_GULLET "gullet" +#define TRAIT_CHARMER "charmer" +#define TRAIT_COLD_AURA "cold_aura" +#define TRAIT_WARM_AURA "warm_aura" +#define TRAIT_FRENETIC_AURA "frenetic_aura" +#define TRAIT_BLUSH_OF_HEALTH "blush_of_health" /// The mob will automatically breach the Masquerade when seen by others, with no exceptions -#define TRAIT_UNMASQUERADE "unmasquerade" +#define TRAIT_UNMASQUERADE "unmasquerade" /// The mob always dodges melee attacks #define TRAIT_ENHANCED_MELEE_DODGE "enhanced_melee_dodge" /// Can pass through walls so long as it doesn't move the mob into a new area @@ -56,7 +70,7 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_SENSITIVE_HUMANITY "sensitive_humanity" /// Duration of frenzy is doubled #define TRAIT_LONGER_FRENZY "longer_frenzy" -// TODO: [Rebase] refactor these traits into mutant bodyparts and a component maybe +// DARKPACK TODO - refactor these traits into mutant bodyparts and a component maybe /// If eyes are uncovered, they will be obviously supernatural to everyone nearby #define TRAIT_MASQUERADE_VIOLATING_EYES "masquerade_violating_eyes" /// If face is uncovered, they will be obviously supernatural to everyone nearby @@ -73,5 +87,25 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_BLOOD_DRINKER "blood_drinker" /// Does not biologically age, and so has a disconnected biological and chronological age #define TRAIT_UNAGING "unaging" +// Does the mob know thaumaturgy? +#define TRAIT_THAUMATURGY_KNOWLEDGE "thaumaturgy_knowledge" +// Does the mob have ghostsight? +#define TRAIT_GHOST_VISION "ghost_vision" +#define TRAIT_VICISSITUDE_KNOWLEDGE "vicissitude_knowledge" +#define TRAIT_MYSTICISM_KNOWLEDGE "mysticism_knowledge" +#define TRAIT_NECROMANCY_KNOWLEDGE "necromancy_knowledge" +#define TRAIT_ILLEGAL_IDENTITY "illegal_identity" // GOVERMENT + +// Allows the user to pass through doors +#define TRAIT_PASSDOOR "trait_passdoor" // DARKPACK EDIT ADD - Obtenebration & Mysticism Rework +#define TRAIT_IN_FRENZY "in_frenzy" + +// Is the mob silenced (by Quietus 1 for example) +#define TRAIT_SILENCED "silenced" +// is the vampire weak to Dominate? +#define TRAIT_WEAK_TO_DOMINATE "dominate_weak" + +/// They have warped time at some point in this round +#define TRAIT_TIMEWARPER "timewarper" // END TRAIT DEFINES diff --git a/code/__DEFINES/~darkpack/traits/sources.dm b/code/__DEFINES/~darkpack/traits/sources.dm index 76d5539fd12e..96325349f359 100644 --- a/code/__DEFINES/~darkpack/traits/sources.dm +++ b/code/__DEFINES/~darkpack/traits/sources.dm @@ -2,3 +2,11 @@ /// Trait given by a vampire's Clan #define CLAN_TRAIT "clan" +#define DISCIPLINE_TRAIT "discipline" + +#define STAKE_TRAIT "stake" + +#define NECROMANCY_TRAIT "necromancy" + +// used by the obfuscate ability +#define OBFUSCATE_TRAIT "obfuscate_trait" diff --git a/code/__DEFINES/~darkpack/vampire_clan.dm b/code/__DEFINES/~darkpack/vampire_clan.dm index f8ae1869f635..b66f6b9d28c8 100644 --- a/code/__DEFINES/~darkpack/vampire_clan.dm +++ b/code/__DEFINES/~darkpack/vampire_clan.dm @@ -4,6 +4,7 @@ #define VAMPIRE_CLAN_BRUJAH "brujah" #define VAMPIRE_CLAN_CAITIFF "caitiff" #define VAMPIRE_CLAN_CAPPADOCIAN "cappadocian" +#define VAMPIRE_CLAN_CITY_GANGREL "city_gangrel" #define VAMPIRE_CLAN_DAUGHTERS_OF_CACOPHONY "daughters_of_cacophony" #define VAMPIRE_CLAN_GANGREL "gangrel" #define VAMPIRE_CLAN_GARGOYLE "gargoyle" @@ -11,12 +12,16 @@ #define VAMPIRE_CLAN_KIASYD "kiasyd" #define VAMPIRE_CLAN_LASOMBRA "lasombra" #define VAMPIRE_CLAN_MALKAVIAN "malkavian" -#define VAMPIRE_CLAN_SETITE "setite" +#define VAMPIRE_CLAN_NAGARAJA "nagaraja" #define VAMPIRE_CLAN_NOSFERATU "nosferatu" #define VAMPIRE_CLAN_OLD_CLAN_TZIMISCE "old_clan_tzimisce" #define VAMPIRE_CLAN_SALUBRI "salubri" +#define VAMPIRE_CLAN_SETITE "setite" #define VAMPIRE_CLAN_TOREADOR "toreador" #define VAMPIRE_CLAN_TREMERE "tremere" #define VAMPIRE_CLAN_TRUE_BRUJAH "true_brujah" #define VAMPIRE_CLAN_TZIMISCE "tzimisce" #define VAMPIRE_CLAN_VENTRUE "ventrue" + +// Does not include VAMPIRE_CLAN_GIOVANNI or VAMPIRE_CLAN_BAALI since they're supposed to be special. +#define VAMPIRE_CLAN_ALL list(VAMPIRE_CLAN_BANU_HAQIM, VAMPIRE_CLAN_BRUJAH, VAMPIRE_CLAN_CAITIFF, VAMPIRE_CLAN_CAPPADOCIAN, VAMPIRE_CLAN_CITY_GANGREL, VAMPIRE_CLAN_DAUGHTERS_OF_CACOPHONY, VAMPIRE_CLAN_GANGREL, VAMPIRE_CLAN_GARGOYLE, VAMPIRE_CLAN_KIASYD, VAMPIRE_CLAN_LASOMBRA, VAMPIRE_CLAN_MALKAVIAN, VAMPIRE_CLAN_NAGARAJA, VAMPIRE_CLAN_NOSFERATU, VAMPIRE_CLAN_OLD_CLAN_TZIMISCE, VAMPIRE_CLAN_SALUBRI, VAMPIRE_CLAN_SETITE, VAMPIRE_CLAN_TOREADOR, VAMPIRE_CLAN_TREMERE, VAMPIRE_CLAN_TRUE_BRUJAH, VAMPIRE_CLAN_TZIMISCE, VAMPIRE_CLAN_VENTRUE) diff --git a/code/__DEFINES/~darkpack/walls.dm b/code/__DEFINES/~darkpack/walls.dm new file mode 100644 index 000000000000..6600a198b874 --- /dev/null +++ b/code/__DEFINES/~darkpack/walls.dm @@ -0,0 +1,13 @@ +// Put here to allow downstreams to add subtypes. +#define LOW_WALL_HELPER(wall_type, wall_icon) \ + /obj/structure/platform/lowwall/##wall_type { \ + icon = ##wall_icon; \ + } \ + /obj/structure/platform/lowwall/##wall_type/window { \ + window = /obj/structure/window/fulltile; \ + WHEN_MAP(icon = 'modular_darkpack/modules/walls/icons/lowwalls.dmi'); \ + WHEN_MAP(icon_state = "window_spawner"); \ + } \ + /obj/structure/platform/lowwall/##wall_type/window/reinforced { \ + window = /obj/structure/window/reinforced/fulltile; \ + } diff --git a/code/__DEFINES/~darkpack/werewolf_auspice.dm b/code/__DEFINES/~darkpack/werewolf_auspice.dm new file mode 100644 index 000000000000..b3bb9b8fda50 --- /dev/null +++ b/code/__DEFINES/~darkpack/werewolf_auspice.dm @@ -0,0 +1,7 @@ +#define AUSPICE_AHROUN "Ahroun" +#define AUSPICE_GALLIARD "Galliard" +#define AUSPICE_PHILODOX "Philodox" +#define AUSPICE_THEURGE "Theurge" +#define AUSPICE_RAGABASH "Ragabash" + +#define AUSPICE_NONE "Stolen Moon" diff --git a/code/__DEFINES/~darkpack/werewolf_tribe.dm b/code/__DEFINES/~darkpack/werewolf_tribe.dm new file mode 100644 index 000000000000..9a38b204d143 --- /dev/null +++ b/code/__DEFINES/~darkpack/werewolf_tribe.dm @@ -0,0 +1,28 @@ +#define TRIBE_NONE "Ronin" + +#define TRIBE_GALESTALKERS "Galestalkers" +#define TRIBE_CHILDRENOFGAIA "Children of Gaia" +#define TRIBE_GHOSTCOUNCIL "Ghost Council" +#define TRIBE_HARTWARDENS "Hart Wardens" +#define TRIBE_GETOFFENRIS "Get of Fenris" +#define TRIBE_BLACKFURIES "Black Furies" +#define TRIBE_SILVERFANGS "Silver Fangs" +#define TRIBE_SILENTSTRIDERS "Silent Striders" +#define TRIBE_REDTALONS "Red Talons" +#define TRIBE_STARGAZERS "Stargazers" +#define TRIBE_GLASSWALKERS "Glass Walkers" +#define TRIBE_BONEGNAWERS "Bone Gnawers" +#define TRIBE_SHADOWLORDS "Shadow Lords" +#define TRIBE_BLACKSPIRALDANCERS "Black Spiral Dancers" + +#define TRIBE_CORAX "Corax" + +#define TRIBE_ALL list(TRIBE_NONE, TRIBE_GALESTALKERS, TRIBE_CHILDRENOFGAIA, TRIBE_GHOSTCOUNCIL, TRIBE_HARTWARDENS, TRIBE_GETOFFENRIS, TRIBE_BLACKFURIES, TRIBE_SILVERFANGS, TRIBE_SILENTSTRIDERS, TRIBE_REDTALONS, TRIBE_STARGAZERS, TRIBE_GLASSWALKERS, TRIBE_BONEGNAWERS, TRIBE_SHADOWLORDS, TRIBE_BLACKSPIRALDANCERS, TRIBE_CORAX) + +#define TRIBE_GAIA list(TRIBE_GALESTALKERS, TRIBE_CHILDRENOFGAIA, TRIBE_GHOSTCOUNCIL, TRIBE_HARTWARDENS, TRIBE_GETOFFENRIS, TRIBE_BLACKFURIES, TRIBE_SILVERFANGS, TRIBE_SILENTSTRIDERS, TRIBE_REDTALONS, TRIBE_STARGAZERS, TRIBE_GLASSWALKERS, TRIBE_BONEGNAWERS, TRIBE_SHADOWLORDS, TRIBE_CORAX) + +#define TRIBE_WYLD list(TRIBE_GALESTALKERS, TRIBE_CHILDRENOFGAIA, TRIBE_GHOSTCOUNCIL, TRIBE_HARTWARDENS, TRIBE_GETOFFENRIS, TRIBE_BLACKFURIES, TRIBE_SILVERFANGS, TRIBE_SILENTSTRIDERS, TRIBE_REDTALONS, TRIBE_STARGAZERS, TRIBE_SHADOWLORDS, TRIBE_CORAX) + +#define TRIBE_WEAVER list(TRIBE_GLASSWALKERS, TRIBE_BONEGNAWERS) + +#define TRIBE_WYRM list(TRIBE_BLACKSPIRALDANCERS) diff --git a/code/__DEFINES/~darkpack/xp_and_freebie.dm b/code/__DEFINES/~darkpack/xp_and_freebie.dm new file mode 100644 index 000000000000..0fa97af54c15 --- /dev/null +++ b/code/__DEFINES/~darkpack/xp_and_freebie.dm @@ -0,0 +1,12 @@ +/// Freebie points allocated for initial character creation +#define INITIAL_FREEBIE_POINTS 21 +/// How many points that can be gained from taking flaws and merits +#define MAX_MERIT_FREEBIE_POINTS 7 +#define FREEBIE_COST_ATTRIBUTE 5 +#define FREEBIE_COST_ABILITY 2 +#define FREEBIE_COST_BACKGROUND 1 +#define FREEBIE_COST_WILLPOWER 1 +// KINDRED +#define FREEBIE_COST_DISIPLINE 10 +#define FREEBIE_COST_VIRTUE 2 +#define FREEBIE_COST_HUMANITY 2 diff --git a/code/__HELPERS/_lists.dm b/code/__HELPERS/_lists.dm index 9c4cc3eafa84..26dee9a5f22f 100644 --- a/code/__HELPERS/_lists.dm +++ b/code/__HELPERS/_lists.dm @@ -541,6 +541,27 @@ . = pick_weight(list_to_pick) list_to_pick[.]-- +/** +* Picks n items from a list. The same index will not be chosen more than once. +* e.g. pick_n(list_of_stuff, 10) would return a list of 10 items from the list, chosen randomly. +*/ +/proc/pick_n(list/list_to_pick, n) + var/list_to_pick_length + if(islist(list_to_pick)) + list_to_pick_length = length(list_to_pick) + + if(!list_to_pick_length || n <= 0) + return list() + + /// length of our list_to_pick + n = min(n, list_to_pick_length) + + // Shuffle and slice the first n indices + var/list/copy_to_shuffle = list_to_pick.Copy() + shuffle_inplace(copy_to_shuffle) + + return copy_to_shuffle.Copy(1, n + 1) + /** * Given a list, return a copy where values without defined weights are given weight 1. * For example, fill_with_ones(list(A, B=2, C)) = list(A=1, B=2, C=1) @@ -657,7 +678,7 @@ return inserted_list -///same as shuffle, but returns nothing and acts on list in place +///same as shuffle, but acts on list in place, and returns same list /proc/shuffle_inplace(list/inserted_list) if(!inserted_list) return @@ -665,6 +686,8 @@ for(var/i in 1 to inserted_list.len - 1) inserted_list.Swap(i, rand(i, inserted_list.len)) + return inserted_list + ///Return a list with no duplicate entries /proc/unique_list(list/inserted_list) . = list() @@ -894,14 +917,6 @@ used_key_list[input_key] = 1 return input_key -///Flattens a keyed list into a list of its contents -/proc/flatten_list(list/key_list) - if(!islist(key_list)) - return null - . = list() - for(var/key in key_list) - . |= LIST_VALUE_WRAP_LISTS(key_list[key]) - ///Make a normal list an associative one /proc/make_associative(list/flat_list) . = list() @@ -959,6 +974,14 @@ UNTYPED_LIST_ADD(keys, key) return keys +/// Turns an associative list into a flat list of values +/proc/assoc_to_values(list/key_list) + if(!islist(key_list)) + return null + . = list() + for(var/key in key_list) + . |= LIST_VALUE_WRAP_LISTS(key_list[key]) + ///compare two lists, returns TRUE if they are the same /proc/compare_list(list/l,list/d) if(!islist(l) || !islist(d)) diff --git a/code/__HELPERS/abstract_types.dm b/code/__HELPERS/abstract_types.dm new file mode 100644 index 000000000000..5a1f800b5111 --- /dev/null +++ b/code/__HELPERS/abstract_types.dm @@ -0,0 +1,18 @@ +/// Returns a list of all abstract typepaths for all datums +/proc/get_abstract_types() + var/static/list/abstracts + if(abstracts) + return abstracts + abstracts = list() + for(var/datum/sometype as anything in subtypesof(/datum)) + if(sometype == sometype::abstract_type) + abstracts |= sometype::abstract_type + return abstracts + +/// Like subtypesof, but automatically excludes abstract typepaths +/proc/valid_subtypesof(datum/sometype) + return subtypesof(sometype) - get_abstract_types() + +/// Like typesof, but automatically excludes abstract typepaths +/proc/valid_typesof(datum/sometype) + return typesof(sometype) - get_abstract_types() diff --git a/code/__HELPERS/ai.dm b/code/__HELPERS/ai.dm index 7e7179c39891..81595c3f8a72 100644 --- a/code/__HELPERS/ai.dm +++ b/code/__HELPERS/ai.dm @@ -28,15 +28,3 @@ top_force = item.force return top_force_item - -///returns if something can be consumed, drink or food -/proc/IsEdible(obj/item/thing) - if(!istype(thing)) - return FALSE - if(IS_EDIBLE(thing)) - return TRUE - if(istype(thing, /obj/item/reagent_containers/cup/glass/drinkingglass)) - var/obj/item/reagent_containers/cup/glass/drinkingglass/glass = thing - if(glass.reagents.total_volume) // The glass has something in it, time to drink the mystery liquid! - return TRUE - return FALSE diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm index 11548f468bdd..ce482645ef76 100644 --- a/code/__HELPERS/areas.dm +++ b/code/__HELPERS/areas.dm @@ -6,7 +6,7 @@ GLOBAL_LIST_INIT(typecache_powerfailure_safe_areas, typecacheof(list( /area/station/engineering/main, /area/station/engineering/supermatter, /area/station/engineering/atmospherics_engine, - /area/station/ai_monitored/turret_protected/ai, + /area/station/ai/satellite/chamber, /area/ruin/comms_agent //fixes icemoon comms station being affected ))) diff --git a/code/__HELPERS/atmospherics.dm b/code/__HELPERS/atmospherics.dm index 9ebafd5fbb52..6264823b7f2e 100644 --- a/code/__HELPERS/atmospherics.dm +++ b/code/__HELPERS/atmospherics.dm @@ -173,16 +173,20 @@ GLOBAL_LIST_EMPTY(gas_handbook) return null /** - * A simple helped proc that checks if the contents of a list of gases are within acceptable terms. + * A simple helper proc that checks if the contents of a list of gases are within acceptable terms. * * Arguments: * * gases: The list of gases which contents are being checked - * * gases to check: An associated list of gas types and acceptable boundaries in moles. e.g. /datum/gas/oxygen = list(16, 30) + * * acceptable_gas_bounds: An associated list of gas types and acceptable boundaries in moles. e.g. /datum/gas/oxygen = list(16, 30) * * * if the assoc list is null, then it'll be considered a safe gas and won't return FALSE. * * extraneous_gas_limit: If a gas not in gases is found, this is the limit above which the proc will return FALSE. + * + * Returns TRUE if the list of gases is acceptable, FALSE otherwise. */ -/proc/check_gases(list/gases, list/gases_to_check, extraneous_gas_limit = 0.1) - gases_to_check = gases_to_check.Copy() +/proc/check_gases(list/gases, list/acceptable_gas_bounds, extraneous_gas_limit = 0.1) + SHOULD_BE_PURE(TRUE) + + var/list/gases_to_check = acceptable_gas_bounds.Copy() // thank you spaceman for(var/id in gases) var/gas_moles = gases[id][MOLES] if(!(id in gases_to_check)) diff --git a/code/__HELPERS/atoms.dm b/code/__HELPERS/atoms.dm index dfe731eddfed..bf304813b24d 100644 --- a/code/__HELPERS/atoms.dm +++ b/code/__HELPERS/atoms.dm @@ -370,14 +370,14 @@ rough example of the "cone" made by the 3 dirs checked /// Returns an x and y value require to reverse the transformations made to center an oversized icon /atom/proc/get_oversized_icon_offsets() - if (pixel_x == 0 && pixel_y == 0) + if (!base_pixel_x && !base_pixel_y && !base_pixel_w && !base_pixel_z) return list("x" = 0, "y" = 0) var/list/icon_dimensions = get_icon_dimensions(icon) var/icon_width = icon_dimensions["width"] var/icon_height = icon_dimensions["height"] return list( - "x" = icon_width > ICON_SIZE_X && pixel_x != 0 ? (icon_width - ICON_SIZE_X) * 0.5 : 0, - "y" = icon_height > ICON_SIZE_Y && pixel_y != 0 ? (icon_height - ICON_SIZE_Y) * 0.5 : 0, + "x" = icon_width > ICON_SIZE_X && (base_pixel_x || base_pixel_w) ? (icon_width - ICON_SIZE_X) * 0.5 : 0, + "y" = icon_height > ICON_SIZE_Y && (base_pixel_y || base_pixel_z) ? (icon_height - ICON_SIZE_Y) * 0.5 : 0, ) /// Helper for easily adding blood from INSIDE a mob to an atom (NOT blood ON the mob) diff --git a/code/__HELPERS/construction.dm b/code/__HELPERS/construction.dm index b2766952e1cb..49a048c01607 100644 --- a/code/__HELPERS/construction.dm +++ b/code/__HELPERS/construction.dm @@ -1,5 +1,5 @@ /// Makes sure only integer values are used when consuming, removing & checking for mats -#define OPTIMAL_COST(cost)(max(1, round(cost))) +#define OPTIMAL_COST(cost)(max(1, floor(cost))) /// Wrapper for fetching material references. Exists exclusively so that people don't need to wrap everything in a list every time. #define GET_MATERIAL_REF(arguments...) SSmaterials._GetMaterialRef(list(##arguments)) @@ -31,7 +31,7 @@ */ /proc/amount2sheet(amt) if(amt >= SHEET_MATERIAL_AMOUNT) - return round(amt / SHEET_MATERIAL_AMOUNT) + return floor(amt / SHEET_MATERIAL_AMOUNT) return 0 /** diff --git a/code/__HELPERS/dynamic_human_icon_gen.dm b/code/__HELPERS/dynamic_human_icon_gen.dm index d709b38207a5..a7320c951cb6 100644 --- a/code/__HELPERS/dynamic_human_icon_gen.dm +++ b/code/__HELPERS/dynamic_human_icon_gen.dm @@ -2,13 +2,13 @@ GLOBAL_LIST_EMPTY(dynamic_human_appearances) /// Creates a human with the given parameters and returns an appearance of it -/proc/get_dynamic_human_appearance(outfit_path, species_path = /datum/species/human, mob_spawn_path, r_hand, l_hand, bloody_slots = NONE, animated = TRUE) +/proc/get_dynamic_human_appearance(outfit_path, species_path = /datum/species/human, mob_spawn_path, r_hand, l_hand, bloody_slots = NONE, animated = TRUE, combat_mode = TRUE) if(!species_path) return FALSE if(!ispath(species_path)) stack_trace("Attempted to call get_dynamic_human_appearance() with an instantiated species_path. Pass the species datum typepath instead.") return FALSE - var/arg_string = "[outfit_path]_[species_path]_[mob_spawn_path]_[l_hand]_[r_hand]_[bloody_slots]" + var/arg_string = "[outfit_path]_[species_path]_[mob_spawn_path]_[l_hand]_[r_hand]_[bloody_slots]_[combat_mode]" if(GLOB.dynamic_human_appearances[arg_string]) //if already exists in our cache, just return that return GLOB.dynamic_human_appearances[arg_string] var/mob/living/carbon/human/dummy/consistent/dummy = new() @@ -17,6 +17,7 @@ GLOBAL_LIST_EMPTY(dynamic_human_appearances) dummy.underwear = "Nude" dummy.undershirt = "Nude" dummy.socks = "Nude" + dummy.set_combat_mode(combat_mode) 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 6f28592b7fc8..fc2fca91a2d9 100644 --- a/code/__HELPERS/files.dm +++ b/code/__HELPERS/files.dm @@ -136,3 +136,46 @@ GLOBAL_VAR_INIT(fileaccess_timer, 0) if(.) . += delimiter // Add the delimiter before each successive node. . += SANITIZE_FILENAME(node) + +/** + * Verifys wether a string or file ends with a given file type. + * + * this does not at all check the actual type of the file, a user could just rename it + * + * Arguments: + * * file - A string or file. No checks for if this file ACCTALLY exists + * * file_types - A list of strings to check against [e.g. list("ogg" = TRUE, "mp3" = TRUE)] + */ +/proc/is_file_type_in_list(file, file_types = list()) + var/extstart = findlasttext("[file]", ".") + if(!extstart) + return FALSE + var/ext = copytext("[file]", extstart + 1) + if(file_types[ext]) + return TRUE + +/** + * Verifys wether a string or file ends with a given file type + * + * this does not at all check the actual type of the file, a user could just rename it + * + * Arguments: + * * file - A string or file. No checks for if this file ACCTALLY exists + * * file_type - A string to check against [e.g. "ogg"] + */ +/proc/is_file_type(file, file_type) + var/extstart = findlasttext("[file]", ".") + if(!extstart) + return FALSE + var/ext = copytext("[file]", extstart + 1) + if(ext == file_type) + return TRUE + +/proc/strip_filepath_extension(file, file_types) + var/extstart = findlasttext("[file]", ".") + if(!extstart) + return "[file]" + var/ext = copytext("[file]", extstart + 1) + if(ext in file_types) + return copytext("[file]", 1, extstart) + return "[file]" diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm index a60a8b2b31cc..0919512f508f 100644 --- a/code/__HELPERS/global_lists.dm +++ b/code/__HELPERS/global_lists.dm @@ -2,14 +2,6 @@ /////Initial Building///// ////////////////////////// -/// Inits GLOB.surgeries -/proc/init_surgeries() - var/surgeries = list() - for(var/path in subtypesof(/datum/surgery)) - surgeries += new path() - sort_list(surgeries, GLOBAL_PROC_REF(cmp_typepaths_asc)) - return surgeries - /// Legacy procs that really should be replaced with proper _INIT macros /proc/make_datum_reference_lists() // I tried to eliminate this proc but I couldn't untangle their init-order interdependencies -Dominion/Cyberboss @@ -137,29 +129,21 @@ for(var/atom/req_atom as anything in recipe.structures) atom_list |= req_atom -//creates every subtype of prototype (excluding prototype) and adds it to list L. -//if no list/L is provided, one is created. +/// Creates every subtype of prototype (excluding prototype and abstract types) and adds it to list L. +/// If no list/L is provided, one is created. /proc/init_subtypes(prototype, list/L) if(!istype(L)) L = list() - for(var/path in subtypesof(prototype)) + for(var/path in valid_subtypesof(prototype)) L += new path() return L -//returns a list of paths to every subtype of prototype (excluding prototype) -//if no list/L is provided, one is created. -/proc/init_paths(prototype, list/L) - if(!istype(L)) - L = list() - for(var/path in subtypesof(prototype)) - L+= path - return L - /// Functions like init_subtypes, but uses the subtype's path as a key for easy access +/// If no list/L is provided, one is created. /proc/init_subtypes_w_path_keys(prototype, list/L) if(!istype(L)) L = list() - for(var/path in subtypesof(prototype)) + for(var/path in valid_subtypesof(prototype)) L[path] = new path() return L diff --git a/code/__HELPERS/hallucinations.dm b/code/__HELPERS/hallucinations.dm index 110a94e862d1..006497b4aa58 100644 --- a/code/__HELPERS/hallucinations.dm +++ b/code/__HELPERS/hallucinations.dm @@ -41,8 +41,8 @@ GLOBAL_LIST_EMPTY(all_ongoing_hallucinations) CRASH("cause_hallucination called with no arguments.") var/datum/hallucination/hallucination_type = raw_args[HALLUCINATION_ARG_TYPE] // first arg is the type always - if(!ispath(hallucination_type)) - CRASH("cause_hallucination was given a non-hallucination type.") + if(!ispath(hallucination_type, /datum/hallucination)) + CRASH("cause_hallucination was given a non-hallucination type. (Got: [hallucination_type || "null"])") var/hallucination_source = raw_args[HALLUCINATION_ARG_SOURCE] // and second arg, the source var/datum/hallucination/new_hallucination diff --git a/code/__HELPERS/honkerblast.dm b/code/__HELPERS/honkerblast.dm index ea8eea00e59b..e76d81782284 100644 --- a/code/__HELPERS/honkerblast.dm +++ b/code/__HELPERS/honkerblast.dm @@ -23,8 +23,7 @@ victim.Stun(100) victim.adjust_stutter(30 SECONDS) victim.set_jitter_if_lower(1000 SECONDS) - var/obj/item/organ/ears/ears = victim.get_organ_slot(ORGAN_SLOT_EARS) - ears?.adjustEarDamage(10, 15) + victim.sound_damage(10, 30 SECONDS) to_chat(victim, "HONK") var/obj/item/clothing/shoes/victim_shoes = victim.get_item_by_slot(ITEM_SLOT_FEET) if(!victim_shoes || victim_shoes.fastening_type == SHOES_SLIPON) @@ -35,13 +34,11 @@ victim.Paralyze(20) victim.Stun(50) victim.set_jitter_if_lower(500 SECONDS) - var/obj/item/organ/ears/ears = victim.get_organ_slot(ORGAN_SLOT_EARS) - ears?.adjustEarDamage(7, 10) + victim.sound_damage(7, 20 SECONDS) to_chat(victim, "HONK") for(var/mob/living/carbon/victim in lightly_honked) victim.Knockdown(20) victim.set_jitter_if_lower(200 SECONDS) - var/obj/item/organ/ears/ears = victim.get_organ_slot(ORGAN_SLOT_EARS) - ears?.adjustEarDamage(4, 5) + victim.sound_damage(4, 10 SECONDS) to_chat(victim, "HONK") diff --git a/code/__HELPERS/icons.dm b/code/__HELPERS/icons.dm index ba9d701b03ae..ac67848447ad 100644 --- a/code/__HELPERS/icons.dm +++ b/code/__HELPERS/icons.dm @@ -753,7 +753,7 @@ GLOBAL_LIST_EMPTY(friendly_animal_types) /// # If you already have a human and need to get its flat icon, call `get_flat_existing_human_icon()` instead. /// For creating consistent icons for human looking simple animals. -/proc/get_flat_human_icon(icon_id, datum/job/job, datum/preferences/prefs, dummy_key, showDirs = GLOB.cardinals, outfit_override = null) +/proc/get_flat_human_icon(icon_id, datum/job/job, datum/preferences/prefs, dummy_key, showDirs = GLOB.cardinals, outfit_override = null, no_anim = FALSE) var/static/list/humanoid_icon_cache = list() if(icon_id && humanoid_icon_cache[icon_id]) return humanoid_icon_cache[icon_id] @@ -771,7 +771,7 @@ GLOBAL_LIST_EMPTY(friendly_animal_types) var/icon/out_icon = icon('icons/effects/effects.dmi', "nothing") for(var/direction in showDirs) - var/icon/partial = getFlatIcon(body, defdir = direction) + var/icon/partial = getFlatIcon(body, defdir = direction, no_anim = no_anim) out_icon.Insert(partial, dir = direction) humanoid_icon_cache[icon_id] = out_icon @@ -1370,3 +1370,26 @@ GLOBAL_LIST_EMPTY(transformation_animation_objects) copy.underlays = underlays_to_keep return copy + +/// Returns the (isolated) security HUD icon for the given job. +/proc/get_job_hud_icon(datum/job/job) as /icon + var/static/alist/icon_cache = alist() + if(isnull(job)) + return + + if(!is_job(job)) + if(ispath(job, /datum/job)) + job = SSjob.get_job_type(job) + else if(istext(job)) + job = SSjob.get_job(job) + if(isnull(job)) + return null + + //add it to the cache if it isn't already + var/job_type = job.type + if(!icon_cache[job_type]) + var/icon/sechud_icon = job.get_lobby_icon() + sechud_icon.Crop(1, 17, 8, 24) + icon_cache[job_type] = sechud_icon + + return icon(icon_cache[job_type]) diff --git a/code/__HELPERS/lighting.dm b/code/__HELPERS/lighting.dm index 086b0e99c4a4..4f1b29d436ad 100644 --- a/code/__HELPERS/lighting.dm +++ b/code/__HELPERS/lighting.dm @@ -1,5 +1,3 @@ -#define TOPDOWN_TO_EMISSIVE_LAYER(layer) LERP(FLOOR_EMISSIVE_START_LAYER, FLOOR_EMISSIVE_END_LAYER, (layer - (TOPDOWN_LAYER + 1)) / TOPDOWN_LAYER_COUNT) - /// Produces a mutable appearance glued to the [EMISSIVE_PLANE] dyed to be the [EMISSIVE_COLOR]. /proc/emissive_appearance(icon, icon_state = "", atom/offset_spokesman, layer, alpha = 255, appearance_flags = NONE, offset_const, effect_type = EMISSIVE_BLOOM) if((isnull(layer) || layer == FLOAT_LAYER) && IS_TOPDOWN_PLANE(offset_spokesman.plane)) @@ -99,5 +97,3 @@ var/atom/movable/vis_cast = make_blocker vis_cast.vis_contents += hand_back return hand_back - -#undef TOPDOWN_TO_EMISSIVE_LAYER diff --git a/code/__HELPERS/logging/_logging.dm b/code/__HELPERS/logging/_logging.dm index 8f8f733e6ba8..3a3f887142e3 100644 --- a/code/__HELPERS/logging/_logging.dm +++ b/code/__HELPERS/logging/_logging.dm @@ -144,6 +144,10 @@ GLOBAL_LIST_INIT(testing_global_profiler, list("_PROFILE_NAME" = "Global")) log_shuttle(log_text, data) if(LOG_SPEECH_INDICATORS) log_speech_indicators(log_text, data) + // DARKPACK EDIT ADD START - STORYTELLER_STATS + if(LOG_STATS) + log_stats(log_text, data) + // DARKPACK EDIT ADD END else stack_trace("Invalid individual logging type: [message_type]. Defaulting to [LOG_GAME] (LOG_GAME).") log_game(log_text, data) diff --git a/code/__HELPERS/logging/virus.dm b/code/__HELPERS/logging/virus.dm index 050ae9434e47..b2ee4789107b 100644 --- a/code/__HELPERS/logging/virus.dm +++ b/code/__HELPERS/logging/virus.dm @@ -11,4 +11,4 @@ var/list/name_symptoms = list() for(var/datum/symptom/S in symptoms) name_symptoms += S.name - return "[name] - sym: [english_list(name_symptoms)] re:[totalResistance()] st:[totalStealth()] ss:[totalStageSpeed()] tr:[totalTransmittable()]" + return "[name] - sym: [english_list(name_symptoms)] re:[totalResistance()] st:[totalStealth()] ss:[totalStageSpeed()] tr:[totalTransmittable()] se:[totalSeverity()]" diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 747fe377db9b..cdbfbe3a0790 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -220,8 +220,10 @@ GLOBAL_LIST_INIT(skin_tone_names, list( * @param {icon} icon - The icon file of the cog. Default: 'icons/effects/progressbar.dmi' * * @param {iconstate} iconstate - The icon state of the cog. Default: "Cog" + * + * @param {mob} bar_override - Mob which should see the bar instead of the user */ -/proc/do_after(mob/user, delay, atom/target, timed_action_flags = NONE, progress = TRUE, datum/callback/extra_checks, interaction_key, max_interact_count = 1, hidden = FALSE, icon = 'icons/effects/progressbar.dmi', iconstate = "cog") +/proc/do_after(mob/user, delay, atom/target, timed_action_flags = NONE, progress = TRUE, datum/callback/extra_checks, interaction_key, max_interact_count = 1, hidden = FALSE, icon = 'icons/effects/progressbar.dmi', iconstate = "cog", mob/bar_override = null) if(!user) return FALSE if(!isnum(delay)) @@ -244,6 +246,10 @@ GLOBAL_LIST_INIT(skin_tone_names, list( var/holding = user.get_active_held_item() +#ifdef UNIT_TESTS + timed_action_flags &= ~IGNORE_SLOWDOWNS //it shouldn't stop unit test dummies from being fast as hell +#endif + if(!(timed_action_flags & IGNORE_SLOWDOWNS)) delay *= user.cached_multiplicative_actions_slowdown @@ -251,11 +257,11 @@ GLOBAL_LIST_INIT(skin_tone_names, list( var/datum/cogbar/cog if(progress) - if(user.client) - progbar = new(user, delay, target || user) + if(user.client || bar_override?.client) + progbar = new(bar_override || user, delay, target || user) if(!hidden && delay >= 1 SECONDS) - cog = new(user, icon, iconstate) + cog = new(bar_override || user, icon, iconstate) SEND_SIGNAL(user, COMSIG_DO_AFTER_BEGAN) @@ -854,3 +860,20 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) else . = invoked_callback.Invoke() usr = temp + +/** + * Iterates over all mobs that can see the passed movable and adds specific mood events to them based on their personalities. + * + * * source: String source for the mood event + * * personality_to_mood: A list mapping personality types to mood event types. Example: list(/datum/personality/chill = /datum/mood_event/chill_guy) + * * range: The range in which to check for viewers. Default is view range. + * * additional args may be supplied to pass into the mood event constructor. + */ +/proc/add_personality_mood_to_viewers(atom/movable/source, mood_key, list/personality_to_mood, range, ...) + for(var/mob/living/nearby in viewers(range, source)) + if(nearby.stat >= UNCONSCIOUS || nearby.is_blind()) + continue + for(var/personality in personality_to_mood) + if(HAS_PERSONALITY(nearby, personality)) + nearby.add_mood_event(arglist( list("[mood_key]_[personality]", personality_to_mood[personality]) + args.Copy(4) )) + break diff --git a/code/__HELPERS/names.dm b/code/__HELPERS/names.dm index 6def00103eaf..81c4a7c83299 100644 --- a/code/__HELPERS/names.dm +++ b/code/__HELPERS/names.dm @@ -114,7 +114,7 @@ GLOBAL_VAR(command_name) /proc/new_station_name() return "[CITY_NAME] [CURRENT_STATION_YEAR]" - /* DARKPACK EDIT REMOVAL - This aint no station + /* // DARKPACK EDIT REMOVAL - This aint no station var/random = rand(1,5) var/name = "" var/new_station_name = "" @@ -399,10 +399,10 @@ GLOBAL_DATUM(syndicate_code_response_regex, /regex) return FALSE return TRUE -/// Build a list of strings containing the numbers 1-99 as both arabic and roman numerals +/// Generates and returns a list of both arabic and roman numerals for 1 through 99 /proc/generate_number_strings() - var/list/L[198] + var/list/numbers = list() for(var/i in 1 to 99) - L += "[i]" - L += "\Roman[i]" - return L + numbers += "[i]" + numbers += "\Roman[i]" + return numbers diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm index 9f7c95d42ea4..8e21e78b1b25 100644 --- a/code/__HELPERS/roundend.dm +++ b/code/__HELPERS/roundend.dm @@ -289,12 +289,15 @@ GLOBAL_LIST_INIT(achievements_unlocked, list()) //stop collecting feedback during grifftime SSblackbox.Seal() - world.TgsTriggerEvent("tg-Roundend", wait_for_completion = TRUE) + TriggerRoundEndTgsEvent() sleep(5 SECONDS) ready_for_reboot = TRUE standard_reboot() +/datum/controller/subsystem/ticker/proc/TriggerRoundEndTgsEvent() + world.TgsTriggerEvent("tg-Roundend", wait_for_completion = TRUE) + /datum/controller/subsystem/ticker/proc/standard_reboot() if(ready_for_reboot) if(GLOB.station_was_nuked) @@ -523,9 +526,9 @@ GLOBAL_LIST_INIT(achievements_unlocked, list()) for(var/venue_path in SSrestaurant.all_venues) var/datum/venue/venue = SSrestaurant.all_venues[venue_path] tourist_income += venue.total_income - parts += "The [venue] served [venue.customers_served] customer\s and made [venue.total_income] credits.[icon2html(getFlatIcon(host), host)]I am " - if(host.real_name) - dat += "[host.real_name]," - if(!host.real_name) - dat += "Unknown," - if(host.clan) - dat += " the [host.clan.name]" - if(!host.clan) - dat += " the caitiff" - - if(host.mind) - - if(host.mind.assigned_role) - if(host.mind.special_role) - dat += ", carrying the [host.mind.assigned_role] ([host.mind.special_role]) role." - else - dat += ", carrying the [host.mind.assigned_role] role." - if(!host.mind.assigned_role) - dat += "." - dat += "
" - if(host.mind.enslaved_to) - dat += "My Regnant is [host.mind.enslaved_to], I should obey their wants.
" - var/datum/bank_account/account = host.account_id ? SSeconomy.bank_accounts_by_id["[host.account_id]"] : null - if(account) - dat += "My bank pin is: [account.bank_pin]The pincode for the armory keypad is: [armory.pincode]
" - var/obj/keypad/panic_room/panic = find_keypad(/obj/keypad/panic_room) - if(panic && (host.mind.assigned_role == "Prince" || host.mind.assigned_role == "Sheriff" || host.mind.assigned_role == "Seneschal")) - dat += "The pincode for the panic room keypad is: [panic.pincode]
" - var/obj/structure/vaultdoor/pincode/bank/bankdoor = find_door_pin(/obj/structure/vaultdoor/pincode/bank) - if(bankdoor && (host.mind.assigned_role == "Capo")) - dat += "The pincode for the bank vault is : [bankdoor.pincode]
" - if(bankdoor && (host.mind.assigned_role == "La Squadra")) - if(prob(50)) - dat += "The pincode for the bank vault is: [bankdoor.pincode]
Unfortunately you don't know the vault code.
[printobjectives(A.objectives)]
" - var/masquerade_level = " followed the Masquerade Tradition perfectly." - switch(host.masquerade) - if(4) - masquerade_level = " broke the Masquerade rule once." - if(3) - masquerade_level = " made a couple of Masquerade breaches." - if(2) - masquerade_level = " provoked a moderate Masquerade breach." - if(1) - masquerade_level = " almost ruined the Masquerade." - if(0) - masquerade_level = "'m danger to the Masquerade and my own kind." - dat += "Camarilla thinks I[masquerade_level]
" - var/humanity = "I'm out of my mind." - var/enlight = FALSE - if(host.client?.prefs?.enlightenment) - enlight = TRUE - - if(!enlight) - switch(host.humanity) - if(8 to 10) - humanity = "I'm saintly." - if(7) - humanity = "I feel as human as when I lived." - if(5 to 6) - humanity = "I'm feeling distant from my humanity." - if(4) - humanity = "I don't feel any compassion for the Kine anymore." - if(2 to 3) - humanity = "I feel hunger for BLOOD. My humanity is slipping away." - if(1) - humanity = "Blood. Feed. Hunger. It gnaws. Must FEED!" - - else - switch(host.humanity) - if(8 to 10) - humanity = "I'm ENLIGHTENED, my BEAST and I are in complete harmony." - if(7) - humanity = "I've made great strides in co-existing with my beast." - if(5 to 6) - humanity = "I'm starting to learn how to share this unlife with my beast." - if(4) - humanity = "I'm still new to my path, but I'm learning." - if(2 to 3) - humanity = "I'm a complete novice to my path." - if(1) - humanity = "I'm losing control over my beast!" - - dat += "[humanity]
" - - if(host.clan.name == "Brujah") - if(GLOB.brujahname != "") - if(host.real_name != GLOB.brujahname) - dat += "My primogen is: [GLOB.brujahname].
" - if(host.clan.name == "Malkavian") - if(GLOB.malkavianname != "") - if(host.real_name != GLOB.malkavianname) - dat += "My primogen is: [GLOB.malkavianname].
" - if(host.clan.name == "Nosferatu") - if(GLOB.nosferatuname != "") - if(host.real_name != GLOB.nosferatuname) - dat += "My primogen is: [GLOB.nosferatuname].
" - if(host.clan.name == "Toreador") - if(GLOB.toreadorname != "") - if(host.real_name != GLOB.toreadorname) - dat += "My primogen is: [GLOB.toreadorname].
" - if(host.clan.name == "Ventrue") - if(GLOB.ventruename != "") - if(host.real_name != GLOB.ventruename) - dat += "My primogen is: [GLOB.ventruename].
" - - if(host.hud_used) - dat += "Known disciplines:
"
- for(var/datum/action/discipline/D in host.actions)
- if(D.discipline)
- dat += "[D.discipline.name] [D.discipline.level] - [D.discipline.desc]
"
- dat += "
My friend's name is [host.Myself.Friend.owner.true_real_name].
"
- if(host.Myself.Friend.phone_number)
- dat += "Their number is [host.Myself.Friend.phone_number].
"
- if(host.Myself.Friend.friend_text)
- dat += "[host.Myself.Friend.friend_text]
My nemesis is [host.Myself.Enemy.owner.true_real_name]!
"
- if(host.Myself.Enemy.enemy_text)
- dat += "[host.Myself.Enemy.enemy_text]
I'm in love with [host.Myself.Lover.owner.true_real_name].
"
- if(host.Myself.Lover.phone_number)
- dat += "Their number is [host.Myself.Lover.phone_number].
"
- if(host.Myself.Lover.lover_text)
- dat += "[host.Myself.Lover.lover_text]
I know some other of my kind in this city. Need to check my phone, there definetely should be:
"
- for(var/i in host.knowscontacts)
- dat += "-[i] contact
"
- dat += "